Paul wrote:
>
> "Harlan Messinger" <> ha scritto nel
> messaggio news:...
>> Paul wrote:
>>> I don't know if this is the right news group, but my question is this:
>>>
>>> is it possible opening a web page using a compiled (*.exe)
>>> application written in GWBasic?
>>
>> Dear 1987,
>>
>> Open it in what? If you're running MS DOS, your web browser will
>> probably be Lynx or something like that, and you can execute it from
>> your GWBasic program in whatever way GWBasic makes available to launch
>> any MS DOS executable.
>
> Well, in my pc I am using windows XP + IE7 and some applications written
> by me in Basic in the previous century...
> I still use these applications for my work as they are very useful for
> me, for my needs.
> My question is if those old applications could be able to interact with
> web, calling in example a web page.
> If so, I'd like to try something I have in mind.
Ah. OK, then assuming you have the capability of having your code
execute *any* EXE file on your computer, with arguments, have it execute
C:\Program Files\Internet Explorer\iexplore
http://www.google.com/
for example. If you test this from the command line (and possibly in
your program) you'll need to put the first part between double quotes
because of the spaces embedded in the path:
"C:\Program Files\Internet Explorer\iexplore"
http://www.google.com/