Click here to Skip to main content
15,899,679 members
Home / Discussions / C#
   

C#

 
AnswerRe: Need to write a Form that accepts dropping files dragged from Explorer Pin
Member 103390712-Sep-05 12:21
Member 103390712-Sep-05 12:21 
AnswerRe: Need to write a Form that accepts dropping files dragged from Explorer Pin
Mohamad Al Husseiny12-Sep-05 12:43
Mohamad Al Husseiny12-Sep-05 12:43 
QuestionDeserializer question Pin
Tom Wright12-Sep-05 11:23
Tom Wright12-Sep-05 11:23 
AnswerRe: Deserializer question Pin
S. Senthil Kumar12-Sep-05 15:26
S. Senthil Kumar12-Sep-05 15:26 
Questionlength Pin
xilefxilef12-Sep-05 10:57
xilefxilef12-Sep-05 10:57 
QuestionMoving files Pin
BECK712-Sep-05 7:11
BECK712-Sep-05 7:11 
AnswerRe: Moving files Pin
leppie12-Sep-05 7:23
leppie12-Sep-05 7:23 
AnswerRe: Moving files Pin
KaptinKrunch12-Sep-05 7:44
KaptinKrunch12-Sep-05 7:44 
a simple function as such should do the trick.

void MoveMe(string filename)
{
int x = 1;
string newfile = filename;

while(System.IO.File.Exists(newfile) == true)
{
String[] tmp = filename.Split(Convert.ToChar("."));
newfile = tmp[0] + x + "." + tmp[1];
x++;
}

System.IO.File.Move(filename, newfile);
}

-- modified at 13:45 Monday 12th September, 2005
GeneralRe: Moving files Pin
BECK712-Sep-05 10:04
BECK712-Sep-05 10:04 
GeneralRe: Moving files Pin
KaptinKrunch12-Sep-05 14:16
KaptinKrunch12-Sep-05 14:16 
QuestionMailer Application Pin
GalRatz12-Sep-05 6:24
GalRatz12-Sep-05 6:24 
AnswerRe: Mailer Application Pin
Jon Sagara12-Sep-05 6:36
Jon Sagara12-Sep-05 6:36 
GeneralRe: Mailer Application Pin
GalRatz12-Sep-05 8:25
GalRatz12-Sep-05 8:25 
QuestionDeveloping application for Smartphones and PDAs Pin
rnvrnv12-Sep-05 5:40
rnvrnv12-Sep-05 5:40 
AnswerRe: Developing application for Smartphones and PDAs Pin
Jon Sagara12-Sep-05 7:04
Jon Sagara12-Sep-05 7:04 
Questioncaching GDI+ objects? Pin
CWinThread12-Sep-05 5:31
CWinThread12-Sep-05 5:31 
AnswerRe: caching GDI+ objects? Pin
Dave Kreskowiak12-Sep-05 6:11
mveDave Kreskowiak12-Sep-05 6:11 
GeneralRe: caching GDI+ objects? Pin
CWinThread12-Sep-05 10:14
CWinThread12-Sep-05 10:14 
QuestionTwo dimensional double array Pin
SenorSouza12-Sep-05 4:52
SenorSouza12-Sep-05 4:52 
AnswerRe: Two dimensional double array Pin
Christian Graus12-Sep-05 12:50
protectorChristian Graus12-Sep-05 12:50 
GeneralRe: Two dimensional double array Pin
SenorSouza12-Sep-05 20:12
SenorSouza12-Sep-05 20:12 
QuestionReflection & Arrays Pin
Yoyosch12-Sep-05 4:25
Yoyosch12-Sep-05 4:25 
GeneralRe: Reflection & Arrays Pin
Yoyosch12-Sep-05 5:41
Yoyosch12-Sep-05 5:41 
GeneralRe: Reflection & Arrays Pin
leppie12-Sep-05 7:29
leppie12-Sep-05 7:29 
QuestionRe: Reflection & Arrays Pin
Yoyosch13-Sep-05 2:08
Yoyosch13-Sep-05 2:08 

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.