s_0
02-19-04, 05:34 PM
im trying to submit a url from VB i want to include three integers but i havent got a clue on how to get it to work but this is what i have so far...
Private Sub rpcSSubmit_Click()
Dim link
link = ShellExecute(hwnd, "Open", "http://test.com?name=", &O0, &O0, SW_NORMAL)
End Sub
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
Public Const SW_NORMAL = 1
part im stuck on is how to include the integers and make it so it doesnt open IE but i dont know how any suggetions?
Private Sub rpcSSubmit_Click()
Dim link
link = ShellExecute(hwnd, "Open", "http://test.com?name=", &O0, &O0, SW_NORMAL)
End Sub
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
Public Const SW_NORMAL = 1
part im stuck on is how to include the integers and make it so it doesnt open IE but i dont know how any suggetions?