Click here to Skip to main content
15,887,333 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
AnswerDouble Post - Please Ignore Pin
Giorgi Dalakishvili9-May-08 5:26
mentorGiorgi Dalakishvili9-May-08 5:26 
QuestionGet names of all devices in system Pin
Xeqtr9-May-08 0:53
Xeqtr9-May-08 0:53 
QuestionCreateWaitableTimer error Pin
Member 33310598-May-08 19:47
Member 33310598-May-08 19:47 
AnswerRe: CreateWaitableTimer error Pin
Mark Salsbery9-May-08 7:53
Mark Salsbery9-May-08 7:53 
Questioncolor change Pin
rose1968-May-08 19:34
rose1968-May-08 19:34 
AnswerRe: color change Pin
Mark Salsbery9-May-08 8:03
Mark Salsbery9-May-08 8:03 
QuestionError Laoding Assembly Pin
kkchh8-May-08 5:09
kkchh8-May-08 5:09 
Questionsend Packet to all computer with synchronized Pin
dSolariuM6-May-08 19:50
dSolariuM6-May-08 19:50 
this code read a some data from file and send to all computer by repeat ring synchronized.
but this code dont work .becuase this code make Thread very much .
i think existed a way for this work but i don't know.
<br />
	do<br />
	{<br />
	Packet=gcnew TcpPacket;<br />
	Len=file->Read(Packet->data,0,4096);<br />
	Packet->Length=Len;<br />
	for (int ClientNumber=0;ClientNumber<SocketsCount;ClientNumber++)<br />
	{<br />
	Thread ^ThreadUdp =gcnew Thread(<br />
	gcnew ParameterizedThreadStart(this, <br />
	&SendBuffer));<br />
<br />
	info->Add(Packet);<br />
	info->Add(ClientNumber);<br />
<br />
	ThreadUdp->Start(info);			<br />
	}<br />
	}while(Len>0);<br />
<br />
<br />
///////////////////Send Buffer<br />
private:void SendBuffer(Object ^obj)<br />
{<br />
	ArrayList ^arr=(ArrayList ^)obj;<br />
	TcpPacket ^packet=(TcpPacket ^)arr[0];<br />
	int ClientNumber=(int ^)arr[1];<br />
	///////////////<br />
	SendPacket(packet,ClientNumber);<br />
}<br />


Every new thing you learn,Gives you a new personality.

QuestionHow to Convert Local time to UTC Time in WM5.0 Pin
Mohanraj D6-May-08 0:05
Mohanraj D6-May-08 0:05 
AnswerRe: How to Convert Local time to UTC Time in WM5.0 Pin
Rajesh R Subramanian6-May-08 0:24
professionalRajesh R Subramanian6-May-08 0:24 
Questioncursor position Pin
rose1965-May-08 19:37
rose1965-May-08 19:37 
AnswerRe: cursor position Pin
led mike6-May-08 4:23
led mike6-May-08 4:23 
GeneralRe: cursor position Pin
rose1966-May-08 19:01
rose1966-May-08 19:01 
GeneralRe: cursor position Pin
Mark Salsbery7-May-08 8:47
Mark Salsbery7-May-08 8:47 
QuestionArguments to command line Pin
Xeqtr4-May-08 12:44
Xeqtr4-May-08 12:44 
AnswerRe: Arguments to command line Pin
Luc Pattyn4-May-08 12:53
sitebuilderLuc Pattyn4-May-08 12:53 
GeneralRe: Arguments to command line Pin
Xeqtr4-May-08 13:30
Xeqtr4-May-08 13:30 
GeneralRe: Arguments to command line Pin
Luc Pattyn4-May-08 13:36
sitebuilderLuc Pattyn4-May-08 13:36 
GeneralRe: Arguments to command line [modified] Pin
Xeqtr4-May-08 14:13
Xeqtr4-May-08 14:13 
GeneralRe: Arguments to command line Pin
Luc Pattyn4-May-08 14:26
sitebuilderLuc Pattyn4-May-08 14:26 
QuestionHow to develop virtual environment online using C# with Managed DirectX? Pin
katelva3-May-08 8:20
katelva3-May-08 8:20 
AnswerRe: How to develop virtual environment online using C# with Managed DirectX? Pin
Mark Salsbery3-May-08 8:33
Mark Salsbery3-May-08 8:33 
GeneralRe: How to develop virtual environment online using C# with Managed DirectX? Pin
katelva3-May-08 8:43
katelva3-May-08 8:43 
AnswerRe: How to develop virtual environment online using C# with Managed DirectX? Pin
Christian Graus3-May-08 13:00
protectorChristian Graus3-May-08 13:00 
QuestionNeed help in working WMI Pin
Xeqtr2-May-08 9:43
Xeqtr2-May-08 9:43 

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.