Click here to Skip to main content
15,902,908 members
Home / Discussions / C#
   

C#

 
GeneralRe: Implementing an Object.OnChange event Pin
bzurer30-Aug-03 8:15
bzurer30-Aug-03 8:15 
GeneralRe: Implementing an Object.OnChange event Pin
Philip Fitzsimons30-Aug-03 9:55
Philip Fitzsimons30-Aug-03 9:55 
GeneralRe: Implementing an Object.OnChange event Pin
bzurer30-Aug-03 10:43
bzurer30-Aug-03 10:43 
QuestionHow to get the Focused Form...? Pin
EvanChen99929-Aug-03 21:33
EvanChen99929-Aug-03 21:33 
Generalclass not showing up Pin
Member 50926229-Aug-03 17:14
Member 50926229-Aug-03 17:14 
GeneralRe: class not showing up Pin
TigerNinja_29-Aug-03 19:32
TigerNinja_29-Aug-03 19:32 
GeneralRe: class not showing up Pin
Member 50926230-Aug-03 15:42
Member 50926230-Aug-03 15:42 
GeneralRe: class not showing up Pin
TigerNinja_29-Aug-03 20:26
TigerNinja_29-Aug-03 20:26 
This will enumerate all special folders with their respective path.

requiremnts, create a ListView named listView1 in your win form, then paste code into button event handler or Initialize()

<br />
		private void button2_Click(object sender, System.EventArgs e)<br />
		{<br />
			ListViewItem lvi = null;<br />
			foreach(Environment.SpecialFolder sf in Enum.GetValues(typeof(Environment.SpecialFolder)))<br />
			{<br />
				lvi = new ListViewItem(Enum.Parse(typeof(Environment.SpecialFolder), sf.ToString(), true).ToString());<br />
				lvi.SubItems.Add(Environment.GetFolderPath(sf));<br />
				listView1.Items.Add(lvi);		<br />
			}<br />
		}<br />






R.Bischoff
.NET, Kommst du mit?


GeneralProject settings do not seem to save /unsafe compiler switch Pin
cognitive_psych29-Aug-03 12:58
cognitive_psych29-Aug-03 12:58 
GeneralRe: Project settings do not seem to save /unsafe compiler switch Pin
leppie29-Aug-03 13:44
leppie29-Aug-03 13:44 
GeneralRe: Project settings do not seem to save /unsafe compiler switch Pin
cognitive_psych29-Aug-03 16:26
cognitive_psych29-Aug-03 16:26 
Generalxml to DB c# Pin
Member 42486029-Aug-03 11:48
Member 42486029-Aug-03 11:48 
GeneralRe: xml to DB c# Pin
TigerNinja_29-Aug-03 19:36
TigerNinja_29-Aug-03 19:36 
GeneralProgress Bar Pin
Felipe Rezende29-Aug-03 9:48
Felipe Rezende29-Aug-03 9:48 
GeneralRe: Progress Bar Pin
leppie29-Aug-03 14:25
leppie29-Aug-03 14:25 
GeneralRe: Progress Bar Pin
David Stone29-Aug-03 20:11
sitebuilderDavid Stone29-Aug-03 20:11 
QuestionInstance of struct = Object? Pin
Alvaro Mendez29-Aug-03 9:07
Alvaro Mendez29-Aug-03 9:07 
AnswerRe: Instance of struct = Object? Pin
David Stone29-Aug-03 10:27
sitebuilderDavid Stone29-Aug-03 10:27 
GeneralRe: Instance of struct = Object? Pin
Alvaro Mendez29-Aug-03 10:39
Alvaro Mendez29-Aug-03 10:39 
GeneralRe: Instance of struct = Object? Pin
David Stone29-Aug-03 11:41
sitebuilderDavid Stone29-Aug-03 11:41 
Generalipaddress.any Pin
MeisterBiber29-Aug-03 8:49
MeisterBiber29-Aug-03 8:49 
GeneralEnd an invoke early Pin
Ista29-Aug-03 8:30
Ista29-Aug-03 8:30 
General&quot;memory stream is not expandable&quot; Pin
devvvy29-Aug-03 7:32
devvvy29-Aug-03 7:32 
GeneralRe: &quot;memory stream is not expandable&quot; Pin
Daniel Turini29-Aug-03 7:52
Daniel Turini29-Aug-03 7:52 
GeneralRe: &quot;memory stream is not expandable&quot; Pin
devvvy29-Aug-03 8:19
devvvy29-Aug-03 8:19 

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.