VS 2008 - Multi-thread Two Loops So That This Process Is Running At The Same Time?

Jun 28, 2009

It is my previous problem in vb6, its hard to multithread using vb6 so I migrate my codes to vb.Net.How can I multithread this two loops so that this process is running at the same time.Because when I start my second Loop, my first loop stop in executing. It will start again when my 2nd loop finished.

[code]...

I have 2 connected GSM Modem in usb port.That codes will send SMS in all contacts in my ListBox.

View 27 Replies


ADVERTISEMENT

VS 2008 Running A External Program/process In A Thread?

Jul 7, 2011

Is it possible to run a external program/process example notepad in thread of you vb application?

View 2 Replies

VS 2008 Multi-threding - Adding Multi-threading Facilities - Cross-thread Operation Not Valid

Feb 10, 2010

I'm adding multi-threading facilities for the first time. I have a function that is wrapped to be run in a separated thread. This function retrieves data (text) from a combobox and it works for sure without multi-threading.

When I call it as multi-threaded, I get the following error when I try to retrieve the data from the cmobobox: Cross-thread operation not valid: Control 'cmb1stBL' accessed from a thread other than the thread it was created on.

It looks like a restriction of thread-safety... I assume that the child thread cannot read from his parent, to make sure that he doesn't change his parent data. So how can I read the data from the combobox? Should I read the comoboxbox data before calling the child thread?

View 4 Replies

Running Process In Separate Thread

Mar 24, 2009

Here's the problem I am trying to solve. My program can export a file as a pdf. and other formats. I can open the file using process.start. My file doesnt have a good name so I am using a GUID as a name.

[Code]...

View 2 Replies

VS 2005 Get Process Running Time?

Mar 10, 2010

check how long a process has been running? I'm using the below code to check whether these programs are running.

Is there a way to see how long they've been running?

Private Sub tmrKillJoy_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles tmrKillJoy.Tick
Dim local As Process() = Process.GetProcesses

[Code].....

View 1 Replies

WCF Service Running A Background Thread To Speed Up Execution Time

Nov 14, 2011

I have a per-call WCF service that serves a number of clients. I'm looking to speed up the services by running some background processes so they don't block or slow down the main function of the services.

One example is that the main function needs to return a set of data, while the background thread needs to record some statistics based on the parameter(s).

Code:

Public Function GetAccountDetails(id As Integer) As AccountDetails
Dim retVal As New AccountDetails
Dim a As New Accounts

[Code]....

If I use this background thread to record the statistic it doesn't block the main thread from returning the data to the client.

It's been working well in test scenarios, but my question is, are there any dangers with leaving this thread to execute without Joining it before returning the data to the client? Could there potentially be any loss of statistic data? Could there be potential memory problems on the server side?

View 1 Replies

Using WSF (Windows Scripting File) To Retrieve Component Services Running Process ID's Using Running Process Name

May 7, 2009

I am trying to write a Windows Script that will allow me to monitor the following: That 2 x seperate but specific processes within Component Services "Running Processes" list are currently running and have not reset within the past hour. If I already know the PID, then I can retrieve the CreationDate (I assume which I can use to check for restarts? or is this the actual process creation/installation date) for each specific process, however if a restart occurs the PID will change and my script needs to know what the new PID is without me telling it!

[Code]...

View 2 Replies

VS 2008 If Process Is Running Give Focus, If Not Start Process?

May 27, 2010

Trying to create a button that when clicked will check to see if a certain process image is running and if that process is running give the process focus. If the process is not running then start the application.

View 9 Replies

Multithreading A Process - Open A Process And Loops Through The Data

Feb 27, 2012

I was wondering if this code could be better optimized for multithreading. What it does is open a process and loops through the data, there could be any range of files to open (so I would like to have say 2 or 3 processes at once):

[Code]...

View 19 Replies

VS 2008 : Get The Multi-thread An Existing App?

Mar 17, 2009

I have an application which is working. Basically you put in the PC name/ip and it returns the logged on user. I am happy with this part. There is also an option where the program can read a text file of PC's. It will then create another text file with the name of the logged on user next to each pc. This part works, however the program is non-responsive during this time (there is a progress bar, so you can tell it hasn't stalled). I would like to multi-thread this part of the app if possible, Just starting the related sub procedure as a different thread would be a great start - I'd like to start a new thread for each pc in the list to be scanned (if this is recommended) however I imagine this might be slighly complicated...The part I'm referring to is the Sub Procedure "ReadFile". This then calls the Sub Procedure "CompareUserList".

View 2 Replies

VS 2008 Do Something On Each Item In Listbox And Multi Thread

Sep 18, 2011

this is going to be hard to explain but ill try. Question 1. Ok i have a list box with a few items, What i want for this example is to click a button and it will start on the first item and do: MsgBox ("this is item blah blah blah") then after that it will go to the next item and do the same and then the next and so on untill all have been done. The "blah blah" should be the item so if item was to say "hello" then the msgbox would say "this item is hello" I know this would be a lot of msgboxes to close, like if 50 items then thats 50 msgboxes to close, this is just for the example.

Question 2. Ok this is where ive tryed to learn but find it really hard (multithreading) Im wanting all to be multithreaded so all work at the same time, ive tryed a few times but the only way i see it is having a **** load of subs, like if i want it to use 10 threads then ill have to add the same code 10 times or somet, im not sure.

i have attempted all this and failed big time as my way was to get the first item and use that then remove it from the listbox BUT... with it being quite fast the 2nd 1 and 3rd 1 used the same item befor it was removed and to be honest i dont really want them removed. so my attempts took like 2-3 days that was a waste of time really. I Know this is a lot to ask but im in real need of it and these 2 things have driven me half mad.

View 21 Replies

VS 2008 Multi Thread Overload Resolution Failed

Mar 10, 2010

VS 2008 Multi Thread Overload resolution failed

View 10 Replies

VS 2008 [Multi-threading] How To Run This Code In A Separate Thread

Apr 21, 2009

I am creating an IDE for a game script with similar functionality as the Visual Studio IDE (at least, some of it). The game script consist of code that looks visually a bit like C code. It uses braces to define the start and end of a 'class' and uses nested braces to define the start and end of an 'event' in a class.

What I want finally is to have two Comboboxes above the text editor, one that lists each Class and the other listing each Event. The comboboxes should also show the Class and Event that the caret is currently in, just like in Visual Studio.I have attached an example of such a script (you can open it with Notepad).However, here is a short example where you can also see how I "defined" classes and events:

class1
{
event1
{

[code]....

As you can see, the classes are the 'names' of each block of code, defined by matching braces { }. The events are the names of each nested block of code, also defined by matching braces { } but inside a class. There is only one level of nesting.As you can also see, the layout can follow the standard C-style layout, or a slightly different layout (using the opening brace on the same line as the class/event name), or even a completely chaotic mess. As long as the braces match correctly, the code is valid.So in short, the large blocks are classes, while the nested blocks are events.

What I want to do, is parse an entire script, and store all the Classes (and eventually, also all the Events, but let's forget about them for now). I want to store the Class name, start position (defined as the start index of the name), end position (defined as the index of the closing brace) and the full text (defined as the text between start and end position, so including the name).

vb.net
Public Class clsClass
Private _Name As String

[code]....

The code works basically by finding every first opening brace (the opening brace of each CLASS, not event), and then loops through the class (using a brace counter to keep track of the nested braces) until it found the last closing brace. It then stores the name, start, end and fulltext in a new clsClass and adds it to the list to return.

View 3 Replies

Multi-thread Accessing The UI Thread Control, No Exception Thow?

Oct 11, 2011

As we know, one STA UI thread creats the controls only canbe accessed in the UI thread in Winform application. And we need to call control.invoke or begininvoke to run the code in the background thread.

Yes, below code in VB.Net , VS 2010 Winform project can throw the exception "Cross-thread operation not valid: Control 'Form1' accessed from a thread other than the thread it was created on."

[Code]...

View 9 Replies

Passing Data From One Running Thread To Another Running Thread?

Jan 14, 2011

I have on timer thread that needs to pass every time a different data to another running thread to make the calculations.

View 5 Replies

Loops And Regex - Include Multi-part File Detection?

Jun 17, 2010

I have a small program that is used for managing media libraries for some software front-ends. Basically, it reads in the files of a directory and, one-by-one, creates a new directory by each file name and moves the respective file into the new folder.Everything works well, but I am wanting to extend the functionality a bit.I would like to include multi-part file detection so that titles that are named as such:

movie-disc1.avi

movie-disc2.avi

would be moved into a single folder named movie. The files would not be renamed.As of now, I simply have an option that will allow the user to ignore certain files that match a regex pattern:

Dim m As Match = Regex.Match(IO.Path.GetFileName(filePath), "(.*?)([ _.-]*(?:cd|dvd|p(?:ar)?t|dis[ck]|d)[ _.-]*[0-9]+)(.*?)(.[^.]+)$")

View 1 Replies

VS 2008 Running A Thread In The Background?

Jun 9, 2009

Im trying to run a thread in the background. The sub would take a string as as input and the text to speech object would read the string.

1st problem is: How do I pass my value strIn to my sub SpeekEventWorker when im calling it like this

[code]...

View 10 Replies

[2008] Running In Main Thread?

Mar 2, 2009

Well basically I have something being done in a new thread and I would like to start a sub not in the same thread, but in the main thread. How do I do that?

View 3 Replies

VS 2008 Know When A Thread Is Completed Running It's Task?

Nov 6, 2010

How would i know when a thread is completed running it's task? I mean in background worker it has a completed event, but can i make something similar to that?

View 7 Replies

2008 - Check If A Certain Process Is NOT Running

Jan 24, 2009

I need to check if a certain process is NOT running. So until now i've been using a loop and if it doesn't find the process then it alerts me (with MsgBox) however now i realized that the for each loops looks on each process and if that process isn't the one im looking for its gonna give me an alert, that it was not running even when the next process could be the one i need to know about. [Code]

View 6 Replies

VS 2008 : Check That The Process Is Already Running?

Oct 12, 2009

I have a function key defined to load Windows calculator using:

Process.Start("calc.exe")

How do I check that the process is already running?

View 3 Replies

Office Automation :: Excel Process Continues Running (.Net Framework 3.5, VS.Net 2008, .Net 2008)

Apr 15, 2011

I'm calling the following method from a button click event to export a datatable to excel. After the export is completed, the excel application object is quit, released and assigned to nothing. But in reality it's not getting released and stays active unless the entire application is closed. So every time the button is clicked for export, a new excel application object keeps on running. The problem doesn't occur if two of the lines from the method below are not used. But I can't omit them as they are really needed. Check the * marked lines.

Code:
''' <summary>
''' Exports data from a datatable to excel.
''' </summary>

[code]....

View 1 Replies

VS 2008 - Process.waitforexit Is Hang Up When Running On Windows 2008

Sep 21, 2009

I use the 'Process' object to run EXE from my application. It works fine when it run on Windows XP and 2003. When it run on Windows server 2008, it hangs up: the process is stayed in background but never returns. It never goes ahead for the next commands. What could be the reason? [Code]

View 6 Replies

VS 2008 Process.waitforexit Is Hang Up When Running On Windows 2008?

Feb 4, 2012

I use the 'Process' object to run EXE from my application. It works fine when it run on Windows XP and 2003. When it run on Windows server 2008, it hangs up: the process is stayed in background but never returns. It never goes ahead for the next commands

View 2 Replies

VS 2008 Remote Detection Of Running Process?

May 7, 2009

OK, I was talking to someone at work and he came up with this idea that I should make a program that notifies me if a certain process is running.

There is a process on another PC that I want to check if it is running or not because due to extreme memory usage issues of the program, we only run one instance of it at a time.

What I want to do is make a program so that I can know if that process is running without having to get up and check. But I'm not sure where to start exactly.

My friend said maybe use the WMI. With the WMI will I need a host/client program, the host detecting status of the process on the other machine which sends a message to the client program on my PC telling me if it is running or not.

I've never done something like this before so all I'm asking for is some direction into what technologies I need to be using and maybe some guides on how to go about this as I have no clue where to start.

View 10 Replies

VS 2008 Thread Performance - Processor Not Running On Full Speed With The First Code?

Mar 10, 2011

Not really asking for code, but I'm interested in knowing the basics of "thread performance".For example, you try to copy a bitmap in a pixel by pixel operation. (Is slow, but it is a nice example)

[code]...

This is, of course, very buggy and causes a lot of violation errors etc. But that doesn't matter right now. How come the multi-threading way is so much faster than the regular routine? Is the processor not running on full speed with the first code, and is it working harder on the second?I find it weird to see this type of "threading performance increase", as if every single thread gets their own piece of processor speed allocated like it is a new process

View 12 Replies

VS 2008 Checking If Process Running On A Timer Not Working?

Nov 29, 2009

This is my

Private Sub Timer1_Timer()
Dim procs() As Process = Process.GetProcessesByName("samp-server")
If procs.Length > 0 Then

[Code]....

Its supposed to start the samp-server.exe if it closes but it doesn't?

View 6 Replies

Thread Safety, Application Design - Console App That Loops Through A Queue And Processes Each Record In A Datatable?

Jul 25, 2011

I have a Console app that loops through a queue and processes each record in a datatable. Each process is long and time-consuming (connecting to a remote website, downloading files, reading them and adding them to the database). I'm trying to implement threading for speed's sake but am having cross-threading issues. (The job takes 8 hours or so to run and the cross-threading doesn't start happening until a couple hours into the run.)I'm trying to figure out how to make my code thread safe. I don't update or rely on any non-local variables, and I don't need to return anything. I've tried locking which works but defeats the purpose of the multiple threads. What other things should I be looking for?

[code]...

View 1 Replies

Write A Little Program That Checks For A Process - ,,Cheat Engine" Is Running The Process Is Getting Killed?

Oct 13, 2009

i am trying to write a little program that checks for a process and kills is.here is the

Dim p As Process = Process.GetProcessesByName("Cheat Engine")(0)
p.CloseMainWindow()[code]...

My problem is it�s woking ,yes if the programm ,,Cheat Engine" is running the process is getting killed.But if the program is not running my program crashes.

View 5 Replies

Loops Each Time Click The Same Button?

Jan 5, 2009

what im trying to do is each time they hit the button it keeps the sums and all that from the last button click. so say you click the button once and it takes 45 and subtracts it by 5 you get 40 now they click it again and i wont it to use 40 insted of 45 how would i do that?

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved