March 18, 2024, 11:56:25 PM

News:

IonicWind Snippit Manager 2.xx Released!  Install it on a memory stick and take it with you!  With or without IWBasic!


browser

Started by steffen, May 22, 2008, 09:56:25 AM

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

steffen

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.

aurelCB

You cannot login if you disable cookie in IE.

steffen

Cookies are enabled. Does compiling a browser somehow disable cookies?  If so, can I fix this with code?

aurelCB

I realy dont know ???

pistol350

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.
Regards,

Peter B.

steffen

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

steffen

I fixed my problem.  It was a Gmail issue with IE7.  Thanks for the input.