Click here to Skip to main content
15,892,005 members
Home / Discussions / C#
   

C#

 
AnswerRe: Is it possible to call the GarbageCollector of an other process! Pin
S. Senthil Kumar20-Mar-09 3:36
S. Senthil Kumar20-Mar-09 3:36 
GeneralRe: Is it possible to call the GarbageCollector of an other process! [modified] Pin
Martin#20-Mar-09 5:06
Martin#20-Mar-09 5:06 
AnswerRe: Is it possible to call the GarbageCollector of an other process! Pin
Luc Pattyn20-Mar-09 4:28
sitebuilderLuc Pattyn20-Mar-09 4:28 
GeneralRe: Is it possible to call the GarbageCollector of an other process! Pin
Martin#20-Mar-09 4:56
Martin#20-Mar-09 4:56 
QuestionModelpopup with dropdownlistbox Pin
gopinathtamil19-Mar-09 21:50
gopinathtamil19-Mar-09 21:50 
AnswerRe: Modelpopup with dropdownlistbox Pin
Christian Graus19-Mar-09 21:54
protectorChristian Graus19-Mar-09 21:54 
QuestionProgramatically providing Database file path to DSN using C# Pin
bijaykumar0119-Mar-09 21:28
bijaykumar0119-Mar-09 21:28 
Questionfile string upload in textbox Pin
Mangesh Tomar19-Mar-09 20:36
Mangesh Tomar19-Mar-09 20:36 
HI here is my code how show me the path in message box but i want to this path in text box what is the logic behind this


private void button3_Click(object sender, EventArgs e)
{
OpenFileDialog FD = new OpenFileDialog();

string filenname = "";
string path = "";

if (FD.ShowDialog() == DialogResult.OK)
{
filenname = System.IO.Path.GetFileName(FD.FileName);
path = System.IO.Path.GetDirectoryName(FD.FileName);
}

MessageBox.Show(filenname, "Filename");
MessageBox.Show(path, "Directory");
}
AnswerRe: file string upload in textbox Pin
Christian Graus19-Mar-09 21:00
protectorChristian Graus19-Mar-09 21:00 
AnswerRe: file string upload in textbox Pin
jaypatel51219-Mar-09 23:07
jaypatel51219-Mar-09 23:07 
GeneralRe: file string upload in textbox Pin
Mangesh Tomar20-Mar-09 18:49
Mangesh Tomar20-Mar-09 18:49 
GeneralRe: file string upload in textbox Pin
jaypatel51220-Mar-09 18:53
jaypatel51220-Mar-09 18:53 
Questionkrishan Pin
krish@n19-Mar-09 20:30
krish@n19-Mar-09 20:30 
AnswerRe: krishan Pin
Christian Graus19-Mar-09 21:06
protectorChristian Graus19-Mar-09 21:06 
Questiona registry problem... Pin
abhiram_nayan19-Mar-09 20:17
abhiram_nayan19-Mar-09 20:17 
AnswerRe: a registry problem... Pin
Christian Graus19-Mar-09 21:55
protectorChristian Graus19-Mar-09 21:55 
GeneralRe: a registry problem... Pin
abhiram_nayan20-Mar-09 3:15
abhiram_nayan20-Mar-09 3:15 
QuestionRegular Expression Pin
yadlaprasad19-Mar-09 20:11
yadlaprasad19-Mar-09 20:11 
AnswerRe: Regular Expression Pin
Mycroft Holmes19-Mar-09 20:24
professionalMycroft Holmes19-Mar-09 20:24 
AnswerRe: Regular Expression Pin
Christian Graus19-Mar-09 21:08
protectorChristian Graus19-Mar-09 21:08 
AnswerRe: Regular Expression Pin
Deresen19-Mar-09 23:55
Deresen19-Mar-09 23:55 
Questionhow i get file name string Pin
Mangesh Tomar19-Mar-09 20:03
Mangesh Tomar19-Mar-09 20:03 
AnswerRe: how i get file name string Pin
N a v a n e e t h19-Mar-09 20:05
N a v a n e e t h19-Mar-09 20:05 
AnswerRe: how i get file name string Pin
Deresen19-Mar-09 23:54
Deresen19-Mar-09 23:54 
Questionpivote table logic Pin
Mangesh Tomar19-Mar-09 19:18
Mangesh Tomar19-Mar-09 19:18 

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.