PureBytes Links
Trading Reference Links
|
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" <rutle1@xxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
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
>
>
>
>
>
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
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|