Search found 3 matches

Go to advanced search

by Sarrus
14 Dec 2016 11:05
Forum: Web and scripting
Topic: Unable to hide toolbar when ActiveX loads
Replies: 7
Views: 4714

Re: Unable to hide toolbar when ActiveX loads

In Visual Studio (tested with VB.NET and C#), you can set it with the object property window. As you can see in my first post, I creating control manually, not by designer. Nevertheless I checked how designer sets this property. I had to use git, because this property is not set in *.Designer.cs. I...
by Sarrus
24 Nov 2016 10:21
Forum: Web and scripting
Topic: Unable to hide toolbar when ActiveX loads
Replies: 7
Views: 4714

Re: Unable to hide toolbar when ActiveX loads

If I set property before parentControl.Controls.Add(), then AxHost.InvalidActiveXStateException is thrown. From MSDN: The public properties and methods of an ActiveX control can only be referenced after the ActiveX control has been instantiated and initialized completely; otherwise the AxHost.Invali...
by Sarrus
22 Nov 2016 14:26
Forum: Web and scripting
Topic: Unable to hide toolbar when ActiveX loads
Replies: 7
Views: 4714

Unable to hide toolbar when ActiveX loads

Hi, I have vlc ActiveX control embedded in my own ActiveX control. I need to have toolbar always invisible. This is my code: _vlcControl = new AxVLCPlugin2(); _vlcControl.BeginInit(); _vlcControl.Enabled = true; _vlcControl.Location = new Point(0, 0); _vlcControl.Name = VlcControlName; _vlcControl.S...

Go to advanced search