Click here to Skip to main content
15,903,740 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: A question about Remoting Pin
yyj_ljz25-May-04 20:31
yyj_ljz25-May-04 20:31 
GeneralRe: A question about Remoting Pin
normanordas1-Jun-04 1:02
normanordas1-Jun-04 1:02 
GeneralProject Read only. Pin
Anonymous25-May-04 9:33
Anonymous25-May-04 9:33 
GeneralRe: Project Read only. Pin
Aryadip25-May-04 19:41
Aryadip25-May-04 19:41 
GeneralA question about PictureBox Pin
24-May-04 23:52
suss24-May-04 23:52 
GeneralRe: A question about PictureBox Pin
Aaron Eldreth27-May-04 11:13
Aaron Eldreth27-May-04 11:13 
QuestionIs it possible to make a setup .exe with .NET installer? Pin
adonisv24-May-04 14:01
adonisv24-May-04 14:01 
AnswerRe: Is it possible to make a setup .exe with .NET installer? Pin
normanordas1-Jun-04 0:53
normanordas1-Jun-04 0:53 
GeneralRe: Is it possible to make a setup .exe with .NET installer? Pin
Ashraf Fathy1-Jun-04 2:26
Ashraf Fathy1-Jun-04 2:26 
GeneralCheck this out! Pin
adonisv1-Jun-04 9:27
adonisv1-Jun-04 9:27 
GeneralSetting Environment Variables... Pin
waffleman24-May-04 8:59
waffleman24-May-04 8:59 
GeneralRe: Setting Environment Variables... Pin
deeps2624-May-04 19:08
deeps2624-May-04 19:08 
GeneralHTMLDocument and scripts Pin
Aggtaa24-May-04 4:10
Aggtaa24-May-04 4:10 
GeneralCheque Writing Control Pin
BrentSeufert22-May-04 12:54
BrentSeufert22-May-04 12:54 
GeneralRe: Cheque Writing Control Pin
Colin Angus Mackay23-May-04 1:53
Colin Angus Mackay23-May-04 1:53 
GeneralRe: Cheque Writing Control Pin
BrentSeufert23-May-04 18:23
BrentSeufert23-May-04 18:23 
GeneralRe: Cheque Writing Control Pin
GNPrinting5-Apr-11 19:25
GNPrinting5-Apr-11 19:25 
GeneralSending Faxes from .NET pages Pin
taylo21-May-04 17:01
taylo21-May-04 17:01 
GeneralReference nightmares in .NET 2003 Pin
jremignanti21-May-04 8:52
jremignanti21-May-04 8:52 
GeneralRe: Reference nightmares in .NET 2003 Pin
Nicholas Naddaf21-May-04 9:12
Nicholas Naddaf21-May-04 9:12 
GeneralRe: Reference nightmares in .NET 2003 Pin
TigerNinja_21-May-04 12:56
TigerNinja_21-May-04 12:56 
Some advice:
1. always use project references. if you look in your .csproj file you'll notice the references use GUIDs, this means you have a project ref. however, you can only do this if you are referencing a project in the same solution.

2. if you have web projects, delete your VsWebCache, and make sure you don't have a run away process. just to be safe you could kill aspnet_wp.exe or restart iis.

[deleting vswebcache]
[STAThread]<br />
		static void Main(string[] args)<br />
		{<br />
            foreach (string dir in Directory.GetDirectories(@"c:\documents and settings"))<br />
            {<br />
                string webCacheDir = dir + @"\VSWebCache";<br />
                if (Directory.Exists(webCacheDir))<br />
                {<br />
                    Console.WriteLine("Deleting " + webCacheDir + "...");<br />
                    Directory.Delete(webCacheDir, true);<br />
                }<br />
            }<br />
		}


R.Bischoff


Denn Gott hat die Menschen so sehr geliebt, daß er seinen einzigen Sohn für sie hergab. Jeder, der an ihn glaubt, wird nicht verlorengehen, sondern das ewige Leben haben


Questionsupports .net more than 2 GB of main memory? Pin
occcy21-May-04 4:01
occcy21-May-04 4:01 
AnswerRe: supports .net more than 2 GB of main memory? Pin
TigerNinja_21-May-04 13:04
TigerNinja_21-May-04 13:04 
GeneralRe: supports .net more than 2 GB of main memory? Pin
Aryadip24-May-04 0:55
Aryadip24-May-04 0:55 
QuestionRandom Navigation of a BindingContext ??? Pin
Kurt B. Ederhoff21-May-04 3:50
Kurt B. Ederhoff21-May-04 3:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.