On Thu, Apr 19, 2012 at 7:53 PM, Dennis Macdonald <bandwo...@gmail.com> wrote:
> Hi,
>
> I have initiated a WMI query, see below;
>
> Dim searcher As New ManagementObjectSearcher("root\CIMV2", "SELECT *
> FROM Win32_Product")
> For Each queryObj As ManagementObject In searcher.Get()
>       ..... DO WORK HERE
> Next
>
> How to I abort this Get call because it takes approx 60 seconds on my
> comuter (I know the time will differ between computers) but I need to
> be able to cancel it.
>
> Note, putting a exit look does not help because it does not enter the
> loop until after the query has executed.
-----------------------

Is this run in command line?  If so try a Ctrl + C to send a cancel
message.  Untested advise here.  :)

-- 
Stephen Russell

901.246-0159 cell

-- 
You received this message because you are subscribed to the Google
Groups "DotNetDevelopment, VB.NET, C# .NET, ADO.NET, ASP.NET, XML, XML
Web Services,.NET Remoting" group.
To post to this group, send email to dotnetdevelopment@googlegroups.com
To unsubscribe from this group, send email to
dotnetdevelopment+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/dotnetdevelopment?hl=en?hl=en
or visit the group website at http://megasolutions.net

Reply via email to