What kind of code can i use to start that download dilog box like the attached image. I have a url and i want the box to pop up
Printable View
What kind of code can i use to start that download dilog box like the attached image. I have a url and i want the box to pop up
i tried using the Webbrowser control but it doesnt seem to work
Forget it i got it using this codeCode:
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hWnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Private Declare Function SendMessage Lib "User32" _
Alias "SendMessageA" (ByVal hWnd As Long, _
ByVal wMsg As Long, _
ByVal wParam As Long, _
lParam As Any) As Long
Private Declare Sub ReleaseCapture Lib "User32" ()
Const WM_NCLBUTTONDOWN = &HA1
Const HTCAPTION = 2
Private Sub Command5_Click()
If Text1(3) = "" Then
Else
Dim SiteUrl As String
SiteUrl = Text1(3).Text
ShellExecute Me.hWnd, vbNullString, SiteUrl, vbNullString, App.Path, SW_SHOWNORMAL
'GetPage Text1(3)
End If
End Sub
It's server side... you can maybe try to send a right click to the certain image but I wouldn't know how to do so... :(