Click here to Skip to main content
15,911,789 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Windows XP and Vista Compatibility Using VB.NET & SQL Server Express Pin
DigiOz Multimedia13-Nov-07 13:13
DigiOz Multimedia13-Nov-07 13:13 
GeneralRe: Windows XP and Vista Compatibility Using VB.NET & SQL Server Express Pin
AAGTHosting13-Nov-07 13:17
AAGTHosting13-Nov-07 13:17 
QuestionProblem reading data in text file into a listbox when program loads Pin
SilentCodingOne13-Nov-07 6:21
SilentCodingOne13-Nov-07 6:21 
AnswerRe: Problem reading data in text file into a listbox when program loads Pin
C1AllenS13-Nov-07 6:52
C1AllenS13-Nov-07 6:52 
GeneralRe: Problem reading data in text file into a listbox when program loads Pin
SilentCodingOne13-Nov-07 6:58
SilentCodingOne13-Nov-07 6:58 
GeneralRe: Problem reading data in text file into a listbox when program loads Pin
C1AllenS13-Nov-07 7:48
C1AllenS13-Nov-07 7:48 
GeneralRe: Problem reading data in text file into a listbox when program loads Pin
SilentCodingOne13-Nov-07 10:02
SilentCodingOne13-Nov-07 10:02 
Questionpassing more than 1 parameter in thread Pin
_tasleem13-Nov-07 6:06
_tasleem13-Nov-07 6:06 
hi,i have made an application in C# and vb.net,it working fine in C#, now when converting for C# to vb.net there is situation in which i have to call thread with 2 parameters, in C# i have used anyomous method here is code of that
ThreadStart st = delegate { ParseURL(strURL, this); };<br />
                    Thread th = new Thread(new ThreadStart(st));<br />
                    th.Start();

i am trying to convert that code in vb.net but it did not work
dim st as ThreadStart = delegate( ParseURL(strURL, Me))
Dim th As New Thread(New ThreadStart(AddressOf ParseURL))
th.start()
then i used but i accept only one parameter not 2 parameters.
<br />
Dim th As New Thread(New ParameterizedThreadStart(AddressOf ParseURL))<br />
th.IsBackground = True<br />
th.Start(strURL)<br />

plz tell me how to pass 2 parameters to thread in vb.net


Regards.
Tasleem Arif

AnswerRe: passing more than 1 parameter in thread Pin
Guffa13-Nov-07 6:26
Guffa13-Nov-07 6:26 
QuestionStart up module for VB.NET Windows Application?? Pin
barney_197213-Nov-07 5:25
barney_197213-Nov-07 5:25 
AnswerRe: Start up module for VB.NET Windows Application?? Pin
AliAmjad13-Nov-07 5:30
AliAmjad13-Nov-07 5:30 
GeneralRe: Start up module for VB.NET Windows Application?? Pin
barney_197213-Nov-07 5:56
barney_197213-Nov-07 5:56 
GeneralRe: Start up module for VB.NET Windows Application?? Pin
AliAmjad13-Nov-07 8:06
AliAmjad13-Nov-07 8:06 
GeneralRe: Start up module for VB.NET Windows Application?? Pin
barney_197213-Nov-07 21:51
barney_197213-Nov-07 21:51 
AnswerRe: Start up module for VB.NET Windows Application?? Pin
Ocean4713-Nov-07 7:43
Ocean4713-Nov-07 7:43 
GeneralRe: Start up module for VB.NET Windows Application?? Pin
barney_197213-Nov-07 21:46
barney_197213-Nov-07 21:46 
QuestionExecuting the content of a String Pin
JosBerb13-Nov-07 5:08
JosBerb13-Nov-07 5:08 
AnswerRe: Executing the content of a String Pin
AliAmjad13-Nov-07 5:37
AliAmjad13-Nov-07 5:37 
GeneralRe: Executing the content of a String Pin
JosBerb14-Nov-07 0:11
JosBerb14-Nov-07 0:11 
AnswerRe: Executing the content of a String Pin
nlarson1113-Nov-07 16:37
nlarson1113-Nov-07 16:37 
GeneralRe: Executing the content of a String Pin
JosBerb14-Nov-07 0:19
JosBerb14-Nov-07 0:19 
QuestionEncryption Pin
mpavas13-Nov-07 3:53
mpavas13-Nov-07 3:53 
AnswerRe: Encryption Pin
AliAmjad13-Nov-07 5:39
AliAmjad13-Nov-07 5:39 
AnswerRe: Encryption Pin
Ocean4713-Nov-07 7:13
Ocean4713-Nov-07 7:13 
GeneralRe: Encryption Pin
mpavas13-Nov-07 19:20
mpavas13-Nov-07 19:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.