FIXED: Entry Point Not Found NS_InitXPCOM3????

2006-01-19 Thread Niky Williams
Niky Williams wrote: I just built a statically linked version of the 1.5 code, all seemed to go okay. Integrated that into my app and it also compiled and linked fine (VC 2003 and Win2K) When I went to actually run my program from the IDE, I get an error message that "The procedure

Entry Point Not Found NS_InitXPCOM3????

2006-01-19 Thread Niky Williams
I just built a statically linked version of the 1.5 code, all seemed to go okay. Integrated that into my app and it also compiled and linked fine (VC 2003 and Win2K) When I went to actually run my program from the IDE, I get an error message that "The procedure entry point NS_InitXPCOM3 coul

Re: Handle LoadComplete event

2006-01-19 Thread Niky Williams
Vijay wrote: Hi, I want to have a method in the mfcembed test which will get executed on "onload" event. i.e. from DocumentViewerImpl.LoadComplete(). Can anyone suggest how to do that. Vijay Hmm...I hope I'm understand what you are saying, if you look at the BrowserImplWebPrgrsLstnr.cpp ins

Re: nsIDOMCSSStyleDeclaration::GetPropertyValue () Please help, seems to be leaking?

2006-01-19 Thread Niky Williams
Niky Williams wrote: Boris Zbarsky wrote: The code looks ok to me. What does the output look like if you run with memory leak logging (in a debug build; set XPCOM_MEM_LEAK_LOG to a filename of your choice in the environment before starting up). When you quit, are there objects related to

Re: How do I override nsNSSDialogs with my own class?

2006-01-19 Thread Niky Williams
overriding and implementing the actual nsIPromptService interface...this will probably be the most use to you http://lxr.mozilla.org/seamonkey/source/embedding/tests/mfcembed/components/PromptService.cpp Hope this gives you the starting point you need. Niky Williams

Re: why I couldn't install and use Mozilla ActiveX control correctly?

2006-01-19 Thread Niky Williams
correctly./ Thank you for your kind help. / / I don't know if this has anything to do with it...but what version of Mozilla/Gecko do you have installed/built on your system? Was wondering if maybe that control has some issues with 1.5? Niky Williams ___

Re: Intercept combo box event select

2006-01-19 Thread Niky Williams
http://www.mozilla.org/projects/embedding/embedoverview/EmbeddingBasics13.html I haven't been working with this API for very long, I'm sure there are much more experienced developers out there that could tell you if your methodology is sound. I hope this helps. Niky Williams __

Re: How do I override nsNSSDialogs with my own class?

2006-01-18 Thread Niky Williams
? Barry For HTTPS support I just included the below when I compiled moz. ac_add_options --enable-crypto After I got this in, the prompts/modal boxes poped up on their own and I did not have to override any classes. Niky Williams ___ mozilla-embeddi

Re: nsIDOMCSSStyleDeclaration::GetPropertyValue () Please help, seems to be leaking?

2006-01-17 Thread Niky Williams
t why it was causing issues. Much thanks for taking the time to look over my code! Niky Williams ___ mozilla-embedding mailing list mozilla-embedding@mozilla.org http://mail.mozilla.org/listinfo/mozilla-embedding

Re: nsIDOMCSSStyleDeclaration::GetPropertyValue () Please help, seems to be leaking?

2006-01-17 Thread Niky Williams
Boris Zbarsky wrote: Niky Williams wrote: I realize by doing it this way in a timer thread, and not within the actual Gecko event loop, that it's probably not exactly thread safe... It's not at all threadsafe. but I don't believe it would be causing this issue It sure coul

Re: Intercepting mouse events

2006-01-17 Thread Niky Williams
and then destroy it.* Are you trying to run a Javascript function or a C++ function? Niky Williams ___ mozilla-embedding mailing list mozilla-embedding@mozilla.org http://mail.mozilla.org/listinfo/mozilla-embedding

nsIDOMCSSStyleDeclaration::GetPropertyValue () Please help, seems to be leaking?

2006-01-17 Thread Niky Williams
ure it out...very frustrating. Niky Williams ___ mozilla-embedding mailing list mozilla-embedding@mozilla.org http://mail.mozilla.org/listinfo/mozilla-embedding

FIXED Odd behavior with warning popup modals when submitting URL directly with GET params

2005-12-16 Thread Niky Williams
Niky Williams wrote: I think I know where this is happening...but not sure WHY it is happening. I'm doing some testing on my skeleton Gecko class and I'm having some new issues with the security modal popups. Here is what I've been able to see: When I'm on Google and I

Odd behavior with warning popup modals when submitting URL directly with GET params

2005-12-16 Thread Niky Williams
form element..dynamically change the forms method/action and let the page submit it "normally". I'm probably just rambling and I hope someone can understand this...I'm not too good at explaining some things LOL. Thanks in advance! Niky Williams __

Re: Gecko and SSL?

2005-12-13 Thread Niky Williams
inue; TranslateMessage (&msg); DispatchMessage (&msg); } //Do idle stuff MsgWaitForMultipleObjects (1, &hEvent, FALSE, 100, QS_ALLEVENTS); } //Closing event handle Cl

Web Page Refresh Issue

2005-12-06 Thread Niky Williams
asn't sure if I needed to post any code, so didn't until ya'll needed to look at it. Thanks in advance! Niky Williams ___ mozilla-embedding mailing list mozilla-embedding@mozilla.org http://mail.mozilla.org/listinfo/mozilla-embedding

Re: Gecko and SSL?

2005-12-06 Thread Niky Williams
y existing SSL tools that I can use to make it easier? the-Forbidden I think I remember seeing this in another thread...you need to be sure you compile it with --enable-crypto to get this to work. Niky Williams ___ mozilla-embedding maili

Re: Can't click() IHTMLElement using Mozilla Control in C#

2005-12-06 Thread Niky Williams
ou can see this for yourself about the methods for this objectso had to implement my Gecko engine from the API to get the desired results I wanted. Only way around this that I know of is for the author (Adam Lock?) to release it with them implemented. Niky Williams

Re: Embedded browser...having issues with "modal" popups and launching files from Download Manager

2005-12-01 Thread Niky Williams
Niky Williams wrote: Niky Williams wrote: Window 2000 using Visual Studio 2003 and C++ Let me see if I can explain this. I've got a pretty basic skeleton embedded browser and it seems to work okay browsing to various pages. I next tried to install the Macromedia Flash plugin. When I

Re: Embedded browser...having issues with "modal" popups and launching files from Download Manager

2005-12-01 Thread Niky Williams
Niky Williams wrote: Window 2000 using Visual Studio 2003 and C++ Let me see if I can explain this. I've got a pretty basic skeleton embedded browser and it seems to work okay browsing to various pages. I next tried to install the Macromedia Flash plugin. When I click on the fi

Re: What's wrong with this small code - getting the DOM

2005-12-01 Thread Niky Williams
nsIDOMNode* mEndParent = (nsIDOMNode*)doc; is also getting something and not just failing? Niky Williams ___ mozilla-embedding mailing list mozilla-embedding@mozilla.org http://mail.mozilla.org/listinfo/mozilla-embedding

Embedded browser...having issues with "modal" popups and launching files from Download Manager

2005-11-30 Thread Niky Williams
Destroy () the nsIBaseWindow of the nsIWebBrowser then I DestroyWindow () on my HWND. Pretty straight forward. Any help is greatly appreciated! Niky Williams ___ mozilla-embedding mailing list mozilla-embedding@mozilla.org http://mail.mozilla.org/listinfo/mozilla-embedding

Please help with nsIDOMWindow::SizeToContent () Oddities

2005-07-19 Thread Niky Williams
do I just need to add a bit to the width and height when I detect it's that type of window? I'd rather like to know why it's doing this than put a hack into it. Thanks in advance! Niky Williams ___ mozilla-embedding mailing list mo

Re: Getting nsWindow from chrome

2005-07-19 Thread Niky Williams
hat helps. If I find anything else I'll reply again. Niky Williams "Neeraj Tewari, Noida" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi , > Can anyone help me to get nsWindow pointer from chrome(nsIWebBrowserChrome) pointer.As i want to redra

UPDATE: I Found the problem

2005-07-08 Thread Niky Williams
grief. Niky Williams "Niky Williams" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I'm still having a problem with this...let me see if I can explain it better > this time around. > > I've got a very skeleton implementation of the Gecko renderi

Am not getting events callbacks from popup windows...still

2005-07-07 Thread Niky Williams
ybe somewhere in the WindowCreator Implementation in the CreateChromeWindow() function? I've been working on this for a few days now and am starting to get just a bit...uh...frustrated with this. It's the only thing at the moment holding

Re: JS Popups and Chrome problems

2005-07-05 Thread Niky Williams
reciated, but I don't like MFC) and the alert() works fine on that..so I've been trying to trace through that, but to no avail. Niky Williams "Michael Vincent van Rantwijk" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Niky Williams wrote: > >

JS Popups and Chrome problems

2005-07-05 Thread Niky Williams
27;t know what to do. It makes sense...but I'm not sure what needs to be done to fix it. Just an FYI, if I have a popup of say google.com, it works fine. Thanks for any help! Niky Williams ___ mozilla-embedding mailing list mozilla-embedding@mozilla.org http://mail.mozilla.org/listinfo/mozilla-embedding

Possible Mem Leaks? Basic Startup and Shutdown...

2005-06-22 Thread Niky Williams
g down...whatever it may be. Any and all help would be greatly appreciated! Thanks in advance! Niky Williams ___ mozilla-embedding mailing list mozilla-embedding@mozilla.org http://mail.mozilla.org/listinfo/mozilla-embedding

Re: Output debug info to a file??

2005-06-15 Thread Niky Williams
I feel like a complete idiot...I could have sworn I tried that. Sorry to waste your time, thanks! Niky "Christian Biesinger" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Niky Williams wrote: > > is there anyway to make > > the info that is being

Re: Output debug info to a file??

2005-06-14 Thread Niky Williams
ROTECTED] > You could use the (free) DbgView utility from www.sysinternals.com to > capture the output. From there you could save it out to a file one way or > another. Is that any help? > > Brian > > "Niky Williams" <[EMAIL PROTECTED]> wrote in message >

Output debug info to a file??

2005-06-14 Thread Niky Williams
On the winEmbed (Yes, I know it is not supported) example, there's a lot of info that is displayed in the console window. After you close out the program, I noticed that right before the console window goes away, there is what looks like a mem dump. Now to my question :-), is there anyway to make

Re: Stable embedded mozilla?

2005-06-14 Thread Niky Williams
Well, I have some horribly written code LOL for you to register a profile. This is how I got it to work. One of those "Get working now, will fix and comment later" type of things. // nsCOMPtr nsCOMPtr_nsIFile = NULL; nsCOMPtr ns

Re: Stable embedded mozilla?

2005-06-13 Thread Niky Williams
You would be getting that "cookies.txt" error if you don't have a profile setup...I just had this error a week ago or so and that was the reason, as soon as I got my profile setup, it went away. I was also getting the "RootScrollFrame not scrollable" assertion as well, I've been told to ignore tha

Re: Nubie wanting to go from IE COM to Gecko SDK

2005-05-25 Thread Niky Williams
;nsresult rv = NS_InitEmbedding(nsFile, nsnull); >if (rv != NS_OK) { > cerr << "Embedding failed.." << rv << endl; > exit(1); >} > > > Niky Williams wrote: > > Please bear with me here, I am a total nubie to the Gecko SDK.

Nubie wanting to go from IE COM to Gecko SDK

2005-05-24 Thread Niky Williams
Please bear with me here, I am a total nubie to the Gecko SDK. I currently have an app that uses the IE COM control...works okay..but I REALLY want to get off of IE and use the Gecko engine. I have a fairly okay understanding of MS COM and have been reading what I can get my hands on for XPCOM.