jorge Posted August 6, 2003 Posted August 6, 2003 Hey, I when i try to open/load a c# project vs.net give labirary nog found and hangs? whats wrong?, vb.net, c++,... don't ahve that problem. Quote Jorge - http://www.blackdot.be/?page=apache.htm
jorge Posted August 6, 2003 Author Posted August 6, 2003 Wish i know, Only says: "Library nog found", and stops loading, so i have a ampty project where the reference is empty and thats all, Need a ScreenShot? Quote Jorge - http://www.blackdot.be/?page=apache.htm
*Experts* mutant Posted August 6, 2003 *Experts* Posted August 6, 2003 Yes, maybe that would help as I dont think I ever seen this error. :) Quote
jorge Posted August 6, 2003 Author Posted August 6, 2003 (edited) screen Here you go, This is tge only msg i get then a empty IDE. btw: reinstalling vc# won't help :s Edited August 7, 2003 by jorge Quote Jorge - http://www.blackdot.be/?page=apache.htm
jorge Posted August 7, 2003 Author Posted August 7, 2003 anyone???? Quote Jorge - http://www.blackdot.be/?page=apache.htm
AndreRyan Posted August 7, 2003 Posted August 7, 2003 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 Quote .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?
jorge Posted August 7, 2003 Author Posted August 7, 2003 (edited) Done it, no change :s Edited August 7, 2003 by jorge Quote Jorge - http://www.blackdot.be/?page=apache.htm
*Experts* mutant Posted August 7, 2003 *Experts* Posted August 7, 2003 Never seen that error, if your project has no references when you start a new project, can you add any? Or any files? Quote
jorge Posted August 7, 2003 Author Posted August 7, 2003 (edited) Lets try. What are de default references??? When adding a form(no references added) http://users.skynet.be/jorge/vcsharp2.jpg //edit:Same for all object, accept shared once like html file ect Edited August 7, 2003 by jorge Quote Jorge - http://www.blackdot.be/?page=apache.htm
*Experts* Volte Posted August 7, 2003 *Experts* Posted August 7, 2003 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. Quote
jorge Posted August 7, 2003 Author Posted August 7, 2003 Installed it 3 time, log give no errors. btw: can't be cd, work fine on other computer where i have it installed, tobad it a bit to slow to run it :s Quote Jorge - http://www.blackdot.be/?page=apache.htm
*Experts* Volte Posted August 7, 2003 *Experts* Posted August 7, 2003 Has it done this since you installed it, or did it just start one day? Quote
jorge Posted August 7, 2003 Author Posted August 7, 2003 Don't know sinds when, I tested all the aps about 2 weeks ago when i installed vs.net, Only used vb.net sinds then, but i'd like to lear some c# so i tryed t ostart it agen 2 dags ago but sinds then it give that error. Quote Jorge - http://www.blackdot.be/?page=apache.htm
*Experts* Volte Posted August 7, 2003 *Experts* Posted August 7, 2003 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...)? Quote
jorge Posted August 7, 2003 Author Posted August 7, 2003 Only c# dat doen't work, Verion is: VS.net pro 2002 Quote Jorge - http://www.blackdot.be/?page=apache.htm
*Experts* Volte Posted August 7, 2003 *Experts* Posted August 7, 2003 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. Quote
jorge Posted August 7, 2003 Author Posted August 7, 2003 Cool, Thanx VolteFace, work like a cham :D Btw you know any good very noob tuto's for vc#.net, So i have some reading when i'm on vacation :p Quote Jorge - http://www.blackdot.be/?page=apache.htm
*Experts* Volte Posted August 7, 2003 *Experts* Posted August 7, 2003 As recommended as someone in another thread, look at http://www.csharp-corner.com/ Quote
jorge Posted August 7, 2003 Author Posted August 7, 2003 Ok, thall keep me busy for a wile :p Thanx agen Quote Jorge - http://www.blackdot.be/?page=apache.htm
jorge Posted August 7, 2003 Author Posted August 7, 2003 (edited) Maby related problem: When i try to compile a simple hallo word app i get: AI.cs(6,5): error CS0117: 'System.Console' does not contain a definition for 'writeLine' See atache for file that gives error NeverMinde, Seems c# is case sensitive :(ai.cs Edited August 7, 2003 by jorge Quote Jorge - http://www.blackdot.be/?page=apache.htm
*Experts* mutant Posted August 7, 2003 *Experts* Posted August 7, 2003 Its supposed to be WriteLine, C# is case sensitive. :) Quote
*Experts* Volte Posted August 7, 2003 *Experts* Posted August 7, 2003 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. Quote
jorge Posted August 7, 2003 Author Posted August 7, 2003 Ya, But in vc#.net in IDE it say console is not a valid member, but if i compile form cmd it works ?? Small question, -> how do i do process.stary("my.exe")?? in c# greets Quote Jorge - http://www.blackdot.be/?page=apache.htm
*Experts* Volte Posted August 7, 2003 *Experts* Posted August 7, 2003 Same as VB... you may need to import the System.Diagnostics namespace, though: at the top of the code, butusing System.DiagnosticsThen the Process.Start("moo.exe")will work. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.