Click here to Skip to main content
15,887,268 members
Home / Discussions / C#
   

C#

 
GeneralRe: ClickOnce app... contanstly checking for updates? Pin
Jacob Dixon5-Apr-09 5:04
Jacob Dixon5-Apr-09 5:04 
QuestionBlackJack using WPF Pin
BenJamming4-Apr-09 16:22
BenJamming4-Apr-09 16:22 
AnswerRe: BlackJack using WPF Pin
Luc Pattyn4-Apr-09 23:06
sitebuilderLuc Pattyn4-Apr-09 23:06 
AnswerRe: BlackJack using WPF Pin
#realJSOP5-Apr-09 3:12
mve#realJSOP5-Apr-09 3:12 
Questionaccessing elements from a webbrowser Pin
jeanbern4-Apr-09 13:28
jeanbern4-Apr-09 13:28 
QuestionUsing FTPWebRequet for simple ftp-client on C# Pin
Eugene Efimov4-Apr-09 11:07
Eugene Efimov4-Apr-09 11:07 
AnswerRe: Using FTPWebRequet for simple ftp-client on C# Pin
N a v a n e e t h4-Apr-09 15:59
N a v a n e e t h4-Apr-09 15:59 
GeneralRe: Using FTPWebRequet for simple ftp-client on C# Pin
Eugene Efimov4-Apr-09 20:57
Eugene Efimov4-Apr-09 20:57 
>I am not sure there is some class which will list the specified directory.
FTPWebRequet can do this because of uri can be absolute. The problem is to list directory:
FtpWebRequest reqFTP  = (FtpWebRequest)FtpWebRequest.Create (new Uri("ftp://" + ftpServerIP + "/"+path));
reqFTP.UseBinary = false;
reqFTP.Credentials = new NetworkCredential(ftpUserID, ftpPassword);
reqFTP.Method = WebRequestMethods.Ftp.ListDirectory;
WebResponse response = reqFTP.GetResponse();
StreamReader reader = new StreamReader(response.GetResponseStream());
string line;
            while ((line = reader.ReadLine()) != null)
            { ..... }

At this point i wanto to list next directory using existing connection? it is possible?
QuestionFile Name Pin
egpuyos4-Apr-09 10:04
egpuyos4-Apr-09 10:04 
AnswerRe: File Name Pin
Christian Graus4-Apr-09 10:50
protectorChristian Graus4-Apr-09 10:50 
AnswerRe: File Name Pin
PIEBALDconsult5-Apr-09 5:45
mvePIEBALDconsult5-Apr-09 5:45 
AnswerRe: File Name Pin
Megidolaon5-Apr-09 20:26
Megidolaon5-Apr-09 20:26 
QuestionHow to set the text of a control to a string from the resx? Pin
ioctl514-Apr-09 9:52
ioctl514-Apr-09 9:52 
Questionsmiley icons(emotion icons) in richtextbox? Pin
shaghyegh4-Apr-09 9:49
shaghyegh4-Apr-09 9:49 
AnswerRe: smiley icons(emotion icons) in richtextbox? Pin
Giorgi Dalakishvili4-Apr-09 9:55
mentorGiorgi Dalakishvili4-Apr-09 9:55 
QuestionConvert a datetime string to different datetime string Pin
AEKirin4-Apr-09 7:41
professionalAEKirin4-Apr-09 7:41 
AnswerRe: Convert a datetime string to different datetime string Pin
Luc Pattyn4-Apr-09 7:48
sitebuilderLuc Pattyn4-Apr-09 7:48 
AnswerRe: Convert a datetime string to different datetime string Pin
PIEBALDconsult5-Apr-09 5:53
mvePIEBALDconsult5-Apr-09 5:53 
QuestionSetOleLocation to CRAXDDRT.OleObject Pin
bahaa_sa54-Apr-09 6:53
bahaa_sa54-Apr-09 6:53 
AnswerRe: SetOleLocation to CRAXDDRT.OleObject Pin
Rajdeep.NET is BACK4-Apr-09 8:04
Rajdeep.NET is BACK4-Apr-09 8:04 
GeneralRe: SetOleLocation to CRAXDDRT.OleObject Pin
bahaa_sa54-Apr-09 8:07
bahaa_sa54-Apr-09 8:07 
QuestionMaking a Button transparent.... help guys! Pin
Rajdeep.NET is BACK4-Apr-09 6:22
Rajdeep.NET is BACK4-Apr-09 6:22 
AnswerRe: Making a Button transparent.... help guys! Pin
Xmen Real 4-Apr-09 7:00
professional Xmen Real 4-Apr-09 7:00 
Questionimage process Pin
necdet tekbıyık4-Apr-09 4:33
necdet tekbıyık4-Apr-09 4:33 
AnswerRe: image process Pin
Xmen Real 4-Apr-09 6:02
professional Xmen Real 4-Apr-09 6:02 

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.