Help: Dialog box

2004-11-16 Thread yueweng
under mozilla src tree is the relevant one that I should refer? yueweng ___ mozilla-embedding mailing list [EMAIL PROTECTED] http://mail.mozilla.org/listinfo/mozilla-embedding

How to Catch and print all error in XPCOM?

2004-07-27 Thread yueweng
the last line number of the crashed instruction, the variable or address place and the callstack? Any idea is welcome! Regards, yueweng ___ mozilla-embedding mailing list [EMAIL PROTECTED] http://mail.mozilla.org/listinfo/mozilla-embedding

How to find out OnStateChange() belongs to which instance of browser?

2004-07-23 Thread yueweng
to find out OnStateChange() belongs to which instance of the browser. OnStateChange() has two pointer parameter, nsIWebProgress and nsIRequest. Can I use either one of these parameter to find out the instance of the browser? Thanks for reading and helping, YueWeng

why nsIWebNavigation::GetDocument( ) always NULL?

2004-07-19 Thread yueweng
if }//end OnStateChange() Regards, YueWeng ___ mozilla-embedding mailing list [EMAIL PROTECTED] http://mail.mozilla.org/listinfo/mozilla-embedding

Re: why nsIWebNavigation::GetDocument( ) always NULL?

2004-07-19 Thread yueweng
Boris Zbarsky [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... yueweng wrote: webNav-GetDocument(getter_AddRefs(domDocument)); What's the return value of this call? -Boris Thanks, I found my problem already, the solution to get a DOM Window is to use aWebProgress: void

Re: How to get current instance (nsIWebNavigation) of mozilla?

2004-07-17 Thread yueweng
, nsnull, nsnull, nsnull); But my problem is how to get the webNav? yueweng ___ mozilla-embedding mailing list [EMAIL PROTECTED] http://mail.mozilla.org/listinfo/mozilla-embedding

Re: simple nsIWebProgressListener question

2004-07-16 Thread yueweng
of the nsSampleImpl(). Hence, crashed occurs when AddProgressListener() is called inside nsSampleImpl(). Once again, thanks a lot. Regards, yueweng ___ mozilla-embedding mailing list [EMAIL PROTECTED] http://mail.mozilla.org/listinfo/mozilla-embedding

How to get current instance (nsIWebNavigation) of mozilla?

2004-07-16 Thread yueweng
)); nsCOMPtrnsIDOMDocument domDocument; webNav-GetDocument(getter_AddRefs(domDocument)); nsCOMPtrnsIDOMHTMLDocument htmlDomDocument(do_QueryInterface(domDocument)); nsString title; res = htmlDomDocument-GetTitle(title); Regards, yueweng ___ mozilla

Re: simple nsIWebProgressListener question

2004-07-15 Thread yueweng
. nsSampleImpl() exit. --- crashed occurs --- I am wonder if you know what's went wrong, please help me if you got any idea. Thanks, YueWeng ___ mozilla-embedding mailing list [EMAIL PROTECTED] http://mail.mozilla.org

Symbolic information not found ( xpcomsmp.dll )

2004-07-14 Thread yueweng
! 77d43b1f() USER32! 77d43d79() USER32! 77d43ddf() nsAppShellService::Run() line 524 main1() line 1303 + 32 bytes main() line 1780 + 37 bytes mainCRTStartup() line 338 + 17 bytes KERNEL32! 77e814c7() yueweng ___ mozilla-embedding mailing list [EMAIL PROTECTED

Re: Problem in compiling sample module ONLY in mozilla src

2004-06-27 Thread yueweng
[EMAIL PROTECTED] (yueweng) wrote in message news:[EMAIL PROTECTED]... Hi all, I have successfully rebuild the whole Win32 Mozilla dist following the instruction given in http://www.mozilla.org/build/win32.html. Also, the mozilla is able to run. However, I would like to make only one