Click here to Skip to main content
15,883,705 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
in vb.net i have created an application in which we can browse a file and its location will be in text box now i need to create a preview button by which user can view the selected file
any suggestion .......
Posted
Comments
CHill60 4-Feb-13 8:02am    
Depends on what kind of file it is ...
ZurdoDev 4-Feb-13 8:05am    
I have never done this but I would believe there are likely controls already built that you could buy. However, in Windows 7 (and possibly other windows OSs) there is a built-in preview pane, at least in the Word 2010 open file dialog.

1 solution

I think you want to open the file for preview using process?


C#
Process.Start("notepad.exe", @"F:\yourfile.txt");


This will open yourfile.txt in NotePad. You can edit that to whatever application you want to open for preview.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900