I am attempting to convert a desktop application to a web application. I cannot copy anything from the desktop application to the web application. What is the best approach? I am using Windows 7 for development.
You can copy non-UI project items between desktop and web projects (modules and classes, for example).
Generally, you’ll need to recreate your Window layouts as WebPages and then move over (or adapt) code as necessary.
OK, so no UI items can be copied. buttons, listboxes, etc. must be re-created. Correct?
That is correct.