Click here to Skip to main content
15,920,503 members
Home / Discussions / C#
   

C#

 
GeneralRe: Need Tips Pin
A H Khan4-Sep-06 3:27
A H Khan4-Sep-06 3:27 
QuestionTimer Callback Function in Windows Mobile Pin
Sri harini3-Sep-06 18:37
Sri harini3-Sep-06 18:37 
AnswerRe: Timer Callback Function in Windows Mobile Pin
Nader Elshehabi4-Sep-06 1:28
Nader Elshehabi4-Sep-06 1:28 
QuestionOutlook plugin problem Pin
Miguel Lopes3-Sep-06 14:03
Miguel Lopes3-Sep-06 14:03 
QuestionRemove Task from Task Bar Pin
ytubis3-Sep-06 12:12
ytubis3-Sep-06 12:12 
AnswerRe: Remove Task from Task Bar Pin
Nader Elshehabi3-Sep-06 12:36
Nader Elshehabi3-Sep-06 12:36 
QuestionUsing a C++ code in a c# program Pin
Ahmed Ismail Mohamed3-Sep-06 11:44
Ahmed Ismail Mohamed3-Sep-06 11:44 
AnswerRe: Using a C++ code in a c# program Pin
Nader Elshehabi3-Sep-06 12:09
Nader Elshehabi3-Sep-06 12:09 
QuestionaxWebBrowser and HTTPS Pin
Dima Filipiuk3-Sep-06 10:55
Dima Filipiuk3-Sep-06 10:55 
QuestionMinimize Event Pin
ytubis3-Sep-06 10:19
ytubis3-Sep-06 10:19 
AnswerRe: Minimize Event Pin
Colin Angus Mackay3-Sep-06 10:54
Colin Angus Mackay3-Sep-06 10:54 
AnswerRe: Minimize Event Pin
Mike Dimmick3-Sep-06 11:42
Mike Dimmick3-Sep-06 11:42 
QuestionObtain the file downloaded in a WebControl Pin
Fco. Javier Marin3-Sep-06 10:12
Fco. Javier Marin3-Sep-06 10:12 
AnswerRe: Obtain the file downloaded in a WebControl Pin
Ed.Poore3-Sep-06 10:50
Ed.Poore3-Sep-06 10:50 
Questionmulti name error Pin
abdelhameed813-Sep-06 9:39
abdelhameed813-Sep-06 9:39 
AnswerRe: multi name error Pin
Michael P Butler3-Sep-06 9:41
Michael P Butler3-Sep-06 9:41 
GeneralRe: multi name error Pin
abdelhameed813-Sep-06 9:43
abdelhameed813-Sep-06 9:43 
GeneralRe: multi name error Pin
Michael P Butler3-Sep-06 9:44
Michael P Butler3-Sep-06 9:44 
GeneralRe: multi name error Pin
abdelhameed813-Sep-06 9:45
abdelhameed813-Sep-06 9:45 
GeneralRe: multi name error Pin
Nader Elshehabi3-Sep-06 12:33
Nader Elshehabi3-Sep-06 12:33 
QuestionMinimize Programm not as task. Pin
ytubis3-Sep-06 8:31
ytubis3-Sep-06 8:31 
AnswerRe: Minimize Programm not as task. Pin
mav.northwind3-Sep-06 8:43
mav.northwind3-Sep-06 8:43 
AnswerRe: Minimize Programm not as task. Pin
Michael P Butler3-Sep-06 9:43
Michael P Butler3-Sep-06 9:43 
GeneralRe: Minimize Programm not as task. Pin
ytubis3-Sep-06 10:17
ytubis3-Sep-06 10:17 
QuestionThread, User closes app while thread running Pin
ewaldw3-Sep-06 7:52
ewaldw3-Sep-06 7:52 
Hi All. Can someone please help. I am using vs 2003 and SQL 2000. I have to insert about 50000 records into sql. I have tried to use a tread to do this, but when the user say closes the app while the second thread is still running, the app is closed, but the thread is still running and still inserting rows into the database. The code that i used to create a thread is as follows: Thread t1 = new Thread(new ThreadStart(ThreadLoadingData)); t1.Name = "ThreadLoadingData"; t1.Start(); I used the tread in the same class. In ThreadLoadingData i go to different classes for inserting the data. Thera are 5 tables that i must insert into, each one i use a different class. Now i also need to display a progress bar for this, how do i go about solving this problem
Thanks

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.