Re: Error accessing my C# app from VBScript
- From: "Adam" <adam@xxxxxxxxxx>
- Date: Mon, 29 Aug 2005 14:05:30 -0700
Hi Nicholas,
Thanks for the information. Given that accessing a .NET app from VBScript
using GetObject is known as "accessing an out of process COM server", what
is the term for accessing it using CreateObject like it works currently?
Just trying to get my terminology straight...
Thanks again!
"Nicholas Paldino [.NET/C# MVP]" <mvp@xxxxxxxxxxxxxxxxxxxxxxxxxxx> wrote in
message news:%23HBoICMrFHA.2876@xxxxxxxxxxxxxxxxxxxxxxx
> Adam,
>
> Unfortunately, this is something you can not do with .NET. You can not
> create out-of-process COM servers with .NET. You are better off using VB6
> or another unmanaged language which will allow you to do this.
>
> Hope this helps.
>
>
> --
> - Nicholas Paldino [.NET/C# MVP]
> - mvp@xxxxxxxxxxxxxxxxxxxxxxxxxxx
>
> "AdamM" <nospam@xxxxxxxxxx> wrote in message
> news:Sf-dnQP0Qb1jXY_eRVn-vA@xxxxxxxxxxxxxx
>>I now have it working, partially.
>>
>> I can use CreateObject and create and then control the new instance of
>> the C# code with VBScript. However, I cannot use an already running
>> instance of the C# code using GetObject.
>>
>> What I am trying to do is the same as when you control an instance of MS
>> Word with VBScript using GetObject(,"Word.Application"). This command
>> doesn't actually start Word, but instead uses the instance that's already
>> open and running.
>>
>> What I changed to get it working this far was to use the
>> System.Runtime.InteropServices namspace, the
>> [InterfaceType(ComInterfaceType.InterfaceIsIDispatch)] and
>> [ClassInterface(ClassInterfaceType.None)] tags, and created a new
>> interface with the same name as the class and that begins with an
>> underscore (class interface) and did the regasm /tlb option.
>>
>> This is the last obstacle for me and I assume I am still doing something
>> wrong.
>>
>> Thanks in advance for any ideas.
>>
>> "AdamM" <nospam@xxxxxxxxxx> wrote in message
>> news:WvKdnVi1EuAxt4_eRVn-og@xxxxxxxxxxxxxx
>>> Hi all,
>>>
>>> When I run my VbScript, I get the error: "ActiveX component can't create
>>> object: 'getobject'. Error 800A01AD". Any ideas what I did wrong?
>>>
>>> Here's my VBScript:
>>> dim o
>>> set o=getobject(,"ConsoleApplication2.Program")
>>> msgbox o.TestString
>>>
>>> And here's my C# application that's running when I try to access it from
>>> VbScript:
>>> using System;
>>> using System.Collections.Generic;
>>> using System.Text;
>>> namespace ConsoleApplication2
>>> {
>>> public class Program
>>> {
>>> public string TestString = "testing 123";
>>> static void Main(string[] args)
>>> {
>>> Console.ReadLine();
>>> }
>>> }
>>> }
>>>
>>>
>>
>>
>
>
.
- References:
- Error accessing my C# app from VBScript
- From: AdamM
- Re: Error accessing my C# app from VBScript
- From: AdamM
- Re: Error accessing my C# app from VBScript
- From: Nicholas Paldino [.NET/C# MVP]
- Error accessing my C# app from VBScript
- Prev by Date: Re: VB Guru having trouble with "C# boxing"
- Next by Date: Re: Hungarian Notation
- Previous by thread: Re: Error accessing my C# app from VBScript
- Next by thread: IComparable - Newbie qn
- Index(es):
Relevant Pages
|