Click here to Skip to main content
15,900,906 members
Everything / XPCOM

XPCOM

XPCOM

Great Reads

by Md. Mazharul Islam Khan
Step by step XPCOM creation and implementation in C++.
by Md. Mazharul Islam Khan
Step by step XPCOM creation from Microsoft COM
by Md. Mazharul Islam Khan
Using different types of strings in XPCOM.

Latest Articles

by Md. Mazharul Islam Khan
Using different types of strings in XPCOM.
by Md. Mazharul Islam Khan
Step by step XPCOM creation from Microsoft COM
by Md. Mazharul Islam Khan
Step by step XPCOM creation and implementation in C++.

All Articles

Sort by Score

XPCOM 

29 Oct 2010 by Dave Kreskowiak
Seriously?? What does this have to do with C++ or XPCOM?Go to Toshiba's website and see if they let you download the driver from there. This is standard practice for any hardware drivers.
18 Jan 2011 by infant_coder
Hi, I am trying to develop a firefox add-on to get all links from a webpage. I need to write in cpp using xpcom or firebreath. Please guide.
9 Feb 2011 by infant_coder
Hi,I have built a plugin for firefox, say "plugin.xpi". How do I use the same in Google Chrome ?
9 Feb 2011 by Ramalinga Koushik
This [^] and plugin-for-google-chrome[^] may give you an idea.
19 Dec 2011 by Ștefan-Mihai MOGA
Does anybody know any C++ tutorial for developing a thunderbird extension with XPCOM?
8 Jan 2012 by shankha2010
I have created a xpcom firefox plugin it is working fine if i copy manually the directory to extension folder and restarts firefox.[it is asking for to allow the permission and works fine].but if I zip's and renamed it as .xpi and upload in server to download onclick.Firefox is...
9 Jan 2012 by shankha2010
at last found it from somebodyin install.rdf I have to mentionone more flagtrue that's all :)
10 Apr 2012 by amityadav4a
I want to create Tree view in client window of MDI application. How to do so.This is how my code look like.Please Give in detail example as i am new to win32 programming.int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int...
10 Apr 2012 by JackDingler
You're making things difficult.Use the Visual Studio Application Wizard to build a project with a CFormView or a CTreeView.If you use the CFormview then you can drop a TreeControl into the dialog template associated with the view.You can change the view type in a new project using...
10 Apr 2012 by Mohibur Rashid
follow the code part:switch(msg){ case WM_CREATE: CreateWindowEx(0,L"MDICLIENT", L"", WS_CHILD|WS_VISIBLE, 0,0,0,0, hWnd, (HMENU) ID_CLIENT_AREA, hInstance, NULL); CreateWindowEx(0,L"SysTreeView32", L"", WS_CHILD|WS_VISIBLE, 0,0,0,0, hWnd, (HMENU) ID_GLOBALTREE, hInstance,...
3 May 2012 by jan.mach@nexthink.com
You need to inherit your class MyComponent also from nsSupportsWeakReference and have following in implementation NS_IMPL_ISUPPORTSX(CProgressListener, ... , nsISupportsWeakReference) where X is replaced with correct number of classes you inherit from. This will add weak reference implementation...
4 May 2012 by jan.mach71
if AddProgressListener fails it might be due to the class not inherited from nsSupportsWeakReference.
21 Jan 2013 by laxmanbalu
Hi,If any one have sample xpcom example on Firefox OS. Please share with me. I am beginner.I want working sample application on Firefox Mobile OS. I have tried multiple i didn't get any sample application. Please provide one sample working Application on firefox Full build Source. Which is...
7 Feb 2013 by forouz
HelloDuring adding control to project i receive following Error "error writing source files e.g.(split.h, split.cpp) for new class." appreciate you in advanceI have a SDI project in VC++ 6 and and i will face with this problem when try to add each one of registered component to my...
14 Apr 2013 by forouz
error routed from my virus scanner, and after deavtivating solved my prolem.
12 Jul 2018 by marcelo8690
using c # and geckofx How do I put a file in a filepicker object without opening the dialog form? What I have tried: internal class myFileDialog: nsIFilePicker, IDisposable { nsIFilePicker filePicker = null; public myFileDialog(): base() { ...
30 Jun 2010 by Md. Mazharul Islam Khan
Step by step XPCOM creation and implementation in C++.
26 Jul 2010 by Md. Mazharul Islam Khan
Step by step XPCOM creation from Microsoft COM
16 Aug 2010 by Md. Mazharul Islam Khan
Using different types of strings in XPCOM.
18 Jan 2011 by Sandeep Mewara
Did you had a look at this: How to develop a Firefox extension[^]
22 Nov 2010 by Sachin KH
I am creating application which gets URL from Firefox on every pageload(every url entered by user…).Without using javascript………Uptil I have created component which is starting up automatically . I registered for AddProgressListener (NOTIFY_STATE_ALL | NOTIFY_ALL)….But I am unable to get...
17 Dec 2013 by Member 2370615
Hi all, I need to create an Add-on for Firefox using XPCOM and JavaScriptI refered the following link,https://developer.mozilla.org/en-US/docs/How_to_Build_an_XPCOM_Component_in_Javascript[^]But I am unclear on the steps mentioned in the link.It will be more helpfull if some one...
7 Sep 2013 by er.teena
i’m having trouble copying some files, but not all files, from one location to another. The files are not corrupt as the image or video file opens and plays OK in the original location, but any attempt to move it triggers the error message “Can’t read from the source file or disk”. I’m also...