Results 1 to 9 of 9

Thread: Will i break their computers?

  1. #1

    Thread Starter
    Lively Member Naomi1's Avatar
    Join Date
    Oct 2002
    Posts
    113

    Will i break their computers?

    I wrote my progy in an 800 x 600 screen resolution and now im noticing that it looks like crap in larger resolutions (duh), ive centered everything depending on resolution, size etc. but just can't get over how small everything looks... so im thinking of offering an option to change their resolution to 800 x 600 and then change back to original on exit. The user will be asked of course.
    This wouldn't be an issue if i were doing it from 800 x 600 to 1024 x 768, but im going in reverse from the larger resolutions to 800 x 600. Is this dangerous?

  2. #2
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: Will i break their computers?

    Nope, but you should never change user's resolutions. If I ran you program and it did that I would delete it.

  3. #3

    Thread Starter
    Lively Member Naomi1's Avatar
    Join Date
    Oct 2002
    Posts
    113

    Re: Will i break their computers?

    Quote Originally Posted by penagate
    Nope, but you should never change user's resolutions. If I ran you program and it did that I would delete it.
    Im not changing anything?? Just thinking of offering a yes or no option.

  4. #4
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: Will i break their computers?

    Sorry, I didn't see that. But all the same I wouldn't like my resolution changed. I'd prefer it, if it is really small, that you just have an option to scale all the controls up.

    Is it really an issue? I've never had this problem. Resolutions are there so things show up vaguely the same size on different sized screens.

  5. #5

    Thread Starter
    Lively Member Naomi1's Avatar
    Join Date
    Oct 2002
    Posts
    113

    Re: Will i break their computers?

    the main form (child form) fills the screen at 800 x 600 but is almost a quarter the size at 1024 x 768 so there's a large blank area left in the parent form and even though ive centered it for different resolutions, still looks way too small.

  6. #6
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: Will i break their computers?

    Check out Active Resizer Pro from www.vbgold.com
    I used to to fix an app that had the same problem. Much easier than trying to change code that is working. They have a trial version, also.

    You just drop their control into each form that you want to resize, and that's it.
    It's not perfect, but for 99%, it works great.

  7. #7

    Thread Starter
    Lively Member Naomi1's Avatar
    Join Date
    Oct 2002
    Posts
    113

    Re: Will i break their computers?

    Quote Originally Posted by dglienna
    Check out Active Resizer Pro from www.vbgold.com
    I used to to fix an app that had the same problem. Much easier than trying to change code that is working. They have a trial version, also.

    You just drop their control into each form that you want to resize, and that's it.
    It's not perfect, but for 99%, it works great.
    Tried it, it seems to work ok when you want to fit a 1024 x 768 onto an 800 x 600 resolution but is pretty buggy the other way around, plus i find that when you minimize or maximize a form it's like slow motion, (same with the form resizer in martin's sig) maybe it's just my comp. Anyway i think offering an option to reduce screen resolution is stupid, (i was tired lol) im gonna have to live with it but next time ill be programming in 1024 x 768. Thanks all.

  8. #8
    MS SQL Powerposter szlamany's Avatar
    Join Date
    Mar 2004
    Location
    Connecticut
    Posts
    18,263

    Re: Will i break their computers?

    Reducing the screen resolution will move all the desk top icons around - it would be a terrible thing to do to a user - even if you ask.

    We have a form for each resolution. We happen to put controls on at run-time, so it's very easy for us - 3 forms for each of the popular resolutions out there - and the MDI parent choses which one. Since we draw controls at run time we are in charge of "morphing" the screen position and size of the controls.

    How many child forms do you have? Is there a lot of code in the child forms, or do the events in the child forms call to a SUB MAIN...

    *** Read the sticky in the DB forum about how to get your question answered quickly!! ***

    Please remember to rate posts! Rate any post you find helpful - even in old threads! Use the link to the left - "Rate this Post".

    Some Informative Links:
    [ SQL Rules to Live By ] [ Reserved SQL keywords ] [ When to use INDEX HINTS! ] [ Passing Multi-item Parameters to STORED PROCEDURES ]
    [ Solution to non-domain Windows Authentication ] [ Crazy things we do to shrink log files ] [ SQL 2005 Features ] [ Loading Pictures from DB ]

    MS MVP 2006, 2007, 2008

  9. #9

    Thread Starter
    Lively Member Naomi1's Avatar
    Join Date
    Oct 2002
    Posts
    113

    Re: Will i break their computers?

    Quote Originally Posted by szlamany
    Reducing the screen resolution will move all the desk top icons around - it would be a terrible thing to do to a user - even if you ask.

    We have a form for each resolution. We happen to put controls on at run-time, so it's very easy for us - 3 forms for each of the popular resolutions out there - and the MDI parent choses which one. Since we draw controls at run time we are in charge of "morphing" the screen position and size of the controls.

    How many child forms do you have? Is there a lot of code in the child forms, or do the events in the child forms call to a SUB MAIN...
    szlamany, that's a great idea cosidering there's only the one child form that im concerned about. That wouldn't be to hard to implement.
    I think that's what i'm going to do. Thanks

Posting Permissions

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



Click Here to Expand Forum to Full Width