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

C#

 
AnswerRe: How to Show Multi Color Text Box In Asp .net Pin
Pete O'Hanlon23-Jan-14 23:44
mvePete O'Hanlon23-Jan-14 23:44 
QuestionEdit a WinForm on user mode Pin
zayno23-Jan-14 22:43
zayno23-Jan-14 22:43 
GeneralRe: Edit a WinForm on user mode Pin
OriginalGriff23-Jan-14 22:52
mveOriginalGriff23-Jan-14 22:52 
GeneralRe: Edit a WinForm on user mode Pin
zayno23-Jan-14 22:58
zayno23-Jan-14 22:58 
QuestionRe: Edit a WinForm on user mode Pin
Eddy Vluggen24-Jan-14 0:26
professionalEddy Vluggen24-Jan-14 0:26 
AnswerRe: Edit a WinForm on user mode Pin
BillWoodruff24-Jan-14 1:13
professionalBillWoodruff24-Jan-14 1:13 
QuestionDownload latest file from FTP using WinSCP in SSIS Pin
Rahul Vairagi23-Jan-14 18:16
Rahul Vairagi23-Jan-14 18:16 
AnswerRe: Download latest file from FTP using WinSCP in SSIS Pin
Pete O'Hanlon23-Jan-14 22:01
mvePete O'Hanlon23-Jan-14 22:01 
Rahul, rather than using a command line utility, you can use the inbuilt FTP classes to achieve this. The basic class you are interested in is FtpWebRequest[^]. Using this, you can connect to an FTP site and then list the files (there's a Method called WebRequestMethods.Ftp.ListDirectory that you will be invoking to get these files. Now that you have your list of files, you just need to get a copy of each filename and strip out the filenames looking for the numbers at the end (don't get fancy and try regexes, simply iterate over the characters in the name until you get to the number). Find the largest number and you've got the one you're interested in.
GeneralRe: Download latest file from FTP using WinSCP in SSIS Pin
Rahul Vairagi29-Jan-14 18:35
Rahul Vairagi29-Jan-14 18:35 
AnswerRe: Download latest file from FTP using WinSCP in SSIS Pin
Alan Balkany24-Jan-14 4:59
Alan Balkany24-Jan-14 4:59 
GeneralRe: Download latest file from FTP using WinSCP in SSIS Pin
Rahul Vairagi29-Jan-14 18:36
Rahul Vairagi29-Jan-14 18:36 
QuestionCalling MySql Function in C# for validating username and password Pin
ahmed_one23-Jan-14 17:58
ahmed_one23-Jan-14 17:58 
AnswerRe: Calling MySql Function in C# for validating username and password Pin
Bernhard Hiller23-Jan-14 21:39
Bernhard Hiller23-Jan-14 21:39 
GeneralRe: Calling MySql Function in C# for validating username and password Pin
ahmed_one23-Jan-14 22:49
ahmed_one23-Jan-14 22:49 
SuggestionRe: Calling MySql Function in C# for validating username and password Pin
Richard Deeming24-Jan-14 1:56
mveRichard Deeming24-Jan-14 1:56 
GeneralRe: Calling MySql Function in C# for validating username and password Pin
Eddy Vluggen24-Jan-14 3:04
professionalEddy Vluggen24-Jan-14 3:04 
GeneralRe: Calling MySql Function in C# for validating username and password Pin
ahmed_one24-Jan-14 4:11
ahmed_one24-Jan-14 4:11 
GeneralRe: Calling MySql Function in C# for validating username and password Pin
Dave Kreskowiak24-Jan-14 4:37
mveDave Kreskowiak24-Jan-14 4:37 
GeneralRe: Calling MySql Function in C# for validating username and password Pin
Eddy Vluggen24-Jan-14 4:58
professionalEddy Vluggen24-Jan-14 4:58 
GeneralRe: Calling MySql Function in C# for validating username and password Pin
Dave Kreskowiak24-Jan-14 4:33
mveDave Kreskowiak24-Jan-14 4:33 
AnswerRe: Calling MySql Function in C# for validating username and password Pin
Shujaat Ullah Khan24-Jan-14 4:24
Shujaat Ullah Khan24-Jan-14 4:24 
QuestionValidation on characters having multiple section in a string Pin
nitin_ion23-Jan-14 16:47
nitin_ion23-Jan-14 16:47 
AnswerRe: Validation on characters having multiple section in a string Pin
Peter Leow23-Jan-14 17:20
professionalPeter Leow23-Jan-14 17:20 
GeneralRe: Validation on characters having multiple section in a string Pin
nitin_ion23-Jan-14 18:58
nitin_ion23-Jan-14 18:58 
GeneralRe: Validation on characters having multiple section in a string Pin
Dave Kreskowiak24-Jan-14 4:30
mveDave Kreskowiak24-Jan-14 4:30 

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.