Click here to Skip to main content
15,891,375 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
In my applicationwhich is in vb.net
i have 2 buttons first for browse and second for preview selected item now after selecting file with browse now i want to give an option for preview any suggestion
here is the code for browse button--
Private Sub btnBrowse_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnBrowse.Click
Using fold As New OpenFileDialog
fold.Filter = "document files (*.doc)|*.doc |richtext format(*.rtf) | *.rtf |All files (*.*)|*.*"
fold.Title = "Select file"
If fold.ShowDialog() = Windows.Forms.DialogResult.OK Then
' fold.FilterIndex = 2
fold.RestoreDirectory = True
MessageBox.Show("You selected " & fold.FileName)
End If
End Using
End Sub
thnx in advance :)
Posted
Updated 3-Feb-13 23:51pm
v2

1 solution

Hi
Please go through the below url. This may help you.

Document Preview Application[^]


Regards
Dominic
 
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