Click here to Skip to main content
15,888,454 members
Home / Discussions / C#
   

C#

 
GeneralRe: Outlook Birthday Reminders Pin
zevman16-Sep-07 9:06
zevman16-Sep-07 9:06 
GeneralRe: Outlook Birthday Reminders Pin
Lutosław16-Sep-07 9:48
Lutosław16-Sep-07 9:48 
GeneralRe: Outlook Birthday Reminders Pin
zevman16-Sep-07 10:08
zevman16-Sep-07 10:08 
GeneralRe: Outlook Birthday Reminders Pin
Paul Conrad16-Sep-07 10:10
professionalPaul Conrad16-Sep-07 10:10 
GeneralRe: Outlook Birthday Reminders Pin
zevman16-Sep-07 10:19
zevman16-Sep-07 10:19 
GeneralRe: Outlook Birthday Reminders Pin
Paul Conrad16-Sep-07 10:22
professionalPaul Conrad16-Sep-07 10:22 
GeneralRe: Outlook Birthday Reminders Pin
zevman16-Sep-07 9:08
zevman16-Sep-07 9:08 
QuestionOnly look in subfolders.. Pin
andredani16-Sep-07 6:35
andredani16-Sep-07 6:35 
hi how do i change to only look in the path´s subfolders, and move them to (dest)?? And when my program are finished how do i convert my project to a program, witch program do u use??

heres my code:
string[] lines = System.IO.File.ReadAllLines("dataapplikationer.txt");

string appl = lines[1];
string path = lines[2];
string sort = lines[5];
string dest = lines[3];

System.IO.DirectoryInfo dir = new System.IO.DirectoryInfo(path);
{

int filesCouunt = dir.GetFiles().Length;
string name = dir.Name;
DateTime time = DateTime.Now;
ListViewItem item = new ListViewItem(new string[] { sort, name, time.ToString(), "Summa tid", filesCouunt.ToString(), "av:", appl });
this.listView2.Items.Add(item);
this.listView2.AutoResizeColumns(ColumnHeaderAutoResizeStyle.HeaderSize);

//thanks;)
AnswerRe: Only look in subfolders.. Pin
Lutosław16-Sep-07 8:46
Lutosław16-Sep-07 8:46 
GeneralRe: Only look in subfolders.. Pin
andredani16-Sep-07 9:03
andredani16-Sep-07 9:03 
GeneralRe: Only look in subfolders.. Pin
Lutosław16-Sep-07 9:37
Lutosław16-Sep-07 9:37 
GeneralRe: Only look in subfolders.. Pin
andredani16-Sep-07 19:17
andredani16-Sep-07 19:17 
GeneralRe: Only look in subfolders.. [modified] Pin
Lutosław17-Sep-07 2:02
Lutosław17-Sep-07 2:02 
GeneralRe: Only look in subfolders.. Pin
andredani17-Sep-07 2:22
andredani17-Sep-07 2:22 
GeneralRe: Only look in subfolders.. Pin
Lutosław17-Sep-07 3:21
Lutosław17-Sep-07 3:21 
GeneralRe: Only look in subfolders.. Pin
Lutosław17-Sep-07 3:34
Lutosław17-Sep-07 3:34 
QuestionThe type or namespace name could not be found Pin
Lutosław16-Sep-07 4:53
Lutosław16-Sep-07 4:53 
AnswerRe: The type or namespace name could not be found Pin
PIEBALDconsult16-Sep-07 5:10
mvePIEBALDconsult16-Sep-07 5:10 
GeneralRe: The type or namespace name could not be found Pin
Lutosław16-Sep-07 8:34
Lutosław16-Sep-07 8:34 
GeneralRe: The type or namespace name could not be found Pin
PIEBALDconsult16-Sep-07 11:09
mvePIEBALDconsult16-Sep-07 11:09 
GeneralRe: The type or namespace name could not be found Pin
PIEBALDconsult16-Sep-07 11:11
mvePIEBALDconsult16-Sep-07 11:11 
GeneralRe: The type or namespace name could not be found Pin
Lutosław16-Sep-07 11:20
Lutosław16-Sep-07 11:20 
GeneralRe: The type or namespace name could not be found Pin
PIEBALDconsult16-Sep-07 15:05
mvePIEBALDconsult16-Sep-07 15:05 
GeneralRe: The type or namespace name could not be found Pin
Lutosław16-Sep-07 8:48
Lutosław16-Sep-07 8:48 
GeneralRe: The type or namespace name could not be found Pin
Lutosław16-Sep-07 9:13
Lutosław16-Sep-07 9:13 

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.