I have a commondialog on my form, 1 textbox, 1 command button.
I want to show the path of a link(link file) on the textbox using the commondialog? how should I?
When I write the following code, I get the path of the actual file and not the path of the .lnk file
CommonDialog1.Filter = "Link Files (.lnk)|*.lnk"
CommonDialog1.ShowOpen
text1.text= CommonDialog1.FileName
Any suggestions?
Thanx :)