Visual Studio Bug ????
-
Hi, I am working with Visual Studio .NET 2003 and everything worked fine until... I added a new dialog and tried to create a new CDialog class to attach to it by either double clicking on the dialog frame or right click and "Add Class". When I fill in the class name and base class and hit OK, nothing happens and the new class is not created anywhere. I don't see any error messages as well. I tried multiple names, but nothing works. I can do it manually but this takes longer to do... Thanks in advance, Shay
-
Hi, I am working with Visual Studio .NET 2003 and everything worked fine until... I added a new dialog and tried to create a new CDialog class to attach to it by either double clicking on the dialog frame or right click and "Add Class". When I fill in the class name and base class and hit OK, nothing happens and the new class is not created anywhere. I don't see any error messages as well. I tried multiple names, but nothing works. I can do it manually but this takes longer to do... Thanks in advance, Shay
I've just done this and successfully added the dialogue box and a class (by right clicking on it and using the context menu) so I don't think it's a bug. :confused: Which version of Visual Studio .NET 2003 are you using? I'm using 7.1.3088 (Click Help=>About Microsoft Visual C++ 2003).
-
I've just done this and successfully added the dialogue box and a class (by right clicking on it and using the context menu) so I don't think it's a bug. :confused: Which version of Visual Studio .NET 2003 are you using? I'm using 7.1.3088 (Click Help=>About Microsoft Visual C++ 2003).
got the same version. I was able to add dialog classes but from some reason I can't do it anymore on this project (other projects are good). The "bug" is that I see no error message and the new class is not created... Shay
-
Hi, I am working with Visual Studio .NET 2003 and everything worked fine until... I added a new dialog and tried to create a new CDialog class to attach to it by either double clicking on the dialog frame or right click and "Add Class". When I fill in the class name and base class and hit OK, nothing happens and the new class is not created anywhere. I don't see any error messages as well. I tried multiple names, but nothing works. I can do it manually but this takes longer to do... Thanks in advance, Shay
Problems of this type usually signal that one or more of the temporary files that Visual Studio creates has been corrupted. Exit Visual Studio. Look in the folder containing your project file
_project_.vcproj
. Delete any files named_project_.ncb
or_project_.aps
. This is safe to do, since Visual Studio will re-create them as needed.
Software Zen:
delete this; // [Fold With Us!](http://www.codeproject.com/script/profile/whos_who.asp?msg=1307432&id=10338#xx1307432xx)[[^](http://www.codeproject.com/script/profile/whos_who.asp?msg=1307432&id=10338#xx1307432xx "New Window")]
-
Problems of this type usually signal that one or more of the temporary files that Visual Studio creates has been corrupted. Exit Visual Studio. Look in the folder containing your project file
_project_.vcproj
. Delete any files named_project_.ncb
or_project_.aps
. This is safe to do, since Visual Studio will re-create them as needed.
Software Zen:
delete this; // [Fold With Us!](http://www.codeproject.com/script/profile/whos_who.asp?msg=1307432&id=10338#xx1307432xx)[[^](http://www.codeproject.com/script/profile/whos_who.asp?msg=1307432&id=10338#xx1307432xx "New Window")]
I already did the work manually but thanks a lot for the info. This had happen more than once so next time I will try this trick. shay