Click here to Skip to main content
16,012,468 members
Home / Discussions / C#
   

C#

 
AnswerRe: AccessviolationException was unhandled when doing SendMessage to get DeviceArrival message upon startup of program Pin
Alan N27-Jan-11 3:20
Alan N27-Jan-11 3:20 
GeneralRe: AccessviolationException was unhandled when doing SendMessage to get DeviceArrival message upon startup of program Pin
Blubbo27-Jan-11 6:43
Blubbo27-Jan-11 6:43 
GeneralRe: AccessviolationException was unhandled when doing SendMessage to get DeviceArrival message upon startup of program Pin
Blubbo27-Jan-11 6:57
Blubbo27-Jan-11 6:57 
AnswerRe: AccessviolationException was unhandled when doing SendMessage to get DeviceArrival message upon startup of program Pin
_Erik_27-Jan-11 5:39
_Erik_27-Jan-11 5:39 
QuestionZoom in on a label without changing the font size [modified] Pin
Lee Reid27-Jan-11 0:57
Lee Reid27-Jan-11 0:57 
AnswerRe: Zoom in on a label without changing the font size Pin
Henry Minute27-Jan-11 4:09
Henry Minute27-Jan-11 4:09 
AnswerRe: Zoom in on a label without changing the font size Pin
dojohansen27-Jan-11 22:00
dojohansen27-Jan-11 22:00 
QuestionDownloading file (with out extension) from Ftp throwing error Pin
arun_pk27-Jan-11 0:24
arun_pk27-Jan-11 0:24 
This is my code

reqFTP = FtpWebRequest.Create(new Uri("ftp:\\1.1.1\myfile")) as FtpWebRequest;
                                    
                        if (reqFTP != null)
                        {
                            reqFTP.Proxy = null;
                            reqFTP.Method = WebRequestMethods.Ftp.DownloadFile;
                            reqFTP.Credentials = new NetworkCredential("username", "pwd");
                            reqFTP.UseBinary = true;
                            using (FtpWebResponse response = reqFTP.GetResponse() as FtpWebResponse)


myfile is the file with no extension
when i debug i get an error in response = reqFTP.GetResponse() as below

The remote server returned an error: (550) File unavailable (e.g., file not found, no access).



pls help to solve this
thanks in advance
AnswerRe: Downloading file (with out extension) from Ftp throwing error Pin
Pete O'Hanlon27-Jan-11 1:30
mvePete O'Hanlon27-Jan-11 1:30 
AnswerRe: Downloading file (with out extension) from Ftp throwing error Pin
Ravi Sant27-Jan-11 2:40
Ravi Sant27-Jan-11 2:40 
AnswerRe: Downloading file (with out extension) from Ftp throwing error Pin
Luc Pattyn27-Jan-11 2:42
sitebuilderLuc Pattyn27-Jan-11 2:42 
QuestionHow to insert data from a text file into Ms acces database Pin
varun.g26-Jan-11 23:10
varun.g26-Jan-11 23:10 
AnswerRe: How to insert data from a text file into Ms acces database Pin
RaviRanjanKr26-Jan-11 23:37
professionalRaviRanjanKr26-Jan-11 23:37 
QuestionC# Decode CDR file Pin
Socheat.Net26-Jan-11 21:19
Socheat.Net26-Jan-11 21:19 
AnswerRe: C# Decode CDR file Pin
Pete O'Hanlon26-Jan-11 22:21
mvePete O'Hanlon26-Jan-11 22:21 
GeneralRe: C# Decode CDR file Pin
Socheat.Net26-Jan-11 22:25
Socheat.Net26-Jan-11 22:25 
GeneralRe: C# Decode CDR file Pin
Pete O'Hanlon26-Jan-11 22:32
mvePete O'Hanlon26-Jan-11 22:32 
AnswerRe: C# Decode CDR file Pin
OriginalGriff26-Jan-11 22:30
mveOriginalGriff26-Jan-11 22:30 
GeneralRe: C# Decode CDR file Pin
Socheat.Net26-Jan-11 22:33
Socheat.Net26-Jan-11 22:33 
GeneralRe: C# Decode CDR file Pin
Pete O'Hanlon26-Jan-11 22:38
mvePete O'Hanlon26-Jan-11 22:38 
GeneralRe: C# Decode CDR file Pin
Socheat.Net26-Jan-11 22:41
Socheat.Net26-Jan-11 22:41 
GeneralRe: C# Decode CDR file Pin
Pete O'Hanlon26-Jan-11 22:45
mvePete O'Hanlon26-Jan-11 22:45 
GeneralRe: C# Decode CDR file Pin
OriginalGriff26-Jan-11 22:40
mveOriginalGriff26-Jan-11 22:40 
GeneralRe: C# Decode CDR file Pin
Socheat.Net26-Jan-11 22:43
Socheat.Net26-Jan-11 22:43 
AnswerRe: C# Decode CDR file Pin
V.26-Jan-11 22:52
professionalV.26-Jan-11 22:52 

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.