Tagged Questions
-2
votes
1answer
65 views
how can i do Multithreading [closed]
how can i do both things together in my program. it works like first speak then show message and i want to do both things together when it speak simultaneous message box displays. what should i do ? ...
0
votes
3answers
47 views
Is it possible/a good idea to dispose of a thread in its catch and re instantiate itself in the finally block?
Background: I have multithreaded application that has one main UI thread and two threads that are super loops that run for the duration of the program. The worker threads basically read in some ...
0
votes
1answer
51 views
Is it intelligent to redline the CPU through Task.Run
I know its bad for the Performance of my application to create too many threads (threadstarvation) but I'm not sure how this translates to the Async/Await functionalities. I understand Task.Run() uses ...
1
vote
1answer
35 views
Safe Call From a thread
I have my main form, where I can call a NuevoPago which is a form and this new form has these Global vars:
Public Class NuevoPago
Dim Usuario As Usuario = Main.ListView1.SelectedItems(0).Tag
But ...
0
votes
1answer
32 views
How to avoid deadlock : id taking same thread instead of new one
I have 20 records which I have send it through thread. Each record has to take new thread
I have application_number and Queue_Id . The application number is same for all the records and Queue_Id is ...
0
votes
1answer
43 views
How to check whether thread is alive by using thread name in vb.net
I have a thread name .By using that thread name how i may need to find whether the thread is alive or not.
In Thread Name I have a combination of app_num and Id which helps to refer me when new thread ...
0
votes
1answer
55 views
Suitable pattern for updating a progress bar from multiple threads (using TPL?)
I've been busy updating my brain with the TPL because I intend on using it for my new application (which uses .Net Framework 4.0). However I have some doubts that someone might clarify for me. ...
0
votes
0answers
47 views
UI Thread unresponsive while working threads continue to work?
I have an application that is running on a host PC (dated hardware) along side another Human Machine Interface. My application's main thread starts two worker threads. They are not backgroundworkers ...
2
votes
3answers
35 views
non blocking webrequests vb.net
I am making a program that must process about 5000 strings as quickly as possible. about 2000 of these strings must be translated via a webrequest to mymemory.translated.net. (see code below, JSON ...
-1
votes
1answer
36 views
is synclock in multithreading avoids deadlock
I have a multithreading program where I need to avoid deadlock. Is there any method to avoid deadlocks in multithreading?.
Thanks in Advance.
0
votes
1answer
14 views
VB.NET How to get the text of an Subitem in a Thread?
i programming something in vb.net.
It uses Thread's to do some work.
My Problem is now , that i have an Listview with some data in it and some of the Prodcedures need something from this Listview , ...
1
vote
2answers
34 views
Open a modal form from a background thread to block UI thread without also blocking background thread
Maybe this is a simple question and I just don't know the correct search terms to find the answer, but my Google-fu has failed me on this one.
My vb.net application has a background thread that ...
-3
votes
1answer
30 views
Accessing UI in Threading
In My applicaion i have grid and picturebox.I want to show the picture box when am loading a grid and some process.I am trying like this
Dim mRestoreThread as thread
Before LoadDataGrid Invoked ...
-1
votes
2answers
32 views
Cross-thread operation not valid even when control accessed in progress changed event
I am calling backgroundworker to do the task and changing the controls through ProgressChanged Event and it worked fine until I called the backgroundwoker from another backgroundworker. Now I am ...
0
votes
2answers
74 views
MultiThreading and Sockets/TCP [VB.NET]
I started learning about TCP/Sockets yesterday and decided to make a chatbox for a friend and I.
Unfortunately, i am having some difficulties with MultiThreading.
Whenever i am using it, i can no ...
0
votes
0answers
43 views
Random TimeOuts in vb.NET Thread Code (Task Factory)
I am working with a big application. It starts at the beggining of the form declaring and starting some threads:
Thread1 = New Thread(AddressOf Thread1Sub)
Thread1.Start()
Thread2= ...
0
votes
1answer
38 views
When is a valid opportunity to thread? vb.net
I've been looking into threading and the complications it could bring to your application. There are many instances in my application where the functions are a huge number of lines of code(500-1k+ ...
0
votes
0answers
38 views
Using SyncLock inside a property
I have a variable that is being used by multiple threads, so I am using SyncLock when getting and setting the variable. I am wondering if I can wrap the SyncLock inside a property, so that I don't ...
-1
votes
1answer
42 views
Multithread Windows Service [closed]
How and where do I multithread my code. I currently have a Windows service that collects events from the Windows System log. The service forwards collected events to a remote service. My code is in ...
0
votes
1answer
89 views
Trying to spawn a new thread in ASP.NET; no errors, no thread
I am trying to spawn a new thread from an ASP page written in VB.NET, on .NET 3.5.
The page allows a user to upload files and then processes the files into the database.
As the processing can take a ...
0
votes
0answers
34 views
How to get the changes reflected when I call a function using Threading Asp.net
I am Threading to Call a function and assign values to a Textbox in Asp.net. When I debug it is showing value, but in the Form it is not getting reflected.
Below is my code.
Protected Sub ...
0
votes
0answers
28 views
stop saving untill user responds modal popup
How do I pause the process of saving untill a user has respond from a modal popup? I know that the ajax extender toolkit has a confirmation extender, but the problem is that this method is used for 2 ...
0
votes
0answers
62 views
FileSystemWatcher - Reduce Multiple Event Raising (or Reduce Results of Multiple Events) in Visual Basic (VS 2012 V11)
I'm trying to reduce the number of events raised to one when the FileSystemWatcher changes (or at least display text in a textbox only once when an event is raised, by either removing the duplicate ...
0
votes
2answers
127 views
Update Text Box Properly when Cross-threading in Visual Basic (VS 2012 V11)
Here is my question in short: How do I use the BackGroundWorker (or InvokeRequired method) to make thread-safe calls to append text to a text box?
Here is my question in with much detail and ...
-1
votes
2answers
102 views
VB.NET - Timer not working properly with thread
I'm developing a small app that sends data to a microcontroller. Anyway, a part of it contains downloading data from a web server once in a second and forward that data to the microcontroller if the ...
0
votes
0answers
32 views
How do you change DataGridView properties and values with threads in vb.NET?
I have been beating my head against the wall for 2 weeks now, while trying to figure out a way to navigate through the rows of the DataGridView component with threads. I want to do this, because if ...
0
votes
1answer
44 views
Multithreading using VB.net Throws error
Am new to vb.net multithreading.
Currect me if i'm doing anything wrong.
What i'm trying to do :
user's needs to put the serial no's into textbox then program needs to pick the model and warranty ...
0
votes
2answers
34 views
Access single file in multiple threads
I am trying to write trace(text file) for my application having multiple threads. Want to know whether it is possible or not. My application is written in VB.Net.
Any help would be appreciated! TIA!
0
votes
1answer
25 views
Threading sub sending value
Hey all i have this being called:
Public Sub doStuff(ByVal what2Do As String)
Dim command As String = ""
If Trim(lanSent(1)) = "turnOffPC" Then
command = "r5"
ElseIf Trim(lanSent(1)) ...
1
vote
1answer
79 views
Blocking the UI thread while waiting for network activity
I am now maintaining a piece of software written in VB.net (.net 3.5) that communicates over the network with another software running elsewhere which I have no control over. I am not very familiar ...
0
votes
2answers
113 views
How to call multiple different methods simultaneously
I have some different methods that each import products from different sites.
If I execute these sequentially the entire process takes a lot of time, particularly when 1 method is running on a site ...
0
votes
1answer
71 views
Wait for threads to finish before carrying on
I have a number of threads that need running (about 160) creating files and then copying them to various places:
'Files is basically a list of strings
'which is passed to a function that creates a ...
-1
votes
1answer
70 views
.net multithreading: control a scanner on a separate thread [closed]
I've written a VB.NET application that acquires images from the scanner using Windows Image Acquisiton API. In my code, the function WIAItem.Transfer() is called and returns the image from the ...
0
votes
1answer
53 views
Windows console Bandwidth monitoring System
I am working on a Bandwidth monitoring system, i want it loop, displaying the amount of data being sent or received at a given instance, but the problem is that the system freezes when its processing, ...
0
votes
0answers
35 views
TPL Update UI Thread
I've been trying different approaches for the last few days on the best way to update the ui thread with work from a different task via events. Most of what I've seen requires Invoke, BeginInvoke or ...
0
votes
1answer
40 views
Cross threading exception avoided but GUI isn't updating
I have a thread which needs to update a Windows form. Using the code from here:
http://www.dreamincode.net/forums/blog/143/entry-2337-handling-the-dreaded-cross-thread-exception/
to avoid ...
0
votes
1answer
108 views
How to trigger WinForms button click from remote thread
I've got an application that I've developed in VB 2010. It consists of a series of Windows forms and a listener process which listens to input from a MIDI device (a keyboard etc). This listener ...
0
votes
2answers
75 views
Cross-thread operation invalid
i have a problem with a very simple code
Dim temperature As String = SerialPort1.ReadLine.ToString
If temperature.StartsWith("temp") Then
templab.Text = temperature.Substring(4, ...
-1
votes
1answer
232 views
Invoke or BeginInvoke cannot be called on a control until the window handle has been created
I am executing following code:
grid.Invoke(New MethodInvoker(AddressOf RefreshDataSource))
getting InvalidOperationException exception.
Message: Invoke or BeginInvoke cannot be called on a control ...
0
votes
0answers
53 views
vb.net multithreading (threading.sleep())
here is my code:
Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
Dim t2 As New Thread(AddressOf press)
t2.Start()
End Sub
...
0
votes
0answers
124 views
What's best for vb.net Winforms background worker process spanning all forms?
I have a WinForms application that is not MDI and will use various forms for different work that users will do in a wireless mode. I want to create a WiFi signal checker and give the user a visual ...
0
votes
0answers
55 views
Multithreading many web requests in VB.NET
Private Sub threadimportbtcUSD()
Do
Dim postReq As HttpWebRequest = DirectCast(WebRequest.Create("https://btc-e.com/api/2/btc_usd/depth"), HttpWebRequest)
Try
...
0
votes
1answer
57 views
.Net MVC, High availability byte buffer?
I’m looking for direction on an unusual project. I have this 1GB binary file that contains random bytes that gets refreshed every 24 hours. I have a MVC website that has several functions that need ...
1
vote
0answers
81 views
use callback to allow multiple connections to socket?
I am trying to create a VB.Net server program that has an external link to process data. The server will wait on port 7878 for a request to be made from a client. When the server receives a request ...
0
votes
0answers
48 views
displaying a processing gif when upload a file into a DataGridVeiw vb.net
I am programming vb.net winforms app to import a file and to place it in a DataGridView for the user to look at before it gets imported into a database.
It is taking about 50 seconds to import the ...
1
vote
2answers
94 views
Why do my tasks don't run parallel?
I put together a little test program to learn about multi threading in VB.net. After a lot of researching, trying and failing I got my program running, at least a bit.
Now it behaves oddly and I ...
2
votes
1answer
147 views
VB.Net Multi-Threaded File Download
I have a winform application written in VB.Net that needs to download XML files containing PubMed (medical journals) article data. I request data for 500 articles at a time because I need to stream ...
0
votes
1answer
74 views
Painting from a separate thread?
I'm currently working on a game that uses the graphics class to create all the pic's in the game, i'm also trying to paint the pic's from a separate thread to stop my main thread from freezing. But ...
0
votes
0answers
47 views
How to control a worker thread in VB.NET?
I have a worker thread that is passing data to and from a serial device. I use a ConcurrentQueue(Of T) to pass it data I want sent to my data device. I need to be able to pause and resume data ...
0
votes
2answers
35 views
Child Form Object References Returning Incorrect Values
Problem
So I have a parent form that uses a child form to contain various settings to be used. The settings form has things such as datagridviews, textboxes, listviews, etc. The parent form is ...


