2024-03-02, 16:58:17
In VFP, I have some forms that are generated via code... they have statements like this:
If I substitute "Shell.Explorer.2" with "AntViewAx.Antview", I get "OLE error code 0x80020006: Unknown name."
What is the OLEClass equivalent with AntView for statements like this?
Thanks!
Code:
Define Class MyForm As Form
...
Add Object oleIE As OleControl With ;
TOP = 48, Left = 12, Height = 500, Width = 600, ;
NAME = "oleIE", OleClass = "Shell.Explorer.2"
If I substitute "Shell.Explorer.2" with "AntViewAx.Antview", I get "OLE error code 0x80020006: Unknown name."
What is the OLEClass equivalent with AntView for statements like this?
Thanks!