Click here to Skip to main content
15,886,003 members
Home / Discussions / C#
   

C#

 
GeneralRe: SqlParameter problem Pin
Deian22-Apr-08 20:34
Deian22-Apr-08 20:34 
GeneralRe: SqlParameter problem Pin
Colin Angus Mackay22-Apr-08 22:10
Colin Angus Mackay22-Apr-08 22:10 
GeneralRe: SqlParameter problem Pin
Deian22-Apr-08 22:30
Deian22-Apr-08 22:30 
QuestionDataGridView... Deleting/finding a row from/in the underlying DataSource (DataTable) Ideas anyone? Pin
blakey40422-Apr-08 3:45
blakey40422-Apr-08 3:45 
AnswerRe: DataGridView... Deleting/finding a row from/in the underlying DataSource (DataTable) Ideas anyone? Pin
Blue_Boy22-Apr-08 4:40
Blue_Boy22-Apr-08 4:40 
GeneralRe: DataGridView... Deleting/finding a row from/in the underlying DataSource (DataTable) Ideas anyone? Pin
blakey40422-Apr-08 4:59
blakey40422-Apr-08 4:59 
GeneralSolution for anyone interested... Pin
blakey40422-Apr-08 5:06
blakey40422-Apr-08 5:06 
QuestionThreadStart issue Pin
merh22-Apr-08 3:45
merh22-Apr-08 3:45 
Hi, I need your help to clarify the following.I try to run a method with the parameters on own thread. But I get the error.

public class MyQueue
{
Queue myQueue = new Queue();
public void Enqueue(PacketHeader p, byte[] s)
{
Data data = new Data(p, s);
myQueue.Enqueue(data);
}
}
m_myQueue = new MyQueue();

Thread thread = new Thread(new ThreadStart(m_myQueue.Enqueue(????)));
thread.Start();

Thanks in advanced
Mehran
GeneralRe: ThreadStart issue Pin
Spacix One22-Apr-08 3:47
Spacix One22-Apr-08 3:47 
GeneralRe: ThreadStart issue Pin
merh22-Apr-08 3:56
merh22-Apr-08 3:56 
GeneralRe: ThreadStart issue Pin
Spacix One22-Apr-08 4:08
Spacix One22-Apr-08 4:08 
GeneralEvents in c# Pin
M4R22-Apr-08 3:25
M4R22-Apr-08 3:25 
GeneralRe: Events in c# Pin
Not Active22-Apr-08 3:33
mentorNot Active22-Apr-08 3:33 
JokeRe: Events in c# Pin
Guffa22-Apr-08 3:42
Guffa22-Apr-08 3:42 
GeneralRe: Events in c# Pin
Guffa22-Apr-08 3:35
Guffa22-Apr-08 3:35 
RantRe: Events in c# Pin
Spacix One22-Apr-08 3:45
Spacix One22-Apr-08 3:45 
GeneralRe: Events in c# Pin
CPallini22-Apr-08 5:45
mveCPallini22-Apr-08 5:45 
QuestionTyped datasets? Pin
RitchieRich22-Apr-08 3:01
RitchieRich22-Apr-08 3:01 
AnswerRe: Typed datasets? Pin
Not Active22-Apr-08 3:16
mentorNot Active22-Apr-08 3:16 
GeneralRe: Typed datasets? Pin
RitchieRich22-Apr-08 3:19
RitchieRich22-Apr-08 3:19 
GeneralRe: Typed datasets? Pin
Not Active22-Apr-08 3:32
mentorNot Active22-Apr-08 3:32 
GeneralRe: Typed datasets? Pin
RitchieRich22-Apr-08 3:51
RitchieRich22-Apr-08 3:51 
QuestionTransfering VBA code (Word 2003 macro) over to a C# application Pin
Nahual22-Apr-08 3:00
Nahual22-Apr-08 3:00 
GeneralRe: Transfering VBA code (Word 2003 macro) over to a C# application Pin
Spacix One22-Apr-08 3:42
Spacix One22-Apr-08 3:42 
GeneralRe: Transfering VBA code (Word 2003 macro) over to a C# application Pin
Nahual22-Apr-08 5:01
Nahual22-Apr-08 5:01 

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.