|
|
||||||
|
#1
|
|
|
|
|
I nee to build an ActiveX control which would run in both 32-bit and 64-bit
versions of IE. What is the proper way to do this? |
|
|
|
#2
|
|
|
|
|
Alex Ivanoff <AlexIvanoff> wrote:
> I nee to build an ActiveX control which would run in both 32-bit and > 64-bit versions of IE. What is the proper way to do this? You can't. A 32-bit process cannot load 64-bit DLL and vice versa. You must build two separate DLLs, perhaps from the same source code. I believe the two can have the same CLSID, thanks to registry reflection in WOW64. |
|
#3
|
|
|
|
|
Can someone give me more details? Perhaps with smaples?
"Igor Tandetnik" wrote: [..] |
|
#4
|
|
|
|
|
"Alex Ivanoff" <AlexIvanoff> wrote in message
news:42f5 > Can someone give me more details? Perhaps with smaples? > Just recompile your ActiveX Control in Visual Studio (or msbuild). What exactly would you like to be sampled? I have a sample, which is compiled twice. http://technolog.nl/eprogrammer/arch...03/17/447.aspx |
|
#5
|
|
|
|
|
Ok. I need to create an ActiveX control for IE 32 and IE 64. I understand I
need two different builds: x86 and x64. Can I use the same ids on both builds? How should html look like to load correct control based on the bitness of IE? "Egbert Nierop (MVP for IIS)" wrote: [..] |
|
#6
|
|
|
|
|
"Alex Ivanoff" <AlexIvanoff> wrote in message
news:f501 > Ok. I need to create an ActiveX control for IE 32 and IE 64. I understand > I > need two different builds: x86 and x64. Can I use the same ids on both > builds? How should html look like to load correct control based on the > bitness of IE? >> "Egbert Nierop (MVP for IIS)" wrote: > Hi Alex, I have Windows x64 so can easily test it. The design behind X64 is that we programmers, hardly have to change code, but _only_ recompile. So I restate, recompile only. If you would download my samples, and compile it, you'll find there's no difference. Windows x64 is that smart, that it redirects registry keys. (from my samples, that you could download) (32-bit stuff on x64 windows) AL_MACHINE\SOFTWARE\Wow6432Node\Classes\CLSID\{598 30648-8E40-41D8-A37B-DCCB2885C98F} (64-bit stuff on x64 windows) HKEY_CLASSES_ROOT\CLSID\{59830648-8E40-41D8-A37B-DCCB2885C98F} As you can see, all specific info, is redirected. While the HKCR is not redirected, the CLSID tree, is. So. You HTML does not -need- to be different! |
|
|
| Similar Threads | |
| Using standard Windows Forms controls as ActiveX controls Hi I have created a couple of Windows Forms controls in C# either by composition or by subclassing existing controls. I'm able to use these controls as ActiveX controls by... |
|
| Windows CE webserver how to use ActiveX controls/.NET controls/Java applets Hi folks, I'm currently using the HTTPD webserver in combination with the windows CE emulator. My goal is to access a windows CE HTTPD webserver HTML/ASP page... |
|
| activex settings prohibit running ActiveX controls Hi all, The issue: Completely patched WinXP with all updates and service packs through today 7/20/2005. Symantec Internet Security gives the following error: Your current... |
|
| Charting/Graphing ActiveX Controls/ActiveX Libraries What are the best tools to chart/graph in VB6 and/or ASP? (We don't know if the project will be a web-based or Windows-based application yet, so I am open to hearing about... |
|
|
All times are GMT. The time now is 06:31 PM. | Privacy Policy
|