We have moved an existing website from IIS 6 to Windows Server 2008 64-bit + IIS 7.5. The website consists of Classic ASP, ASP.NET, and the Classic ASP uses several 32-bit ActiveX components. The website's app pool is running Classic Pipeline Mode and we have enabled 32-bit applications for the app poll too. In Task Manager i can see tha...
I need to add one menu item in IE context menu. It is similar with Google customized context menu "Search Google for xxx" when you right click on IE.
I did a research and found that overriding IDocHostUIHandler::ShowContextMenu in a IE BHO can customized IE context menu. The sample project can be found in Popup blocker project published...
Whats the most common way of instantiating VB6 ActiveX controls inside of an Tcl/Tk wrapper application.
Are there performance issues with this setup i.e. around GDI handles?
...
Is there a tutorial/reference for creating an ActiveX DLL in Visual Studio 2008 C++ ?
I've got a DLL built with the DLLRegisterServer/UnregisterServer, and it's registered, but I'm having a little trouble figuring out what name to use to reference it (from a vbscript) and how to make sure my functions are exported correctly. Do I have ...
I have a custom button control created using ATL. This control is used by some composite controls and lots of dialog boxes. I just added some new properties to the button control and found that I then had to update all the controls and dialogs that used it. This is a really poor situation so I wondered if I could be doing something be...
C#, visual studio 2005
I have several 3rd party activeX control. I need to use them in my .net windows application. These controls are graphical.
I created a wrapper with aximp.exe for them. But it seems that something wrong. When I call some methods of wrapped activeX control ==> targetinvocativeexception occured. Or visual studio wri...
This is a binary file. I would like to download and save a file with Javascript. This is all happening on a local machine. Is this possible? Thanks in advance!
...
I have a legacy delphi program and want to add some content implemented with WPF. So I encapsulate the WPF control with a .NET/ActiveX interop technology. That means something like:
[ComRegisterFunction()]
public static void RegisterClass(string key);
[ComUnregisterFunction()]
public static void UnregisterClass(string key);
The active...
Hello there.
I have a Win32 C++ Application. There is the _tWinMain(...) Method with GetMessage(...) in a while loop at the end. Before GetMessage(...) I create the main window with
HWND m_MainHwnd = CreateWindowExW(WS_EX_TOOLWINDOW | WS_EX_LAYERED, CAxWindow::GetWndClassName(), _TEXT("http://www.-website-.com"), WS_POPUP, 0, 0, 1024, ...
I'm try develop an ActiveX Control in VB6. It have one UserControl and one form. And the problem that i can't call usercontrol function's (even public) from this form. I can't type something like
UserControl.DoSomething 'not working
It work's only if create copy of usercontrol (UserControl1, for example). But in resulting i need one o...
I have a "ActiveX library" project created with Delphi 2007. The library interface return XML data based on input values. This is then used by a PHP script that displays the data on a web page. This works great!
The problem is that i can only run one instance of the dll process on the server. However, for security reasons, each of my cu...
Hi,
I am using Qt 4.5 and Windows XP. I need to create an Microsoft Excel Document that has data (some labels and values) from the Qt application. I need to format those data with some fonts,bold,italics,color, background color etc., Besides ordinary data, there will be Picture files (JPG) also. I need to add those into the Excel. I know...
I am compiling idl file using MIDL compiler and generating header file. I need to get smart pointer implementations for interfaces defined in my idl file. How to get smart pointers for my interfaces by compile idl using midl?
...
Hello all,
I would like to create a folder selector for my application which will only run on Internet Explorer Browsers (IE6+).
I would like to get the full folder path a user wishes to use via a HTML browse button or similar and then pass this to my server side application which is written in PHP! This can not be done via JavaScript ...
My .ocx contains two ActiveX controls and I use both of them on one page.
When user comes to page he gets two install confirmations for the same binary. After the first installation and page reload he gets one control displayed and “the website wants to run the following add-on...” yellow bar with control’s run confirmation for the oth...
Hello all,
I am having a look at this example which makes use of activeX - it does extacly what I need from the description but everytime I try to run the example, I get the error:
Could not load Drivers. The ActiveX
Control could not be started.
I have tried this on IE8 on a windows Vista Machine. What is the problem, how can I...
I have an application which uses ActiveX controls. I want to automate this using Selenium IDE. But when i launch the application i end up in an error message "Turn on you ActiveX control". Is there any way to enable ActiveX in FireFox?
Note: I am using User Agent Switcher(as IE7) Addon of firefox to run my application.
...
I developed a web app using GWT about 2 years ago, since then the application has evolved. In its current state it relies on fetching a single XML file and parsing the information from it. Overall this works great. A requirement of this app is that it needs to be able to be ran from the filesystem (file:///..) as well as the tradition...
I'm trying to create an AJAX request in IE8.
var xhr = new ActiveXObject( 'Msxml2.XMLHTTP' );
xhr.open( 'GET', '/ajax/' );
// Required header for Django to detect AJAX request
xhr.setRequestHeader( 'X-Requested-With', 'XMLHttpRequest' );
xhr.onreadystatechange = function() {
if ( this.readyState == 4 ) console.log(this.responseText);...
I am facing some questions when trying to design an S3 application using ASP.NET MVC and trying to stay HIPAA compliant.
My initial plan was to require an SSL connection to my web server, encrypt the images on my server, then send them to s3 using my private keys.
Here's my obvious concerns:
You cannot store unencrypted images in any...