How can I get control of a currently running instance of the Internet Explorer object. I can create a new instance with CreateObject statement, but GetObject doesn't work. Please help.
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_10108771.html
Zones:
Visual BasicDate Answered: 02/27/1999 Grade: C Views: 0
I want to take a reference from an open InternetExplorer object, but GetObject return the error:
"ActiveX component can't create object"
I used the code:
Dim ie As SHDocVw.InternetExplor...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_10355610.html
Zones:
Visual BasicDate Answered: 05/25/2000 Grade: A Views: 10
Hi,
in my app I create Recordsets and then I send them on to the server, a COM-object in the MTS.
First I ask for an empty Recordset and then I fill it up with values and returns it to the s...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_11872718.html
Zones:
C++Date Answered: 01/21/2002 Grade: A Views: 0
Here's the code I'm trying to execute in a Standard .EXE app on a Metaframe server:
Private Sub Command1_Click()
Dim objExcel As Excel.Application
Set objExcel = GetObject( , "Excel.Applicatio...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_20220889.html
the code:
Dim AccApp As Application
Dim AccObject As Object
Dim thefile As String
Dim PauseTime, Start, Finish, TotalTime
Set AccApp = CreateObject("access.application")
AccApp.Visible = Tr...
http://www.experts-exchange.com/Microsoft/Development/MS_Access/Q_20299002.html
Zones:
MS AccessDate Answered: 05/09/2002 Grade: A Views: 0
Hi,
I finished my Ping server statistics program a short while ago. You can probably imagine what it does. However the next step is to make a web interface for this application.
The scripting l...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_20308962.html
Here is my code that works when I want to open a Word Doc.
Dim oApp As Object
On Error Resume Next
Set oApp = GetObject(, "word.Application")
If Err.Number <> 0 Then MsgBo...
http://www.experts-exchange.com/Microsoft/Development/MS_Access/Q_20557852.html
Zones:
MS AccessDate Answered: 03/20/2003 Grade: A Views: 0
I am creating an application that needs to support the getobject function. I know vb6 does not provide an easy way to do this.
Does vb.net support this? If so can someone point me in the right dir...
http://www.experts-exchange.com/Programming/Languages/Q_20733566.html
Zones:
LanguagesDate Answered: 04/05/2004 Grade: C Views: 8
Hi I currently have a function that returns window user names from a group they reside in.
The code is:
Set Group = GetObject("WinNT://" & sDomainName & "/" & sGroupName)
For Each Member in ...
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/ASP/Q_20741862.htm...
Zones:
ASPDate Answered: 11/08/2004 Grade: A Views: 0
i have the following code, which keeps returning Permission denied: 'GetObject' on line 14.
i have checked that IIS settings say the security is set to Authenticated Users. and i am now at a lo...
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/ASP/Q_20765288.htm...
Zones:
ASPDate Answered: 10/20/2003 Grade: B Views: 0