D
Dennis
Hi,
I have a name and address form. The user wants to verify the member's
address, so I put in a button that I want to create a IExplorer window for a
URL. This works great, but it creates a new Iexporer window each time. And
the use has to close that window each time.
I would like to
a. re-use my IExplorer window for each address look up
b. Close the IExplorer window from within my app when they are done. This
would be done by either the use clicking on a button or my form being closed.
Any suggestions. I've been researching this for about a week and while I've
found bit of it (like how to close an IExplorer window given it handle, but
not how to get the handle), I've not found all of the pieces. Any
suggestions?
Dennis
' AnyWho html example:
' http://whitepages.anywho.com/results.php?ReportType=34&qc=cocoa&qf=Dennis
' &qi=0&qk=10&qn=Solis&qs=FL&qz=32926
' Build the parameters
' build the command line
strAppName = cstrIExplorer & cstrAnyWhoUrl
strShellParm = strCity & strFirstNm & cstrQI & cstrQK & strLastNm & strState
& strZip
strShellParm = strAppName & strShellParm
Call Shell(strShellParm, 1)
I have a name and address form. The user wants to verify the member's
address, so I put in a button that I want to create a IExplorer window for a
URL. This works great, but it creates a new Iexporer window each time. And
the use has to close that window each time.
I would like to
a. re-use my IExplorer window for each address look up
b. Close the IExplorer window from within my app when they are done. This
would be done by either the use clicking on a button or my form being closed.
Any suggestions. I've been researching this for about a week and while I've
found bit of it (like how to close an IExplorer window given it handle, but
not how to get the handle), I've not found all of the pieces. Any
suggestions?
Dennis
' AnyWho html example:
' http://whitepages.anywho.com/results.php?ReportType=34&qc=cocoa&qf=Dennis
' &qi=0&qk=10&qn=Solis&qs=FL&qz=32926
' Build the parameters
' build the command line
strAppName = cstrIExplorer & cstrAnyWhoUrl
strShellParm = strCity & strFirstNm & cstrQI & cstrQK & strLastNm & strState
& strZip
strShellParm = strAppName & strShellParm
Call Shell(strShellParm, 1)