vote up 3 vote down star
4

Where can I find the best set of rules to follow for developing a Delphi application for Windows 7?

flag

What kind of rules are you looking for? Coding standards, UI guidelines, database access best practices? – DOK Oct 21 at 1:03
Yes. Anything and everything specific to Windows 7 that may not (or may) have been applicable to XP or Vista. If it can differentiate what is new or different (e.g. file locations, or user authorization changes) that would be ideal. I am just basically unsure what I need to change or accommodate in my program as I attempt to go from XP development to Vista and Windows 7 development. – lkessler Oct 21 at 1:20
Some things have changes, but I think most stuff has really stayed the same. User data goes in \Users now, not in \Documents and Settings, but you should already be asking the OS for where special folders are. Set the glass settings as appropriate, of course. Make sure that your interface looks good in Segoe UI, and make sure the interface uses Tahoma in Windows XP and Segoe UI in Vista/7. Make sure you install as appropriate into Program Files or Program Files (x86). I can't think of too much else off the top of my head. – Anthony Mills Oct 21 at 1:53
Anthony: Why not add that to your answer and delete the comment. – lkessler Oct 21 at 3:43

2 Answers

vote up 1 vote down check

Well, you can check out the Windows User Experience Interaction Guidelines...

Mainly, the best thing to keep in mind is to follow the principle of least surprise. Make your app work the way your users expect your app to work. If it has pieces that look like Office, make them work like Office. If it has pieces that look like Explorer, make them work like Explorer.

link|flag
Good comment. But even Office's interface has changed, and radically at that with the introduction of the Ribbon. – lkessler Oct 21 at 1:22
vote up 2 vote down

2 recent posts by Marco on this subject:
Old Delphi Applications More Compatible with Windows 7
Non Themed Windows Applications and Virtual Store

link|flag
That 2nd link would have been a great answer to my question: "During Installation, where do the Various File Types go on Vista". stackoverflow.com/questions/427164/… Thanks for that. – lkessler Oct 21 at 2:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.