Click here to Skip to main content
15,895,283 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionHow to create a taskbar in mdiform.. just like windows in vb.net code Pin
chandru4uall6-Jan-10 23:21
chandru4uall6-Jan-10 23:21 
Questionset default icon in windows app Pin
vikash_singh6-Jan-10 5:55
vikash_singh6-Jan-10 5:55 
AnswerRe: set default icon in windows app Pin
Dave Kreskowiak6-Jan-10 8:05
mveDave Kreskowiak6-Jan-10 8:05 
QuestionLoading NUnit tests into VS for use with the built in Unit test tools Pin
Ray Cassick5-Jan-10 15:49
Ray Cassick5-Jan-10 15:49 
AnswerRe: Loading NUnit tests into VS for use with the built in Unit test tools Pin
Abhinav S5-Jan-10 20:52
Abhinav S5-Jan-10 20:52 
AnswerRe: Loading NUnit tests into VS for use with the built in Unit test tools Pin
Kevin McFarlane6-Jan-10 5:29
Kevin McFarlane6-Jan-10 5:29 
GeneralRe: Loading NUnit tests into VS for use with the built in Unit test tools Pin
Ray Cassick6-Jan-10 5:44
Ray Cassick6-Jan-10 5:44 
QuestionDownloadStringAsync (infinite loop in Release only) Pin
T21024-Jan-10 23:43
T21024-Jan-10 23:43 
Can someone tell me why there is an infinite loop below only in release mode? If I add a printf in the while loop, then the infinite loop disappears.

for (long i=1; i<(signed)Expiry_URLs.size(); i++)
DownloadStringInBackground2(gcnew System::String(Expiry_URLs[i].c_str()));
Process_Straddle_View(T, G_OPT, Error_Code); //ASSUMES THAT NO OTHER DOWNLOAD FINISHED BEFORE THIS RUNS
while (!!G_OPT.Running);

void DownloadStringCallback2( System::Object^ sender, System::Net::DownloadStringCompletedEventArgs^ e ) {
// If the request was not canceled and did not throw
// an exception, display the resource.
--G_OPT.Running;
if ( !e->Cancelled && e->Error == nullptr ) {
System::String^ textString = dynamic_cast<system::string^>(e->Result);
System::Console::WriteLine( textString );
}
}

void DownloadStringInBackground2( System::String^ address ) {
++G_OPT.Running;
System::Net::WebClient^ client = gcnew System::Net::WebClient;
System::Uri ^uri = gcnew System::Uri(address);

// Specify that the DownloadStringCallback2 method gets called
// when the download completes.
client->DownloadStringCompleted += gcnew System::Net::DownloadStringCompletedEventHandler( DownloadStringCallback2 );
client->DownloadStringAsync( uri );
}
AnswerRe: DownloadStringAsync (infinite loop in Release only) Pin
Dimitri Witkowski5-Jan-10 3:41
Dimitri Witkowski5-Jan-10 3:41 
QuestionA question about windows MUI Pin
coderormnger4-Jan-10 21:31
coderormnger4-Jan-10 21:31 
AnswerRe: A question about windows MUI Pin
john_masen7-Jan-10 1:43
john_masen7-Jan-10 1:43 
QuestionHow to implement gmail like video chat in asp.net. Pin
naresh yadav y3-Jan-10 21:49
naresh yadav y3-Jan-10 21:49 
AnswerRe: How to implement gmail like video chat in asp.net. Pin
Ian McCaul4-Jan-10 3:19
Ian McCaul4-Jan-10 3:19 
GeneralRe: How to implement gmail like video chat in asp.net. Pin
naresh yadav y5-Jan-10 1:29
naresh yadav y5-Jan-10 1:29 
Questiondoes anyone know how 3D MAX STUDIO IS MADE Pin
gulamnabi shaikh3-Jan-10 20:23
gulamnabi shaikh3-Jan-10 20:23 
AnswerRe: does anyone know how 3D MAX STUDIO IS MADE Pin
Dimitri Witkowski3-Jan-10 21:46
Dimitri Witkowski3-Jan-10 21:46 
AnswerRe: does anyone know how 3D MAX STUDIO IS MADE Pin
Pete O'Hanlon3-Jan-10 22:10
mvePete O'Hanlon3-Jan-10 22:10 
AnswerRe: does anyone know how 3D MAX STUDIO IS MADE Pin
darkelv6-Jan-10 3:09
darkelv6-Jan-10 3:09 
GeneralRe: does anyone know how 3D MAX STUDIO IS MADE Pin
Luc Pattyn6-Jan-10 3:43
sitebuilderLuc Pattyn6-Jan-10 3:43 
Question[Message Deleted] Pin
Xmen Real 1-Jan-10 5:03
professional Xmen Real 1-Jan-10 5:03 
AnswerRe: Is this Normal !? The mehod declaration Pin
DaveyM691-Jan-10 5:19
professionalDaveyM691-Jan-10 5:19 
GeneralRe: Is this Normal !? The mehod declaration Pin
Xmen Real 1-Jan-10 5:56
professional Xmen Real 1-Jan-10 5:56 
GeneralRe: Is this Normal !? The mehod declaration Pin
itsravie4-Jan-10 3:05
itsravie4-Jan-10 3:05 
GeneralRe: Is this Normal !? The mehod declaration Pin
Xmen Real 4-Jan-10 3:08
professional Xmen Real 4-Jan-10 3:08 
GeneralRe: Is this Normal !? The mehod declaration Pin
Luc Pattyn4-Jan-10 4:02
sitebuilderLuc Pattyn4-Jan-10 4:02 

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.