Windows Applications Problems in C#..please i need help..thank you..
-
Umm.. Im currently using visual studio 2005 and my problem is everytime i create a copy of a windows application project..(example WIndowsApplications2) and i change its content using another pc..and everytime i compile it.. the original contents are the ones shown in the screen.. not the new thing i have already change... and everytime i change the first form to be displayed in the program.cs the form that is being displayed is the last form being compiled. For example i've change it to form5 but its showing Form12... please help... thank you very much...
-
Umm.. Im currently using visual studio 2005 and my problem is everytime i create a copy of a windows application project..(example WIndowsApplications2) and i change its content using another pc..and everytime i compile it.. the original contents are the ones shown in the screen.. not the new thing i have already change... and everytime i change the first form to be displayed in the program.cs the form that is being displayed is the last form being compiled. For example i've change it to form5 but its showing Form12... please help... thank you very much...
Are you sure it's building ? Are you sure you're not working in debug and copying the release exe ?
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
Are you sure it's building ? Are you sure you're not working in debug and copying the release exe ?
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
Im sure its building.. its compiling the whole application but it keeps showing the last form compiled.. i think the problem is because of its the copied file?
There are two folders, debug and release. I think you're copying one and building the other.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
There are two folders, debug and release. I think you're copying one and building the other.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
im copying thw whole application when i tried to erase the exe file in the debug folder its just the same. it keeps showing the form that's not meant to be shown... is there a way that i could run it with the new content? its very frustrating...thanks for your help...
-
im copying thw whole application when i tried to erase the exe file in the debug folder its just the same. it keeps showing the form that's not meant to be shown... is there a way that i could run it with the new content? its very frustrating...thanks for your help...
Within Visual Studio, if you have more than one project in your solution, and hit the icon (or the key combination) to run, it will execute the one project "set as startup project" (context menu item in solution explorer pane). Maybe you have forgotten to set it to the one you want to run ? :)
Luc Pattyn [My Articles]