Page 1 of 2 12 LastLast
Results 1 to 40 of 58

Thread: Form Layout: Constructive Criticism

  1. #1

    Thread Starter
    Fanatic Member dom_stapleton's Avatar
    Join Date
    Sep 2005
    Location
    Leigh-on-Sea, UK
    Posts
    665

    Form Layout: Constructive Criticism

    Hi guys! I am in the middle of working on an address-book program and would like some constructive criticism on the layout and design of my forms. I will include some screenshots below.

    Thanks in advance and please don't be too harsh!

    First this is an image of my main window, with no contacts in the central contact list:

    Last edited by dom_stapleton; May 22nd, 2008 at 01:22 PM. Reason: Updated image with new changes
    I use Microsoft Visual Basic 2008 Express Edition.

    If my post has been helpful, please rate it, unless you don't believe in Karma... which actually I don't!

    Resources:
    Visual Basic Tutorials (1, 2) | MSDN Library | Google | Krugle | Search Forums

    Free components:
    Windows Forms Components | XP Common Controls Library

  2. #2
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    Re: Form Layout: Constructive Criticism

    A quick search box that is ALWAYS visible (and an app wide hotkey to jump to it) would be a good thing to have in a program like this..


    Also it looks like the image you are using is stretched pretty bad. Looks blurry. I know you always lose some quality when saving a screenshot to a jpg or gif, but I think its probably a little blurry anyway right?

  3. #3

    Thread Starter
    Fanatic Member dom_stapleton's Avatar
    Join Date
    Sep 2005
    Location
    Leigh-on-Sea, UK
    Posts
    665

    Re: Form Layout: Constructive Criticism

    OK, that sounds like a resonable suggestion. I could add it next to the two buttons on the right end of the top ToolStrip.
    I use Microsoft Visual Basic 2008 Express Edition.

    If my post has been helpful, please rate it, unless you don't believe in Karma... which actually I don't!

    Resources:
    Visual Basic Tutorials (1, 2) | MSDN Library | Google | Krugle | Search Forums

    Free components:
    Windows Forms Components | XP Common Controls Library

  4. #4
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    Re: Form Layout: Constructive Criticism

    yeah.

    If possible, make it search/show results AS you type versus having to type and hit enter. (just like windows desktop search works)

  5. #5

    Thread Starter
    Fanatic Member dom_stapleton's Avatar
    Join Date
    Sep 2005
    Location
    Leigh-on-Sea, UK
    Posts
    665

    Re: Form Layout: Constructive Criticism

    OK, I've added a Quick Search combo box to the MenuStrip. The text inside the combo box disappears when it is focused and returns when it is left. I will add the searching code later. Have you any more suggestions?

    PS: Updated the image in the first post.
    I use Microsoft Visual Basic 2008 Express Edition.

    If my post has been helpful, please rate it, unless you don't believe in Karma... which actually I don't!

    Resources:
    Visual Basic Tutorials (1, 2) | MSDN Library | Google | Krugle | Search Forums

    Free components:
    Windows Forms Components | XP Common Controls Library

  6. #6
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    Re: Form Layout: Constructive Criticism

    well like I said, add a form wide hotkey to set focus to the search box, that is always a handy feature that is underused but really appreciated by those who discover it.

    I might have more suggestions if you post more screenshots (like ones with data entered in)

  7. #7

    Thread Starter
    Fanatic Member dom_stapleton's Avatar
    Join Date
    Sep 2005
    Location
    Leigh-on-Sea, UK
    Posts
    665

    Re: Form Layout: Constructive Criticism

    Here's another screenshot showing some contacts in the list. The list can be customised to show contacts in List, Icons and Details views as well.

    I use Microsoft Visual Basic 2008 Express Edition.

    If my post has been helpful, please rate it, unless you don't believe in Karma... which actually I don't!

    Resources:
    Visual Basic Tutorials (1, 2) | MSDN Library | Google | Krugle | Search Forums

    Free components:
    Windows Forms Components | XP Common Controls Library

  8. #8
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: Form Layout: Constructive Criticism

    yes, split the icon in two and use the left for men and the right for women. Visual representations are nice. If possible, you could even have a list of custom icons to choose from or let the user assign a photo.
    My light show youtube page (it's made the news) www.youtube.com/@lightsofelberfeld
    Contact me on the socials www.facebook.com/lordorwell

  9. #9

    Thread Starter
    Fanatic Member dom_stapleton's Avatar
    Join Date
    Sep 2005
    Location
    Leigh-on-Sea, UK
    Posts
    665

    Re: Form Layout: Constructive Criticism

    Thanks for your reply, Lord_Orwell!

    I have already got the features you suggested, although, they're not visible from the screenshots I have up. The user can select a gender for each contact. Depending on the gender, either a woman icon or a man icon is shown. The user can also choose an image for the contact which can be used instead.
    I use Microsoft Visual Basic 2008 Express Edition.

    If my post has been helpful, please rate it, unless you don't believe in Karma... which actually I don't!

    Resources:
    Visual Basic Tutorials (1, 2) | MSDN Library | Google | Krugle | Search Forums

    Free components:
    Windows Forms Components | XP Common Controls Library

  10. #10
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: Form Layout: Constructive Criticism

    only other suggestion i can give at this point then is a drop-down menu that lets you configure the screen color. It highly resembles a couple of other windows programs already available due to the standard coloring scheme.
    My light show youtube page (it's made the news) www.youtube.com/@lightsofelberfeld
    Contact me on the socials www.facebook.com/lordorwell

  11. #11
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    Re: Form Layout: Constructive Criticism

    One suggestion (often overlooked) would be also to adjust your windows fonts to large and extra large (also set your DPI to 120 from the default of 96). This all can be done in the display properties menu.

    You would be surprised how bad an app can look when you adjust these things (sadly even some Microsoft applications suffer from this)

    Most people leave their defaults alone, but if you want to maximize compatibility, its always a good idea to at least see what your app looks like with these settings adjusted.

  12. #12

    Thread Starter
    Fanatic Member dom_stapleton's Avatar
    Join Date
    Sep 2005
    Location
    Leigh-on-Sea, UK
    Posts
    665

    Re: Form Layout: Constructive Criticism

    I know this thread is a good few months old now but why discard a carcass when it can still be used! Just thought I'd upload an updated image of my program. I recently did a lot of work on making the UI feel more Vista-like.

    Any constructive criticism is appreciated!

    I must also add; I'm just looking for criticism about the appearence of the UI. I'm still working on some of the features and I'll set up a seperate thread for suggestions for these.

    I use Microsoft Visual Basic 2008 Express Edition.

    If my post has been helpful, please rate it, unless you don't believe in Karma... which actually I don't!

    Resources:
    Visual Basic Tutorials (1, 2) | MSDN Library | Google | Krugle | Search Forums

    Free components:
    Windows Forms Components | XP Common Controls Library

  13. #13
    I'm about to be a PowerPoster! kleinma's Avatar
    Join Date
    Nov 2001
    Location
    NJ - USA (Near NYC)
    Posts
    23,373

    Re: Form Layout: Constructive Criticism

    I don't like the borderless edge of the bottom graphic and the "alphabet strip" you have. It looks like the alphabet strip is covering it because of the lack of border.

  14. #14

    Thread Starter
    Fanatic Member dom_stapleton's Avatar
    Join Date
    Sep 2005
    Location
    Leigh-on-Sea, UK
    Posts
    665

    Re: Form Layout: Constructive Criticism



    I've added a border to the left and right edges of the bottom graphic, but it is difficult to keep this consistent as the image is stretched. I will be replacing it with my own version soon, which will not have this problem. I've also uploaded a screenshot with the Index bar hidden. It can be hidden/shown from the menu.

    EDIT: And I've rather stupidly saved the screenshot as a JPEG instead of PNG so sorry for the terrible quality!
    I use Microsoft Visual Basic 2008 Express Edition.

    If my post has been helpful, please rate it, unless you don't believe in Karma... which actually I don't!

    Resources:
    Visual Basic Tutorials (1, 2) | MSDN Library | Google | Krugle | Search Forums

    Free components:
    Windows Forms Components | XP Common Controls Library

  15. #15
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    Re: Form Layout: Constructive Criticism

    The Task list should be pinnable.... I'd like to be able to move it out of the way w/o closing it....

    -tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  16. #16
    Frenzied Member
    Join Date
    May 2002
    Posts
    1,602

    Re: Form Layout: Constructive Criticism

    Looks like you are using the Janus controls, is that correct?

    /henrik

  17. #17
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: Form Layout: Constructive Criticism

    Quote Originally Posted by dom_stapleton
    I know this thread is a good few months old now but why discard a carcass when it can still be used! Just thought I'd upload an updated image of my program. I recently did a lot of work on making the UI feel more Vista-like.

    Any constructive criticism is appreciated!

    I must also add; I'm just looking for criticism about the appearence of the UI. I'm still working on some of the features and I'll set up a seperate thread for suggestions for these.

    what about your 90% user base that thinks the default black vista theme is not only ugly, but hard on the eyes? Does your app support the theme changing?
    My light show youtube page (it's made the news) www.youtube.com/@lightsofelberfeld
    Contact me on the socials www.facebook.com/lordorwell

  18. #18

    Thread Starter
    Fanatic Member dom_stapleton's Avatar
    Join Date
    Sep 2005
    Location
    Leigh-on-Sea, UK
    Posts
    665

    Re: Form Layout: Constructive Criticism

    It does now! The user can select the following toolbar colour schemes:



    I am also extending these colour schemes from the rest of the application. And I've replaced the MenuStrip control with an old-fashioned MainMenu control as I think it looks more native to Windows.
    I use Microsoft Visual Basic 2008 Express Edition.

    If my post has been helpful, please rate it, unless you don't believe in Karma... which actually I don't!

    Resources:
    Visual Basic Tutorials (1, 2) | MSDN Library | Google | Krugle | Search Forums

    Free components:
    Windows Forms Components | XP Common Controls Library

  19. #19

    Thread Starter
    Fanatic Member dom_stapleton's Avatar
    Join Date
    Sep 2005
    Location
    Leigh-on-Sea, UK
    Posts
    665

    Re: Form Layout: Constructive Criticism

    Oh, and I'm not sure what the Janus controls are, MrNorth. All of the controls you can see in the screenshots are straight from the .NET Framework (I have overriden a couple of the controls to add extra things, like the empty label in the ListView, for example).
    I use Microsoft Visual Basic 2008 Express Edition.

    If my post has been helpful, please rate it, unless you don't believe in Karma... which actually I don't!

    Resources:
    Visual Basic Tutorials (1, 2) | MSDN Library | Google | Krugle | Search Forums

    Free components:
    Windows Forms Components | XP Common Controls Library

  20. #20

    Thread Starter
    Fanatic Member dom_stapleton's Avatar
    Join Date
    Sep 2005
    Location
    Leigh-on-Sea, UK
    Posts
    665

    Re: Form Layout: Constructive Criticism

    An updated screenshot of the main form (with the teal toolbar colour scheme):

    I use Microsoft Visual Basic 2008 Express Edition.

    If my post has been helpful, please rate it, unless you don't believe in Karma... which actually I don't!

    Resources:
    Visual Basic Tutorials (1, 2) | MSDN Library | Google | Krugle | Search Forums

    Free components:
    Windows Forms Components | XP Common Controls Library

  21. #21
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: Form Layout: Constructive Criticism

    I like that much better than the black one. While it's not a big issue, does it auto-change the colors when windows color scheme changes? There are color constants you can use as colors that are basically shortcuts to whatever the current system color is for a certain item.
    My light show youtube page (it's made the news) www.youtube.com/@lightsofelberfeld
    Contact me on the socials www.facebook.com/lordorwell

  22. #22
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: Form Layout: Constructive Criticism

    also forgot to mention, turn off glass and see how it looks. Vista basic doesn't come with it.
    My light show youtube page (it's made the news) www.youtube.com/@lightsofelberfeld
    Contact me on the socials www.facebook.com/lordorwell

  23. #23

    Thread Starter
    Fanatic Member dom_stapleton's Avatar
    Join Date
    Sep 2005
    Location
    Leigh-on-Sea, UK
    Posts
    665

    Re: Form Layout: Constructive Criticism

    Just a quick update:

    I've finished working on the quick search box; it now works in an identical way to the search feature in Windows Explorer in Vista. As you type it hides all of the contacts that don't match the criteria you entered.

    For example, if you type "s", it hides all the contacts that don't have an "s" somewhere in their details. As you keep typing it updates the list accordingly.

    PS: Thanks to kleinma for the suggestion, sorry it took so long!



    Last edited by dom_stapleton; May 21st, 2008 at 09:45 AM.
    I use Microsoft Visual Basic 2008 Express Edition.

    If my post has been helpful, please rate it, unless you don't believe in Karma... which actually I don't!

    Resources:
    Visual Basic Tutorials (1, 2) | MSDN Library | Google | Krugle | Search Forums

    Free components:
    Windows Forms Components | XP Common Controls Library

  24. #24

    Thread Starter
    Fanatic Member dom_stapleton's Avatar
    Join Date
    Sep 2005
    Location
    Leigh-on-Sea, UK
    Posts
    665

    Re: Form Layout: Constructive Criticism

    @ Lord_Orwell: The program looks practically identical without Vista Aero turned on. It's only really the non-client area of the window that looks different. I check to see what the program looks like in a Windows 9x-style shell occassionally and it doesn't look too bad.

    Oh, and the search box is focused by pressing the F3 key.
    Last edited by dom_stapleton; May 22nd, 2008 at 01:10 PM.
    I use Microsoft Visual Basic 2008 Express Edition.

    If my post has been helpful, please rate it, unless you don't believe in Karma... which actually I don't!

    Resources:
    Visual Basic Tutorials (1, 2) | MSDN Library | Google | Krugle | Search Forums

    Free components:
    Windows Forms Components | XP Common Controls Library

  25. #25
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: Form Layout: Constructive Criticism

    well it all depends on what controls you use. aero glass isn't just the transparent borders. it controls the appearance of a lot of buttons to give them shiny highlights.
    My light show youtube page (it's made the news) www.youtube.com/@lightsofelberfeld
    Contact me on the socials www.facebook.com/lordorwell

  26. #26

    Thread Starter
    Fanatic Member dom_stapleton's Avatar
    Join Date
    Sep 2005
    Location
    Leigh-on-Sea, UK
    Posts
    665

    Re: Form Layout: Constructive Criticism



    MyContacts in Vista Basic.



    MyContacts in Windows Standard.

    I don't think they look too out of place.
    I use Microsoft Visual Basic 2008 Express Edition.

    If my post has been helpful, please rate it, unless you don't believe in Karma... which actually I don't!

    Resources:
    Visual Basic Tutorials (1, 2) | MSDN Library | Google | Krugle | Search Forums

    Free components:
    Windows Forms Components | XP Common Controls Library

  27. #27
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: Form Layout: Constructive Criticism

    looks fine
    My light show youtube page (it's made the news) www.youtube.com/@lightsofelberfeld
    Contact me on the socials www.facebook.com/lordorwell

  28. #28

    Thread Starter
    Fanatic Member dom_stapleton's Avatar
    Join Date
    Sep 2005
    Location
    Leigh-on-Sea, UK
    Posts
    665

    Re: Form Layout: Constructive Criticism

    Here is a screenshot of a wizard-style window in my program. I have tried as hard as possible to make it look like an Aero Wizard.

    Any comments?

    Last edited by dom_stapleton; Jun 3rd, 2008 at 04:35 PM.
    I use Microsoft Visual Basic 2008 Express Edition.

    If my post has been helpful, please rate it, unless you don't believe in Karma... which actually I don't!

    Resources:
    Visual Basic Tutorials (1, 2) | MSDN Library | Google | Krugle | Search Forums

    Free components:
    Windows Forms Components | XP Common Controls Library

  29. #29
    Hyperactive Member
    Join Date
    Dec 2006
    Location
    Ubuntu Haters Club
    Posts
    405

    Re: Form Layout: Constructive Criticism

    I really like the last few images you have posted. It's well on it's way to looking like a native Vista application, especially with the addition of this wizard.

    The only thing that I can fault in your 'Wizard' is the text and icon. A few things really:
    • Some of the wizard just have the extended glass into the client area with no text, have you considered that?
    • The icon looks out of place in the fact that it seems too low quality to be there, maybe increase the size a bit or remove it completely
    • The text is not anti-aliased nor does it have any glow, it looks a little inset to the page in fact. To make it look totally realistic I'd try to simply add a white glow behind the text


    Apart from that, great work at doing the system-scheme matching, really I wish I had the time to work towards making my apps look like that.
    » Twitter: @rudi_visser : Website: www.rudiv.se «

    If Apple fixes security flaws, they are heralded as proactive. If Microsoft fixes a security flaw, they finally got around to fixing their buggy OS.

  30. #30

    Thread Starter
    Fanatic Member dom_stapleton's Avatar
    Join Date
    Sep 2005
    Location
    Leigh-on-Sea, UK
    Posts
    665

    Re: Form Layout: Constructive Criticism

    Thanks for your comments, RudiVisser.

    I originally planned to try and implement the glow behind the text on the glass area, but as yet I haven't been able to figure out how this can be done.

    I have added an offset copy of the text in white behind the text to make it a bit more readable when the wizard is over a dark background, but this was only meant to be temporary.

    Do you know how I could implement the text glow? I'm currently scouring the Internet but, so far, to no avail...
    I use Microsoft Visual Basic 2008 Express Edition.

    If my post has been helpful, please rate it, unless you don't believe in Karma... which actually I don't!

    Resources:
    Visual Basic Tutorials (1, 2) | MSDN Library | Google | Krugle | Search Forums

    Free components:
    Windows Forms Components | XP Common Controls Library

  31. #31
    Hyperactive Member
    Join Date
    Dec 2006
    Location
    Ubuntu Haters Club
    Posts
    405

    Re: Form Layout: Constructive Criticism

    Well I know you can use the Windows API DrawThemeTextEx, but in VB.NET, I'm not sure how to do so. Perhaps a question for the API/VB forums

    Keep it up btw
    » Twitter: @rudi_visser : Website: www.rudiv.se «

    If Apple fixes security flaws, they are heralded as proactive. If Microsoft fixes a security flaw, they finally got around to fixing their buggy OS.

  32. #32
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: Form Layout: Constructive Criticism

    you could always cheat and do it with photoshop
    My light show youtube page (it's made the news) www.youtube.com/@lightsofelberfeld
    Contact me on the socials www.facebook.com/lordorwell

  33. #33
    Hyperactive Member
    Join Date
    Dec 2006
    Location
    Ubuntu Haters Club
    Posts
    405

    Re: Form Layout: Constructive Criticism

    Drawing images over the glass area doesn't work as you'd expect either, however.
    » Twitter: @rudi_visser : Website: www.rudiv.se «

    If Apple fixes security flaws, they are heralded as proactive. If Microsoft fixes a security flaw, they finally got around to fixing their buggy OS.

  34. #34

    Thread Starter
    Fanatic Member dom_stapleton's Avatar
    Join Date
    Sep 2005
    Location
    Leigh-on-Sea, UK
    Posts
    665

    Re: Form Layout: Constructive Criticism

    Excellent! Thanks for that, RudiVisser! I searched for the DrawThemeTextEx API and it does exactly what I wanted! I found an example in C# so after a bit of decoding this is what it looks like now:



    PS: Just in case you want to use the glowing text in your application too, this thread of mine contains the solution:

    http://www.vbforums.com/showthread.p...98#post3247798
    Last edited by dom_stapleton; Jun 4th, 2008 at 05:46 PM.
    I use Microsoft Visual Basic 2008 Express Edition.

    If my post has been helpful, please rate it, unless you don't believe in Karma... which actually I don't!

    Resources:
    Visual Basic Tutorials (1, 2) | MSDN Library | Google | Krugle | Search Forums

    Free components:
    Windows Forms Components | XP Common Controls Library

  35. #35
    Hyperactive Member
    Join Date
    Dec 2006
    Location
    Ubuntu Haters Club
    Posts
    405

    Re: Form Layout: Constructive Criticism

    That looks great, really

    The image looks more in place now that it's bigger too Good job!
    » Twitter: @rudi_visser : Website: www.rudiv.se «

    If Apple fixes security flaws, they are heralded as proactive. If Microsoft fixes a security flaw, they finally got around to fixing their buggy OS.

  36. #36

    Thread Starter
    Fanatic Member dom_stapleton's Avatar
    Join Date
    Sep 2005
    Location
    Leigh-on-Sea, UK
    Posts
    665

    Re: Form Layout: Constructive Criticism

    Thanks, RudiVisser !

    This is another screenshot. It's a contact form and is used to create new contacts and edit existing ones. The large button on the top-right displays the contact's image which can be chosen from the user's computer; it's displaying the default image at the moment. Also, the green bar at the top is syncronised with the rest of the program, like in my main window (see post #20 above).



    Again, any comments or suggestions are greatly appreciated and really help me with the evolution of this program.

    PS: Just as a side note, this window is the one I'm least happy with in my program so the more suggestions the better.
    Last edited by dom_stapleton; Jun 4th, 2008 at 05:48 PM.
    I use Microsoft Visual Basic 2008 Express Edition.

    If my post has been helpful, please rate it, unless you don't believe in Karma... which actually I don't!

    Resources:
    Visual Basic Tutorials (1, 2) | MSDN Library | Google | Krugle | Search Forums

    Free components:
    Windows Forms Components | XP Common Controls Library

  37. #37
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: Form Layout: Constructive Criticism

    This would require a major window overhaul, but you don't really know which part of a person's information is going to be important for your user and they ought to be able to control what information is presented to them. I have thrown together a quick example of what i am talking about here:

    You could also implement it the way access does, with the little plusses on the left that expand it. I don't know what your sub-windows look like, but you should have some method of controlling the main window. For example some people would rather have the phone number up front while others would want the "notes" (like at a bank where they all up yo business "how's the wife" stuff).

    Just an idea.
    Attached Images Attached Images  
    Last edited by Lord Orwell; Jun 4th, 2008 at 06:26 PM.
    My light show youtube page (it's made the news) www.youtube.com/@lightsofelberfeld
    Contact me on the socials www.facebook.com/lordorwell

  38. #38
    Fanatic Member CodedFire's Avatar
    Join Date
    Aug 2007
    Location
    In Cog Neato
    Posts
    568

    Re: Form Layout: Constructive Criticism

    Dom, regarding the wizard you made, im quite interested in how you did it. Could you explain how you got it to look like a vista app?
    Languages: Visual Basic 05/08, C# 08
    IDE: Express Editions
    Framework: 2.0, 3.0, 3.5


    Lesson 5: Don't take domestic advice from perpetual singles. - Mendhak

  39. #39

    Thread Starter
    Fanatic Member dom_stapleton's Avatar
    Join Date
    Sep 2005
    Location
    Leigh-on-Sea, UK
    Posts
    665

    Re: Form Layout: Constructive Criticism

    Thanks for your post, Lord_Orwell. You've provided some good ideas and I'm going to try and test some of them out. I'll post the results here.

    As to your post, CodedFire, I have attached an example of an Aero Wizard form. I hope it gives you enough information to be able to adapt it for yourself.
    Attached Files Attached Files
    I use Microsoft Visual Basic 2008 Express Edition.

    If my post has been helpful, please rate it, unless you don't believe in Karma... which actually I don't!

    Resources:
    Visual Basic Tutorials (1, 2) | MSDN Library | Google | Krugle | Search Forums

    Free components:
    Windows Forms Components | XP Common Controls Library

  40. #40
    Fanatic Member CodedFire's Avatar
    Join Date
    Aug 2007
    Location
    In Cog Neato
    Posts
    568

    Re: Form Layout: Constructive Criticism

    You are a star my friend, Thanks!
    Languages: Visual Basic 05/08, C# 08
    IDE: Express Editions
    Framework: 2.0, 3.0, 3.5


    Lesson 5: Don't take domestic advice from perpetual singles. - Mendhak

Page 1 of 2 12 LastLast

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