436 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
92
views
How to pass null as ActiveX control parameter
ActiveX control was registered from dll file using regsvr32:
cd \windows\syswow64
regsvr32 "C:\mapp\mycontrol.dll"
FoxPro object is created from it using
ofiscalprinter=CREATEOBJECT('...
0
votes
0
answers
33
views
The active x comboboxes in my office-365 excel worksheet changing size randomly when screen changes, or I open the workbook from other computer
I have a macro enabled Excel 365 workbook (.xlsm) and I have a problem that I cannot fix since months. I have read several entries on different platforms but none of them fixed my problem:
I am using ...
0
votes
0
answers
30
views
Still getting randomly uncontrolled active-x control's resizing or repositioning problem in Excel MS 365 V 2402
I’m using Excel 365 Version 2402. Everything works as expected in my macro-enabled Excel workbook, except my active-x ComboBoxes. I know this is a very old issue and there’s so much written about this ...
0
votes
0
answers
57
views
Deleting lines added with another macro while retaining totals row and formulas
I have an expense form that I have built that has a header section and then a table for expense entries. The table starts with 15 rows available for entries and a 4th row that is the total(s) row all ...
2
votes
1
answer
91
views
Select text in ActiveX Text Box using Excel VBA
I am trying to select the text in an ActiveX Text Box, so I can manipulate it via the keyboard.
I want a command that would work similarly to:
ActiveSheet.Shapes("Shape Name").TextFrame2....
0
votes
1
answer
66
views
How to open local app with HTML using ActiveXObject?
I want open PyCharm project with html and js
First i try to open the notepad
this is my code
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>...
1
vote
0
answers
109
views
C# AutoCAD Civil3D 2022 Activex get civil object properties
I defined libraries in Civil 3D, but when I match the name with the object name, I get the error "No method or operation has been applied".
Can you help me?
AcadApplication ACAD = (...
0
votes
1
answer
209
views
Compile error: Argument not optional on CommandButton_Click
I've added a Command Button to one of my workbooks to trigger execution of a macro. The attached code is very simple:
Private Sub CommandButton1_Click()
Call Evaluate
End Sub
However, when I click ...
1
vote
1
answer
109
views
ActiveX Combo Box Selection Disappears After Selection
My VBA code works successfully when loading the combo box with different list based on a Selected Case. However, when I select an option from the drop down, the selection does not load into the Combo ...
3
votes
2
answers
251
views
Excel VBA Problem when adding an ImageCombo-ActiveX to a worksheet
I'm trying to add an ImageCombo-ActiveX control to an Excel worksheet by using the VBA-function .OLEObjects.Add(classtype:="MSComctlLib.ImageComboCtl.2", Top:=TopPos, Left:=LeftPos, Height:=...
0
votes
1
answer
1k
views
WORD VBA - Looping through ActiveDocument.InlineShapes and the loop maxes out at 100
Application = MS WORD
Script = VBA
I am trying to loop through each "ActiveDocument.InlineShapes" in a word document.
This document contains approximately 300 InlineShapes and I want to ...
1
vote
0
answers
134
views
Python importing ActiveX DLL issue
This will be my first question.
I am trying to use python to import a SDK which provides ActiveX DLL and ocx file.
I tried using
clr.FindAssembly("dllname.dll")
clr.AddReference("dllname")
to ...
1
vote
0
answers
462
views
ActiveXobject is not defined, need alternative
I need help and suggestions from you.
We have used ActiveXobject for IE support application now we have migrated to Edge now it is not supporting.
sample code as below.
<script>
function ...
2
votes
0
answers
984
views
Support for Shell.Explorer.2
I use the Internet Explorer ActiveX component (Shell.Explorer.2) in my applications and my question is - will Windows discontinue support for this component?
I read that Internet Explorer will not be ...
2
votes
0
answers
122
views
How to create a ControlSource ms-access property in c++ without VB6
I'm trying to create a MFC ActiveX control with Visual Studio 2022, that should have a ControlSource property under Data Category when inserted in ms-access form. So that it would be possible to bind ...