Hi Guys,
How can I specify path of my image dynamically to point to install path of my program
:confused:Code:Dim img As Image
img = Image.FromFile("some.ico")
Printable View
Hi Guys,
How can I specify path of my image dynamically to point to install path of my program
:confused:Code:Dim img As Image
img = Image.FromFile("some.ico")
Like this?
VB Code:
img = Image.FromFile(Application.StartupPath & "\some.ico")
Thank you very match!!!
:D