Click here to Skip to main content
15,887,027 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: SQL UPDATE Stored Procedure in VB Not Working Pin
tommyfs24-May-07 13:18
tommyfs24-May-07 13:18 
Questionhow to find out rowindex in datagrid's drop-event? Pin
Smithers-Jones21-May-07 4:08
Smithers-Jones21-May-07 4:08 
AnswerRe: how to find out rowindex in datagrid's drop-event? Pin
Smithers-Jones21-May-07 21:58
Smithers-Jones21-May-07 21:58 
QuestionDate Format question Pin
No-e21-May-07 3:42
No-e21-May-07 3:42 
AnswerRe: Date Format question Pin
No-e21-May-07 4:02
No-e21-May-07 4:02 
Questionwats wrong in this Pin
balakpn21-May-07 3:42
balakpn21-May-07 3:42 
AnswerRe: wats wrong in this Pin
Dave Kreskowiak21-May-07 4:21
mveDave Kreskowiak21-May-07 4:21 
GeneralRe: wats wrong in this Pin
balakpn22-May-07 1:43
balakpn22-May-07 1:43 
this is the sample code from which i tried.its from a codeproject article
now tell me the way in which i can use parameterizedthreadstart
there param12 is object of parameterizedthreadstart


ParameterizedThreadStart pts = new ParameterizedThreadStart(MyParameterizedMethod);
Thread t = new Thread(pts);
double d = 123d;

ArrayList al = new ArrayList();
al.Add("Hei");
al.Add(2);
t.Start(al);

WaitCallback myCallback = new WaitCallback(MyParameterizedMethod);
if (!ThreadPool.QueueUserWorkItem(myCallback, al))
{
throw new Exception("Not able to queue work item");
}






private void MyParameterizedMethod(Object o)
{
ArrayList al = (ArrayList) o;
String param1 = (String) al[0];
int param2 = (int)al[1];

}

with regards
Balagurunathan.B

GeneralRe: wats wrong in this Pin
Dave Kreskowiak22-May-07 12:08
mveDave Kreskowiak22-May-07 12:08 
GeneralRe: wats wrong in this Pin
balakpn22-May-07 18:29
balakpn22-May-07 18:29 
GeneralRe: wats wrong in this Pin
Dave Kreskowiak23-May-07 15:34
mveDave Kreskowiak23-May-07 15:34 
QuestionHow can I prevent DataGridView validation events when exiting the application? Pin
Marcus J. Smith21-May-07 3:38
professionalMarcus J. Smith21-May-07 3:38 
AnswerRe: How can I prevent DataGridView validation events when exiting the application? Pin
Dave Kreskowiak21-May-07 10:13
mveDave Kreskowiak21-May-07 10:13 
GeneralRe: How can I prevent DataGridView validation events when exiting the application? Pin
Marcus J. Smith21-May-07 10:38
professionalMarcus J. Smith21-May-07 10:38 
GeneralRe: How can I prevent DataGridView validation events when exiting the application? Pin
hairy_hats14-Jul-09 1:01
hairy_hats14-Jul-09 1:01 
Questionget hte data from the database Pin
sanapathi21-May-07 3:35
sanapathi21-May-07 3:35 
QuestionUpdate Panel Login control problem Pin
BobsAfro21-May-07 3:23
BobsAfro21-May-07 3:23 
AnswerRe: Update Panel Login control problem Pin
Dave Kreskowiak21-May-07 3:42
mveDave Kreskowiak21-May-07 3:42 
GeneralRe: Update Panel Login control problem Pin
BobsAfro21-May-07 3:44
BobsAfro21-May-07 3:44 
Questionhow can i protect a excel sheet Pin
koolprasad200321-May-07 3:10
professionalkoolprasad200321-May-07 3:10 
AnswerRe: how can i protect a excel sheet Pin
Dave Kreskowiak21-May-07 3:40
mveDave Kreskowiak21-May-07 3:40 
GeneralRe: how can i protect a excel sheet Pin
koolprasad200321-May-07 23:06
professionalkoolprasad200321-May-07 23:06 
Questionproblem with Optional default data Pin
Narenge21-May-07 2:31
Narenge21-May-07 2:31 
AnswerRe: problem with Optional default data Pin
kubben21-May-07 2:35
kubben21-May-07 2:35 
AnswerRe: problem with Optional default data Pin
Sonia Gupta21-May-07 2:37
Sonia Gupta21-May-07 2:37 

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.