Hello all,
I am building a small web app that will include an activex control. So I've built the activex control, it works fine when I use it in an html page. From some reason it won't work when used in an aspx page. The authority popup that offers me to include the control won't appear when it's in the aspx page. The problem occurs bot...
Hello all,
I've built a small activex control using c#. I've got a function that returns an array of bytes. From some reason when I try to consue the returned array in js I receive an undefined value. Why is this happenning? Is there anyway to solve it?
Here's a simple demonstration of my code:
Activex:
[ComVisible(true)]
public...
In Microsoft Access, I have a series of forms that require the user to specify a date range. Right now I do this with Calendar Control 12.0. However, at random times, the control refuses to accept any user input (such as changing the date).
Why would the Calendar Control refuse input? Is there any known workaround for this?
I'm runn...
Hi,
I'm experimenting with writing ActiveX controls and noticed that I can't seem to create an ActiveX control in Visual Basic (6.0) which features slightly more sophisticated controls. Simple controls like labels, buttons and check boxes seem to work fine, but as soon as I try to add e.g. a tree control to my form, the ActiveX control ...
I have written an ActiveX COM Dll, which is used in webpage. It exposes 2 functions say Connect, Disconnect and 2 events. In Connect method, I have created an instance to another class, lauches 2 threads one for Receiving Events and one for HeartBeat(HB). In the Disconnect method, I am disconnecting the Socket, (if connecting Socket is v...
Hello all,
I've got this small web application I've built. It's got an activex control returning unmanaged code through javascript into a silverlight application. In silverlight I perform a marshaling operation on the returned value. When I only perform the simple operation of GetSize() I get struck with a stupefing error. This brings m...
Is there a way to display a Flash or Adobe Reader ActiveX control in a Java AWT frame?
I'm porting a large old J++ application to standard Java and it needs to host a certain ActiveX control on an AWT frame.
Is this possible?
I looked at the JACOB (Java to COM Bridge) project and it doesn't appear to support ActiveX objects that draw...
I like the subform/subreport control in Access, and I want to put an instantce of the control on my VB6 form.
I reference the msacc.olb in my VB6 project, and put the following codes in my form module.
Private Sub Form_Load()
Dim aa As Access.SubForm
Set aa = Me.Controls.Add("Access.SubForm", "sf1")
aa.Name = "vvvddvv"
aa.Visible ...
Hi all,
I am building a small activex control. I understood that activex cannot call a javascript funtion directly, but needs to work through events. Therefore I've created an event, copied from a code sample from codeproject.
The event seems to work only on certain circumstances: It works when a call is made to a javascript function w...
Is there any way with vb.net of accomblishing MMS audio streaming?
Also, i read somewhere else within SO, that MMS streaming is no more supported by Microsoft. Is that true? Just curious..
...
Hi,
A have a working COM object. do I need to do any code/registry modifications in order to make it an ActiveX?
Ofer
...
I'm wanting to build an ActiveX control to upload files from a user's machine on a web page.
Where can I fnd a good example or tutorial for this - I guess C++ would be my preferred language, but VB would be OK too.
...
Hi,
I am creating a ActiveX control in C# 2.0.
I want to show tool Tip over my User Control.
So i define a property and also add a Tool Tip control on my user control.
public string ToolTipText
{
get { return this.myToolTipText; }
set
{
this.myToolTipText = value;
...
Hi,
I want to use a Flash ActiveX object in a hidden ole container window to render graphics and send the frame data to a Java App where it is displayed. So far so good.
Now I want the Flash object to react on mouse events that are happening on the Java window which is displaying the frame data.
I imagined to simply forward the relati...
I already spent whole day to trouble shoot this problem, but no luck yet. In my project, I set the Use of ATL property to Static Link to ATL on the General property page and set the Runtime Library property to Multi-threaded (/MT) on the Code Generation property page (C/C++ folder). However DependencyWalker still shows Atl71.dll dependen...
I want to pull some data from a page containing a javascript function taking parameters including the this paramter ex: displayNav('11512010', 'J88903', 'itna', this, 'detailSpec','false','true');
My first issue is that I am not sure what I should do with the this object. I want to execute the script and get back the result somehow. I a...
Hello,
The web application im working on uses a custom activex control to load word documents from the database, via word. Currently, however, when i try to load the activex control it instead shows what looks like a large blank text box. I have been pulling my hair out trying to figure out whats going on and i still have no idea.
I k...
Dears,
I use the following line to create an ActiveX object in javascript:
xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
that works fine and every thing is ok.
but now every time I run the above line I get the following error:
'_originaActiveXObject' is undefined
any help?
Thanks in advance.
...
My MFC ActiveX is simple active. I make it by MFC ActiveX template of Visual Studio 2008.
i just add call show message dialog when ActiveX destroy to test.
CmfcActivexCtrl::~CmfcActivexCtrl()
{
AfxMessageBox(_T("destroy"));
}
I open my page embed this ActiveX. After I navigate to other address.
if i disable skype-addon then mes...
What are the steps to deploying a project created in VS2008 (windows forms and c#) as a ActiveX control hosted in ie? I have a file uploader project that I want to be hosted on a webpage that users can navigate to, click 'trust this active x control' and the application runs on the page in the browser, just like a java application.
To ...