Click here to Skip to main content
15,881,715 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
If I convert/import an old Visual Studio 6.0 project into a new VIsual Studio (10 or 12), can I access newer UI controls/methods to be used on the older (and now imported) dialogs?

For instance, the old CListCtrl was cumbersome to use. Everything had to be set up programmatically to sort, column hide, resize etc. If I import a tool into Vis Studio 10 or 12, and access a dialog from that tool which contains a CListCtrl, can I now make use of newer methods of CListCtrl on this older dialog? Do I need to remove my current CListCtrl, and put the newer one there, or do I just call the new methods to make sue of them? Or is it more cumbersome than that, where I cannot make use of new stuff on older dialogs, and I have to re-create my dialog, with new controls?

Do my questions make sense? I'm tryng to figure out what level of effort it will be to get better List Controls into old tools.

And Finally, even after looking at the msdn pages for CListCtrls in Visual Studio 10, I cannot easily tell when functionality comes for "free"... looks like I still have to code up my own sorting, resizing.. etc... is that true?

Thank you very much for your time.
Posted

1 solution

You should start by building the project under the new system and fixing any errors/incompatibilities. Once you have it clean you can look at each control to see what new features are available and how it may be improved. Take a look at https://msdn.microsoft.com/en-us/library/ff657751(v=vs.85).aspx[^] for some Microsoft guidance on improving the look and feel.
 
Share this answer
 
Comments
Member 11684563 12-May-15 14:43pm    
Thank you for your guidance.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900