Click here to Skip to main content
15,890,527 members
Home / Discussions / C#
   

C#

 
GeneralRe: Fun with collections... Pin
Colin Angus Mackay15-Apr-05 23:37
Colin Angus Mackay15-Apr-05 23:37 
GeneralRe: Fun with collections... Pin
tantiboh16-Apr-05 6:29
tantiboh16-Apr-05 6:29 
GeneralVS.NET 2003 IDE Pin
pmasknguyen15-Apr-05 18:43
pmasknguyen15-Apr-05 18:43 
GeneralRe: VS.NET 2003 IDE Pin
leppie15-Apr-05 21:05
leppie15-Apr-05 21:05 
GeneralWeb Page Generator using C... Pin
ZMAN072815-Apr-05 14:16
ZMAN072815-Apr-05 14:16 
GeneralRe: Web Page Generator using C... Pin
Yulianto.15-Apr-05 16:07
Yulianto.15-Apr-05 16:07 
Questionget size of picture folder?? Pin
Anonymous15-Apr-05 12:58
Anonymous15-Apr-05 12:58 
AnswerRe: get size of picture folder?? Pin
Nicholas Cardi15-Apr-05 13:21
Nicholas Cardi15-Apr-05 13:21 
System.IO.DirectoryInfo dir = new System.IO.DirectoryInfo(@"C:\");
System.IO.FileInfo[] files = dir.GetFiles();
long totalsize = 0;

for (int i = 0; i <= files.GetUpperBound(0); i++)
{
totalsize = files[i].Length;
}

MessageBox.Show(totalsize.ToString());

Best of Luck

Forever Developing
GeneralAppDomain Question Pin
cobyjone15-Apr-05 12:53
cobyjone15-Apr-05 12:53 
GeneralRe: AppDomain Question Pin
turbochimp15-Apr-05 17:55
turbochimp15-Apr-05 17:55 
GeneralRe: AppDomain Question Pin
cobyjone15-Apr-05 18:19
cobyjone15-Apr-05 18:19 
GeneralRe: AppDomain Question Pin
turbochimp15-Apr-05 19:11
turbochimp15-Apr-05 19:11 
GeneralRe: AppDomain Question Pin
leppie15-Apr-05 21:19
leppie15-Apr-05 21:19 
GeneralReflection problem Pin
Anonymous15-Apr-05 12:23
Anonymous15-Apr-05 12:23 
GeneralRe: Reflection problem Pin
leppie15-Apr-05 21:22
leppie15-Apr-05 21:22 
Generalremoving characters Pin
cishi_us15-Apr-05 11:40
cishi_us15-Apr-05 11:40 
GeneralRe: removing characters Pin
Nicholas Cardi15-Apr-05 11:45
Nicholas Cardi15-Apr-05 11:45 
GeneralRe: removing characters Pin
tantiboh15-Apr-05 22:17
tantiboh15-Apr-05 22:17 
Questionscroll to a certain row in Excel? Pin
novadProt15-Apr-05 11:36
novadProt15-Apr-05 11:36 
AnswerRe: scroll to a certain row in Excel? Pin
Nicholas Cardi15-Apr-05 12:35
Nicholas Cardi15-Apr-05 12:35 
GeneralRe: scroll to a certain row in Excel? Pin
novadProt15-Apr-05 19:48
novadProt15-Apr-05 19:48 
QuestionString.Replace...does it even work? Pin
FocusedWolf15-Apr-05 11:23
FocusedWolf15-Apr-05 11:23 
AnswerRe: String.Replace...does it even work? Pin
afinnell15-Apr-05 11:33
afinnell15-Apr-05 11:33 
GeneralRe: String.Replace...does it even work? Pin
FocusedWolf17-Apr-05 16:35
FocusedWolf17-Apr-05 16:35 
GeneralGetting a DataSet of selected rows in a DataGrid Pin
Member 141845415-Apr-05 10:47
Member 141845415-Apr-05 10:47 

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.