Software products with distinction RSS 2.0
 Friday, June 05, 2009
If you've developed a software product how do you market it the best?

Well you've to develop a website, and get visitors to come there, in the old days people would've a website with lots of wording in it, and hardly a screen shot or two, why? well bandwidth was extremely expensive, and most shared hosting plans gave you peanuts in bandwidth so you fill up your website with text and hope people will buy from the words, or better yet try a trial version and will be impressed with it.

Now a days the number of products coming into market is an order of magnitude larger than it had been before, and consumers are getting bombarded with a lot more information than ever before, so if you've developed a good product, and have managed to get the consumer to your website, how do you get them to make a decision before they jump off to the next cool thing.

One thing increasingly popular is a flash based demo, more than the screen shots. Screen shot images only get so much information across, whereas a demo can get a lot more within a short time.

With software like Camtasia Studio its increasingly easy to create a working demo, but there are certain things you still need to do to create a great demo, which are?

1. Script
2. Script
3. Script
4. Rehearsal

Yes you need to script the demo, remember a demo is a production much like a movie, music or a speech and you need to get the best impression across in the shortest time possible. The shortest time also works to your additional benefit by using lesser bandwidth overall.

You need detailed script not just an empty steps. For the second SnapConfig demo here are some of the steps that I wrote and practiced over and over to create the demo

Create New xml file
add stuff from example xml
Comment UnComment nodes
Save xml file

Create New Registry file
Add values
add to manage
copy file path
setup a command regedit /s
run command
Show RegEdit

Create new ini file
add stuff from example
change comment string

With the script I also created files where I would copy certain texts like the xml block that I copy into a comment field or the name of registry keys. I also setup all my applications like RegEdit and explorer to dimensions of the demo, and I made sure a single click on taskbar or Alt+Tab would get me right where I wanted.

In the end I think those steps have created a much concise demo which shows a lot of stuff in a short time and hopefully you can do the same with your product demo.


Friday, June 05, 2009 4:50:02 PM (Pacific Standard Time, UTC-08:00)  #    Comments [0] -
Marketing
 Monday, May 18, 2009
Since Windows default Tab Control is quite primitive, every once in a while you'll need the ability to be able to close the individual tab pages in the control.

SnapConfig has this ability and I thought I would share some aspects of how this is done.

One of the problematic issues in drawing buttons yourself is to take care of themes in windows but still be able to support non themed desktops.

following is the code that does that

   
public void DrawTabCloseButton(System.Windows.Forms.DrawItemEventArgs e, Rectangle rect, VisualStyleElement style, ButtonState state)
    {
      if (VisualStyleRenderer.IsSupported)
      {        
        if (VisualStyleRenderer.IsElementDefined(style))
        {
          VisualStyleRenderer renderer = new VisualStyleRenderer(style);
          renderer.DrawBackground(e.Graphics, rect);
          return;
        }
      }
      ControlPaint.DrawCaptionButton(e.Graphics, rect, CaptionButton.Close, state);
    }



The rect parameter is where you want to draw the button,

The VisualStyleElement can be VisualStyleElement.Window.CloseButton.Hot or VisualStyleElement.Window.CloseButton.Pressed or any of the others supported if you are handling that logic.

ButtonState can be ButtonState.Pushed or any other.

This section only handles the actual drawing, there are other things which are done on the fly by SnapConfig that is maintaing the state of button on each tab, for example if you press and hold the mouse and move away from a close button it will become normal but if you come back while holding it will again press down, which is standard windows behaviour.

to get onDrawItem you need to set

DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;


Monday, May 18, 2009 4:37:22 PM (Pacific Standard Time, UTC-08:00)  #    Comments [0] -
Code
 Friday, April 04, 2008
So I've also decided to jump into the blog world, If you want to know why we developers blog try this.

So the blog plenty of bits has started. I've deliberately avoided using wordpress and have decided to go with dasBlog. I'll probably make an entry about my experience installing and bringing it up and running on my shared hosting account at LunarPages.

Friday, April 04, 2008 7:56:08 AM (Pacific Standard Time, UTC-08:00)  #    Comments [0] -

Navigation
Categories
Archive
<July 2009>
SunMonTueWedThuFriSat
2829301234
567891011
12131415161718
19202122232425
2627282930311
2345678
Blogroll
About the author/Disclaimer

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

© Copyright 2010
Sajid
Sign In
Statistics
Total Posts: 4
This Year: 0
This Month: 0
This Week: 0
Comments: 0
Themes
All Content © 2010, Sajid
DasBlog theme 'Business' created by Christoph De Baene (delarou)