Oct 30th, 2000, 04:26 PM
To open the default browser...
Includes...
include \masm32\include\shell32.inc
includelib \masm32\lib\shell32.lib
Masm
invoke ShellExecute, 0, 0, addr address, 0, 0, 0
TASM
push 0
push 0
push 0
push offset address
push 0
push 0
call ShellExecute
Includes...
include \masm32\include\shell32.inc
includelib \masm32\lib\shell32.lib
Masm
invoke ShellExecute, 0, 0, addr address, 0, 0, 0
TASM
push 0
push 0
push 0
push offset address
push 0
push 0
call ShellExecute