Jump to content
Xtreme .Net Talk

Recommended Posts

Posted
Try unistalling the entire studio (every component). Strip the remaining directories out manually and try a full install, I've had to do this, and found it effective (once the installer stops complaining) after many issues with the IDE
.Net allows software to be written for any version of Windows and not break like Unmanaged applications unless using Unmanaged procedures like APIs. If your program uses large amounts of memory but releases it when something else needs it, then what's the problem?
  • *Experts*
Posted

Did you have any problems installing it in the first place? Has it always done this, or did it just start?

 

Where did you get your copy of VS? You may be able to exchange it if you can determine that the CD does not work properly.

  • *Experts*
Posted

So does VB.NET work properly then? It's just C# that's not working? That is certainly odd... What version of VS.NET do you have?

 

You do have the full VS.NET, right? Not just the VB.NET version (probably a stupid question, but you never know...)?

  • *Experts*
Posted

Try going to Start >> Run and executing this:

 

regsvr32 "c:\program files\microsoft visual studio .net\vc7\vcpackages\csproj.dll"

 

Alter that to fit your VS.NET path.

  • *Experts*
Posted
A good way to get used to that is to use the intellisense militantly -- when you use <object>. and the intellisense list pops up, find the item you want (by typing in whatever case you want, until the item shows in the list) and then press tab and it will automatically complete the word in the correct case. You can press control-space at any time you pop up the intellisense as well.
  • *Experts*
Posted
Same as VB... you may need to import the System.Diagnostics namespace, though: at the top of the code, but
using System.Diagnostics

Then the

Process.Start("moo.exe")

will work.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...