IonicWind Software

Creative Basic => General Questions => Topic started by: steffen on May 22, 2008, 09:56:25 AM

Title: browser
Post by: steffen on May 22, 2008, 09:56:25 AM
I'm trying to make a browser to use with my GMAIL account.  It works fine until I compile it.  Once I compile it into an exe, it cannot login to GMAIL.  Any ideas?
Thanks.
Title: Re: browser
Post by: aurelCB on May 22, 2008, 12:49:04 PM
You cannot login if you disable cookie in IE.
Title: Re: browser
Post by: steffen on May 22, 2008, 01:28:13 PM
Cookies are enabled. Does compiling a browser somehow disable cookies?  If so, can I fix this with code?
Title: Re: browser
Post by: aurelCB on May 22, 2008, 01:44:42 PM
I realy dont know ???
Title: Re: browser
Post by: pistol350 on May 23, 2008, 04:33:24 AM
Does your browser use external resources such as DLLs or so ?
If problems occur after you compiled your code it may be due to linking problems.
I mean, maybe your program no longer finds an important resource.
In any case, showing your code, if not private may help to find the problem.
Title: Re: browser
Post by: steffen on May 23, 2008, 07:01:40 AM
I'm just using this sample code provided, and then going to gmail.



DEF wb:WINDOW
WINDOW wb,0,0,640,480,@SIZE|@BROWSER|@NOAUTODRAW|@MINBOX|@MAXBOX,0,"Test Browse",main

BROWSECMD wb,@NAVIGATE,"http://www.google.com"

run = 1
WAITUNTIL run=0
CLOSEWINDOW  wb
END

main:
SELECT @CLASS
    CASE @IDCLOSEWINDOW
        run = 0
ENDSELECT
RETURN
Title: Re: browser
Post by: steffen on May 23, 2008, 07:10:02 AM
I fixed my problem.  It was a Gmail issue with IE7.  Thanks for the input.