I need call a ActiveX in my SSIS package, so I use script task and write the following C# script:
public void Main()
{
clsAptFdbReader objFdbReader = new clsAptFdbReader("UnitedStates20000830.fdb");
objFdbReader.OpenFdb(false);
Dts.TaskResult = (int)ScriptResults.Success;
}
Get a error:
Error:
System.Reflection.Targe...
I am looking for a property browser/editor for generic activeX controls.
It must work for controls that just expose an IDispatch interface, no proeprty pages of their own.
Best would be something that comes with the OS (like the "All properties" property page VC6 used). It is only for testing, so comfort is not important, modal propert...
Hello,
Im doing ActiveX component with exposed Events. This component will be used in another project and i need to trap events in this another project from activex component.
On the ActiveX is only one button and I would like to catch the event when user clicked on this button.
The code I have (but doesnt work)
namespace
ActiveX
{
pu...
Hi
I am trying to use my .net user control inside jsp page.
The jsp is served by Tomcat in Oracle BPM 10g.
I tried:
adding mime tags for dll in web.xml
Adding address to iexplore trusted zones.
Using server generated adresses instead of fuego calls like:
classid="..//webRoot/webResources/ImageEditor.dll#ImageEditor.Editor"
The dll...
Hi All,
I'm using msscript.ocx in my application which is an activex scripting host for windows.
Although I want to be able to use the same for XP embedded(XPe) which's highly customizable.
1.I want to know whether on XPe, msscript.ocx can be optionally installed or not?
2.Where does it get installed from, IE?
3.Or is it a windows co...
I’m looking for a way to deploy a system DLL within my ActiveX CAB file. CAB cannot update system file and whole installation fails. Perfectly, I would like to copy the DLL into ActiveX installation folder.
My best suggestion (I didn’t try it yet) is using INF file hooks with some standalone installer, but I wonder is there another way...
I have a fairly simple block of code.
Sub Run(Name)
on error resume next
Set objShell = CreateObject("WScript.Shell")
if Err.Number = 429 then
alert("Invalid Security Level.")
exit sub
end if
objShell.Run Name
if Err.Number <> 0 then
Alert("Please verify your Operating System Choice")
end if
Set objShell = Nothing
End Sub
...
Is there a way to get the AxShockwaveFlash object from a WebBrowser control that loaded a web page with an embedded Flash object in it?
...
I have an activeX control and i need to work with it in web form in asp.net
...
An ActiveX Script in a DTS package can return DTSTaskExecResult_Success or DTSTaskExecResult_Failure. Is there a way to indicate that it is not a success without failing the entire package? We'd like it to keep going, but in a different direction. The options for a path are Success, Failure, and Completion, but it appears the only ret...
IE Tab allows users to view pages using the IE rendering engine. Is there something along these lines the other way around, rendering a tab using Gecko in IE?
Is it possible to write an ActiveX control to include the Gecko engine or webkit and use that to render the page?
...
Hi All,
I'm trying to create an Active X component that will start an application on a client machine. I've created an Active X control which is quite straight forward in .NET. ALl it does is call the Process class and call Start.
Now i want to be able to call the starting method on this class from javascript passing in a few paramete...
I have designed an activeX control using C#. this activex is for detecting the USB devices.
after deploying in my web application all is working fine at my development PC (detecting device and capturing event from the device).
The problem is at the client side or the other PC where i am trying to access my webpage.
there activex is load...
Hello,
I have a object as shown below for digital signature. How can I access it from codebehind. When I tried adding runat=server I am getting an error saying GUID cannot be more there 32 char and I am not able to access it from code behind.
<object height="113" width="225" id="IntegriSign1" data="data:application/x-oleobject;base64,...
I'm using the MapX 5.0 ActiveX plugin in an MFC application.
I've got some temporary layers that I create in the following way:
// Create a new Fields Object
CMapXFields fields;
fields.CreateDispatch(fields.GetClsid());
// Create the field definitions for the new layer.
// Storing 64bit integers here. Is this even possible, btw?
fields...
hello
while designing my user control, i encountered the following problem:
i would like to set the UserControl.CanGetFocus to false, which is not possible due an error message telling me that a control unable to receive focus can not contain elements who are able to receive focus.
but as i don't want them to actually receive any focu...
hello
again i have a little problem with the creation of a user control.
though i have made a control i want to use in another control.
as soon as i want to add the reference (would like to use it as compiled OCX) in the Component's list, the message "Wechselseitiger Verweis zwischen Projekten nicht zulässig" which means something like...
How do I access a COM component from an ASP.NET page. I added reference to my ASP.NET project.
The actual dll I got from the 3rd party is ePadIIu.dll but when I added it to the ASP.NET project it shows as ePadIIu.interop.
I want to access all the methods and properties in the component.
The sample I received from the 3rd party softwa...
I have returned object from signature device and when i make quick watch on it, it told me that its an array of long and when i pass it to web method in my code behind (vb.net) it gives me nothing.
i need some help..
note: i'm using an activeX to capture the signature from the device.
this is javascript code :
function OnSave() {
...
Hi.
I am working with Delphi and Crystal Reports 9.0 ActiveX objects.
I know that I can load a report from a file like this:
crApplication.OpenReport(AFileName)
However, I would like to store my report in memory and open it from memory instead of file.
I don't want to create any temporary files on my disk.
Any ideas?
Thanks for you...