If this is visual Basic you need to use SET command with COM objects

Set myAB = CreateObject("Broker.Application")
.....
Set myAB = Nothing

Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message ----- 
From: "rutle1" <[EMAIL PROTECTED]>
To: <[email protected]>
Sent: Tuesday, October 16, 2007 4:33 PM
Subject: [amibroker] Broker.exe not going away after I exit the code


> Hi,
> 
> In the following visual basic .net code:
> ------------------------------------------
> Private Function CheckDatabase() As Boolean
> 
>    Dim myAB As Object = Nothing
> 
>    Try
>        myAB = CreateObject("Broker.Application")
>        lblDBPath.Text = myAB.DatabasePath.ToString
>        myAB = Nothing
>        Return True
>    Catch ex As Exception
>        Return False
>    End Try
> 
> End Function
> ------------------------------------------
> Now the problem I have is this. Without having Amibroker running, I
> run this code, and I get the database path info I wanted, then I exit
> the program. When I check Task Manager, I find that the Broker.exe
> process is still there. Without using the Quit() method, how do I
> clean up the Broker.exe process? I don't want to use Quit() because if
> Amibroker is running, the Quit() will close Amibroker.
> 
> Luciano
> 
> 
> 
> 
> Please note that this group is for discussion between users only.
> 
> To get support from AmiBroker please send an e-mail directly to 
> SUPPORT {at} amibroker.com
> 
> For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
> http://www.amibroker.com/devlog/
> 
> For other support material please check also:
> http://www.amibroker.com/support.html
> 
> Yahoo! Groups Links
> 
> 
> 
> 
>

Reply via email to