PDA

View Full Version : File browse


ianhull
02-20-2005, 04:16 AM
I am using the ftp plugin to send a file but the end users are so dumb I need to have the dailog box open in the autoplay docs folder and specify the file type.

Can anyone please help me with little issue.

Thanks

tbFiles = Dialog.FileBrowse(true, "please Select the File in this folder", _Source\docs, "All Files (*.txt*)|*.*|", "", "", false, true)

Derek
02-20-2005, 07:36 AM
I am using the ftp plugin to send a file but the end users are so dumb I need to have the dailog box open in the autoplay docs folder and specify the file type.

Can anyone please help me with little issue.

Thanks

tbFiles = Dialog.FileBrowse(true, "please Select the File in this folder", _Source\docs, "All Files (*.txt*)|*.*|", "", "", false, true)


tbFiles = Dialog.FileBrowse(true, "please Select the File in this folder", "_SourceFolder\\AutoPlay\\Docs", "All Files (*.txt)|*.txt|", "", "txt", false, true);

ianhull
02-20-2005, 08:58 AM
Thanks derek,

Much appreciated. :yes