|
Hi guys, i have a legacy massive vb6 editor with plenty of 3rd party libraries and controls and recently there is a need to set it up to make it multi thread so i can run a few other forms independently from the main editor form. Basically there's minimum...
Started by melaos on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Objects instantiated from a Global Multi-Use Class defined in a ActiveX EXE will crash....
In the multi-tasking behavior between a ActiveX EXE and a ActiveX DLL is only apparent when referenced from another VB6 EXE.
|
|
The VB6 help on GetObject says "You can't use GetObject to obtain a reference to a class created with Visual Basic" (the very last sentence!). My VB6 GUI exposes objects as an ActiveX exe, for other components to manipulate. I want the other components...
Started by MarkJ on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The trick is to remember that in a ActiveX EXE it can be setup and just pluck....
Register ActiveX EXE classes in the ROT, so GetObject has no way to retrieve a reference to an already than start a new instance of the exe.
|
|
I need a small communicator between an application/background process and the gadget, I think its easiest to make own activex module that has just getText() and setText(). I need to pass a string once per second or so. I guess the activex object should...
Started by Tom on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You need some sort of IPC....
For data transfer between applications, I use the Content-Type headers in HTTP to allow different representations (Text, binary, XML) .
I think wich your best option is use indy sockets to comunicate 2 o more applications .
|
Ask your Facebook Friends
|
I have several VB6 ActiveX server exe files which need to be registered on install before they can be used.
I have tried using Heat to extract the information but it only generates a file element.
These files can be registered by calling them with the...
Started by Daniel on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The minimum amount of registration you need to do to harvest COM EXE files, but I guess it ....
These ActiveX exe files
In general, you can discover registry changes like this:
Bring the registryActiveX controls are just COM objects.
|
|
I need to distribute a flash-based application to end users. I have a very simple index page to launch another window:
<HTML> <HEAD> <SCRIPT LANGUAGE="JavaScript"> function popUp(URL, w, h) { win=window.open(URL,"window","menubar=no,...
Started by SYMPLIK on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
However, I need to open a non-resizable menu-less browser to start my swf application .
ActiveX warning.
|
|
Question says it all really...
I have tried changing the "Allow non-admin users to run this program" setting on the property pages, and have also given the non-admin user in question what looks like the correct privileges in Component Services -> DCOM...
Started by Matt on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
After.
Apparently that allows what ever needs to happen with the ActiveX DLLs to work.
The app.
|
|
I would like to embed mozilla firefox into my application WITHOUT using any activex control (TWebBrowser wrapper, mozilla ActiveX...). I tried using TWebBrowser (actually bsalsa's embedded webBrowser wich is by far better), but all versions of IE seem...
Answer Snippets (Read the full thread at stackoverflow):
Make a .RC file with something like the following text:
OTHER_EXE_FILE RCDATA "nameofother.exe"
then using brcc32.exe) is available as a plugin for your....
The simplest way to embed an EXE into your application is to add it as a resource.
|
|
I have a VB6 application that I don't have source code. This application uses third-party ActiveX controls. I want to automate these ActiveX controls. Is it possible to get the IUnknowns or Object references? For some of these, I can get the underlying...
Started by Tommy Hui on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Are these ActiveX controls in a separate DLL? If so.
Sorry to say but the VB6 EXE don't contain suggestions especially about sending WM_XXX messages.
WM_MOUSEMOVE).
To the particular windows in question (eg.
|
|
How do I make an activeX control in a C# library project and then reference it in another ASP.NET wet site project?
Started by Igor Zelaya on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
[update] So you want ActiveX at....
Hope this helps!
Adam
Is the ActiveX for the client the client, frankly I'm not sure it is a good idea to be writing ActiveX controls - most browsers complex.
Bypassing ActiveX altogether.
|
|
Hi all,
I've created a small activex control, it works fine in IE, surprisingly enough it doesn't seem to work in any other browser. I know that firefox has got an add-on to enable activex, my question is if there is any general API for all browsers to...
Answer Snippets (Read the full thread at stackoverflow):
ActiveX is still is Roozz plugin it will let you run any....
You can perhaps get an limited support, Javascript/HTML or even Silverlight which are supported across browsers and platforms .
ActiveX is a Windows-only, Internet Explorer only API.
|