Hi All,
I've got another challenge for the Access guru's.
I've got a vessel location map in my vessel location form frmPosition (finally after days of frustration and agrivation). So far it seems the work OK.
The map is a little to small to read the details but you can get the general idea where the vessel is, was, or where it's going. I'd like to enlarge the map if I want to take a closer look so on the map frame I've added a double click event to open the map in Irfanview.
I can get Irfanview to open but I don't now how to pass the map file onto the event.
Here's the Code so far
Does anyone have an idea how I can accomplish this?
Cheers!!
I've got another challenge for the Access guru's.
I've got a vessel location map in my vessel location form frmPosition (finally after days of frustration and agrivation). So far it seems the work OK.
The map is a little to small to read the details but you can get the general idea where the vessel is, was, or where it's going. I'd like to enlarge the map if I want to take a closer look so on the map frame I've added a double click event to open the map in Irfanview.
I can get Irfanview to open but I don't now how to pass the map file onto the event.
Here's the Code so far
Code:
Private Sub img_V_Map_DblClick(Cancel As Integer)
On Error GoTo Err_imgMap_DblClick
Dim stAppName As String
stAppName = "C:\Program Files\IrfanView\i_view32.exe"
Call Shell(stAppName, 1)
Exit_img_V_Map_DblClick:
Exit Sub
Err_imgMap_DblClick:
MsgBox Err.Description
Resume Exit_img_V_Map_DblClick
End Sub
Does anyone have an idea how I can accomplish this?
Cheers!!