Click here to Skip to main content
15,881,757 members
Home / Discussions / C#
   

C#

 
AnswerRe: Hash Table Problem Urgent Pin
lost in transition 20-Sep-07 11:27
lost in transition 20-Sep-07 11:27 
Questionurgent copy image from hard Drive on local host Pin
mavii19-Sep-07 22:56
mavii19-Sep-07 22:56 
AnswerRe: urgent copy image from hard Drive on local host Pin
Giorgi Dalakishvili19-Sep-07 23:21
mentorGiorgi Dalakishvili19-Sep-07 23:21 
GeneralRe: urgent copy image from hard Drive on local host Pin
mavii19-Sep-07 23:51
mavii19-Sep-07 23:51 
GeneralRe: urgent copy image from hard Drive on local host Pin
Pete O'Hanlon19-Sep-07 23:55
mvePete O'Hanlon19-Sep-07 23:55 
GeneralRe: urgent copy image from hard Drive on local host Pin
mavii20-Sep-07 0:35
mavii20-Sep-07 0:35 
GeneralRe: urgent copy image from hard Drive on local host Pin
pmarfleet20-Sep-07 1:13
pmarfleet20-Sep-07 1:13 
GeneralRe: urgent copy image from hard Drive on local host Pin
Pete O'Hanlon20-Sep-07 1:20
mvePete O'Hanlon20-Sep-07 1:20 
You can't keep the filenames the same - you are going to have to change them somehow.

The Guid example would be:
string s = System.IO.Path.GetFileName(openFileDialog1.FileName);
string st = "Pict" + Guid.NewGuid().ToString() + ".jpg";
File.Copy(openDialog1.Filename, Path.Combine(@"c:\inetpub\wwwroot\15 website\images", st));


Deja View - the feeling that you've seen this post before.

GeneralRe: urgent copy image from hard Drive on local host Pin
mavii21-Sep-07 1:01
mavii21-Sep-07 1:01 
AnswerRe: urgent copy image from hard Drive on local host Pin
Malcolm Smart20-Sep-07 1:38
Malcolm Smart20-Sep-07 1:38 
Questionc++ equivalent of c# code Pin
tasumisra19-Sep-07 22:40
tasumisra19-Sep-07 22:40 
AnswerRe: c++ equivalent of c# code Pin
Christian Graus20-Sep-07 0:21
protectorChristian Graus20-Sep-07 0:21 
QuestionDo a check in a textBox Pin
lourensG19-Sep-07 22:13
lourensG19-Sep-07 22:13 
AnswerRe: Do a check in a textBox Pin
Giorgi Dalakishvili19-Sep-07 22:22
mentorGiorgi Dalakishvili19-Sep-07 22:22 
AnswerRe: Do a check in a textBox Pin
Martin#19-Sep-07 22:35
Martin#19-Sep-07 22:35 
AnswerRe: Do a check in a textBox Pin
Nouman Bhatti19-Sep-07 23:50
Nouman Bhatti19-Sep-07 23:50 
GeneralRe: Do a check in a textBox Pin
Martin#19-Sep-07 23:55
Martin#19-Sep-07 23:55 
GeneralRe: Do a check in a textBox Pin
lourensG20-Sep-07 0:08
lourensG20-Sep-07 0:08 
GeneralRe: Do a check in a textBox Pin
Martin#20-Sep-07 0:11
Martin#20-Sep-07 0:11 
AnswerRe: Do a check in a textBox Pin
Pete O'Hanlon20-Sep-07 0:02
mvePete O'Hanlon20-Sep-07 0:02 
GeneralRe: Do a check in a textBox Pin
lourensG20-Sep-07 0:31
lourensG20-Sep-07 0:31 
GeneralRe: Do a check in a textBox Pin
Pete O'Hanlon20-Sep-07 0:38
mvePete O'Hanlon20-Sep-07 0:38 
QuestionStream to Icon Pin
Michael Sync19-Sep-07 22:02
Michael Sync19-Sep-07 22:02 
AnswerRe: Stream to Icon Pin
Martin#19-Sep-07 22:23
Martin#19-Sep-07 22:23 
GeneralRe: Stream to Icon Pin
Michael Sync19-Sep-07 23:03
Michael Sync19-Sep-07 23:03 

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.