[SOLVED][WORKAROUND] Run VB 2008 error "cannot be modified at this time" [modified]
-
So the IDE DEFINITLY STOPS EXECUTION before you add the 2nd button?
How to solve a Programing error: 1. Spell check 2. Debug 3. http://www.codeproject.com
Everything seems to have stopped execution but maybe there is something running in the background that I am not aware off. It points to that sort of problem. I can add new button etc so I thought the execution was complete but it must be hanging onto something. Is there a way of finding out or some setting I can change? Hope I have answered your question. Thanks again for your help.
-
Everything seems to have stopped execution but maybe there is something running in the background that I am not aware off. It points to that sort of problem. I can add new button etc so I thought the execution was complete but it must be hanging onto something. Is there a way of finding out or some setting I can change? Hope I have answered your question. Thanks again for your help.
Yes, you've answered it. The process that runs is called vbexpress.exe (For VS2008 Express) The proces that "Hosts" your app is called "SolutionName.vshost.exe" It stays in the memory even if the IDE is stopped, so i don't think that is your problem. When VS first runs an app without you saving it, it creates files, maybe those files are set to read-only by defualt? And then when you save they are overwritten. Also does this only happen in GUI progeramming? What about Console Apps, and Library Files?
How to solve a Programing error: 1. Spell check 2. Debug 3. The Code Project
-
Yes, you've answered it. The process that runs is called vbexpress.exe (For VS2008 Express) The proces that "Hosts" your app is called "SolutionName.vshost.exe" It stays in the memory even if the IDE is stopped, so i don't think that is your problem. When VS first runs an app without you saving it, it creates files, maybe those files are set to read-only by defualt? And then when you save they are overwritten. Also does this only happen in GUI progeramming? What about Console Apps, and Library Files?
How to solve a Programing error: 1. Spell check 2. Debug 3. The Code Project
Thanks agains. I have tried this with VS 2005/2003 and do not get this problem. I also have run this in administrator mode even my rights are admin so I should be permitted to do everything. I have checked the file are their attributes are not read only. At the moment I am only developing GUI.
-
Thanks agains. I have tried this with VS 2005/2003 and do not get this problem. I also have run this in administrator mode even my rights are admin so I should be permitted to do everything. I have checked the file are their attributes are not read only. At the moment I am only developing GUI.
Well, i'm sorry i can't seem to figure out your problem. I tried to google it as well but only came up with: "the designer is currently in read-only mode" Maybe you should try to contact VS support? It may be a problem only relevent to your computer system. Sorry that i can't be of any more assistance. Someone else (prefferable more experianced than me) HELP OVER HERE!! lol.
How to solve a Programing error: 1. Spell check 2. Debug 3. The Code Project
-
Well, i'm sorry i can't seem to figure out your problem. I tried to google it as well but only came up with: "the designer is currently in read-only mode" Maybe you should try to contact VS support? It may be a problem only relevent to your computer system. Sorry that i can't be of any more assistance. Someone else (prefferable more experianced than me) HELP OVER HERE!! lol.
How to solve a Programing error: 1. Spell check 2. Debug 3. The Code Project
Thanks josefvz for all your help, if I find a solution I will let you know.
-
Hi, I wonder if anyone can help me with the error I am getting when I try and run my application in VB 2008. "Form1.vb cannot be modified at this time" I have tried Tools/Option/Build and Run/ Don't save any changes. This does not work and I would want the choice to save changes everytime I run my app. When I put say a button on the form the first time, it works. If I add another say button then that is when I get the problem. Basically adding anything to a form gets the error.
modified on Thursday, January 14, 2010 4:13 AM
Have You posted a message about this error on Microsoft yet?
-
Have You posted a message about this error on Microsoft yet?
Not yet.
-
Have You posted a message about this error on Microsoft yet?
and can you paste me a copy of the hole error message plz
-
and can you paste me a copy of the hole error message plz
Here is a copy of the message. All I done to the form was add/move an extra button. --------------------------- Microsoft Visual Studio --------------------------- The file C:\Temp\DeleteThis\ABCDEFG\Form1.vb cannot be modified at this time. --------------------------- OK ---------------------------
-
Here is a copy of the message. All I done to the form was add/move an extra button. --------------------------- Microsoft Visual Studio --------------------------- The file C:\Temp\DeleteThis\ABCDEFG\Form1.vb cannot be modified at this time. --------------------------- OK ---------------------------
ok i think i have a answer for you if you create a project and just run it. vs saves it in this temp folder as a read only file and if you try to edit it after you ran it then it can]'t be edited anymore try running the project first time then stop the program then save it as a other project name in a other folder then try editing it again if it still gives you the same error try saving it in a folder you choose from the start and then run it then try editing it again
-
ok i think i have a answer for you if you create a project and just run it. vs saves it in this temp folder as a read only file and if you try to edit it after you ran it then it can]'t be edited anymore try running the project first time then stop the program then save it as a other project name in a other folder then try editing it again if it still gives you the same error try saving it in a folder you choose from the start and then run it then try editing it again
Hi Unforgiv3n, Thanks for a possible solution but unfortunately it never worked.
-
Hi Unforgiv3n, Thanks for a possible solution but unfortunately it never worked.
then i realy dont know sorry mate you will have to ask vs support on microsoft
-
Well, i'm sorry i can't seem to figure out your problem. I tried to google it as well but only came up with: "the designer is currently in read-only mode" Maybe you should try to contact VS support? It may be a problem only relevent to your computer system. Sorry that i can't be of any more assistance. Someone else (prefferable more experianced than me) HELP OVER HERE!! lol.
How to solve a Programing error: 1. Spell check 2. Debug 3. The Code Project
Hi, I found a workaround. If you run the app from the code viewer then it works. If you run the app from View designer then you get the message. I am just going to go with running app in code viewer for the present time. I also managed to install SP 1 but it made no difference. Thanks again for all your help.
-
then i realy dont know sorry mate you will have to ask vs support on microsoft
I found a workaround. If you run the app from the code viewer then it works. If you run the app from View designer then you get the message. I am just going to go with running app in code viewer for the present time. I also managed to install SP 1 but it made no difference. Thanks again for all your help.
-
Hi, I found a workaround. If you run the app from the code viewer then it works. If you run the app from View designer then you get the message. I am just going to go with running app in code viewer for the present time. I also managed to install SP 1 but it made no difference. Thanks again for all your help.
Great! It's good that you found an workaround. Please just Edit your OP's (Original Post) Subject and and [SOLVED][WORKAROUND] to the begining. Then when you have the solution just come and Post it here, and remove the [WORKAROUND] Regards, Josef
How to solve a Programing error: 1. Spell check 2. Debug 3. The Code Project