Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 10 of 10
  1. #1
    Join Date
    Aug 2003
    Posts
    2,427

    Screen resolutions.

    I've just been looking at Google analytics for a small website I run (limited bandwidth so I won't post URL) and one of the interesting items was the screen resolution being used by visitors.

    92.32% are 1024x768 or higher. The remaining 7.68% is also the lowest resolution 800x600.

    I've been pitching my projects at 1024x768 for a long time and this confirms it as a safe bet.

  2. #2
    Join Date
    Apr 2004
    Location
    Vancouver, Canada
    Posts
    1,790
    That's good. I have started building all my apps at 1024x768 so I don't think I will have too many problems.
    Dermot

    I am so out of here

  3. #3
    Join Date
    Oct 2007
    Location
    Gensokyo
    Posts
    1,324
    I always base it at 800x600 and then make it resizable. If you want it fullscreen just set the mode to Flat and put this in On Preload:

    Code:
    Window.SetPos(Application.GetWndHandle(), 0, 0)
    Window.SetSize(Application.GetWndHandle(), System.GetDisplayInfo().Width, System.GetDisplayInfo().Height)

  4. #4
    Join Date
    Apr 2004
    Location
    Vancouver, Canada
    Posts
    1,790
    Quote Originally Posted by ShadowUK View Post
    I always base it at 800x600 and then make it resizable. If you want it fullscreen just set the mode to Flat and put this in On Preload:

    Code:
    Window.SetPos(Application.GetWndHandle(), 0, 0)
    Window.SetSize(Application.GetWndHandle(), System.GetDisplayInfo().Width, System.GetDisplayInfo().Height)
    Depends on the app. Mine are large and complex so I need as much screen space as I can. I always make them resizeable.
    Dermot

    I am so out of here

  5. #5
    Join Date
    Oct 2007
    Location
    Gensokyo
    Posts
    1,324
    If it's a general purpose application like a GUI for a tool or something, I'll always have it around 600x400.

  6. #6
    Join Date
    Aug 2003
    Posts
    2,427
    Quote Originally Posted by Dermot View Post
    Depends on the app. Mine are large and complex so I need as much screen space as I can. I always make them resizeable.
    Yes - one size certainly doesn't fit all. I use different methods depending on what I'm doing.

    I suppose on average I make 2/3 apps a week if I include the generic document distribution template I've made. Just a matter of dropping all the files into the docs folder, changing a couple of labels and then burning it ready for duplicating. What used to take me half a day, now takes less than half an hour

    Last thing I did though had just a video oject and listbox on it so re-sizing to the system display was very easy.

    My problem is always "Can I have 50 CD's for 4p.m. please" so it's very rare that I get a chance to do anything more complicated.

  7. #7
    Join Date
    Apr 2004
    Location
    Vancouver, Canada
    Posts
    1,790
    Quote Originally Posted by longedge View Post
    Yes - one size certainly doesn't fit all. I use different methods depending on what I'm doing.

    I suppose on average I make 2/3 apps a week if I include the generic document distribution template I've made. Just a matter of dropping all the files into the docs folder, changing a couple of labels and then burning it ready for duplicating. What used to take me half a day, now takes less than half an hour

    Last thing I did though had just a video oject and listbox on it so re-sizing to the system display was very easy.

    My problem is always "Can I have 50 CD's for 4p.m. please" so it's very rare that I get a chance to do anything more complicated.
    I wish mine only took half an hour. Working on a couple right now that will take around 6 - 8 months.
    Dermot

    I am so out of here

  8. #8
    Join Date
    Apr 2007
    Location
    Raalte, OV, Netherlands
    Posts
    3,287
    I also make my applications 800x600 standard, and then resizable, that's the best solution i guess...
    Bas Groothedde
    Imagine Programming :: Blog :: Familiar people here

    My AMS Plugins:

  9. #9
    Join Date
    Jun 2008
    Posts
    3
    1024x768 is more wide used. I think there is no point of looking for something another

  10. #10
    Join Date
    Aug 2003
    Location
    Maine, USA
    Posts
    1,695
    The spammers today are actually trying to have a discussion with you, LOL.

  11. #11
    Join Date
    Oct 2000
    Location
    Peoria, AZ USA
    Posts
    810
    I like to use Fibonacci Numbers (Ø, Φ) for my project size. Depending on what your target audience is using for screen resolution. The last one I did was:

    Screen Resolution: 1024x768
    Project Size: 971x600

    I just decide on the height I want, taking in consideration the scope of the project, in this case is 600. Then I multiply by 1.6180339887

    600 x 1.6180339887 = 970.82039322

    So I use: 971x600

    I find that the clients really like the size, and plenty of room for content.

    Besides, it is the Golden Number!
    Last edited by AGRO; 06-17-2008 at 08:02 AM.

  12. #12
    Join Date
    Oct 2000
    Location
    Peoria, AZ USA
    Posts
    810
    this is a sample.
    Attached Images

Similar Threads

  1. Progress Bars screen, On Start code is skipped
    By AxemanMK in forum Setup Factory 7.0
    Replies: 7
    Last Post: 09-21-2006, 02:15 PM
  2. Allow for Different Screen Resolutions
    By threaded in forum AutoPlay Media Studio 5.0 Examples
    Replies: 0
    Last Post: 08-13-2005, 05:28 AM
  3. Question about Screen Resolutions and setting up a gate way page…
    By thinkingstar in forum AutoPlay Media Studio 4.0
    Replies: 3
    Last Post: 06-15-2003, 08:23 PM
  4. HOWTO: Make a Media Player Object Go Full Screen
    By Support in forum AutoPlay Media Studio 4.0 Examples
    Replies: 0
    Last Post: 10-23-2002, 11:23 AM
  5. HOWTO: Install a Screen Saver
    By Support in forum Setup Factory 6.0 Knowledge Base
    Replies: 0
    Last Post: 09-27-2002, 01:35 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts