Click here to Skip to main content
15,892,005 members
Home / Discussions / C#
   

C#

 
GeneralRe: Read lines in PDF file Pin
abbd19-Feb-09 1:22
abbd19-Feb-09 1:22 
GeneralRe: Read lines in PDF file Pin
Pete O'Hanlon19-Feb-09 1:47
mvePete O'Hanlon19-Feb-09 1:47 
QuestionWeather Forecast webservice Pin
ranandbe19-Feb-09 0:11
ranandbe19-Feb-09 0:11 
AnswerRe: Weather Forecast webservice Pin
Eddy Vluggen19-Feb-09 0:43
professionalEddy Vluggen19-Feb-09 0:43 
QuestionVisual Studio Setup project !!! Is it just another kind of Wizard? Pin
Nadia Monalisa18-Feb-09 23:16
Nadia Monalisa18-Feb-09 23:16 
AnswerRe: Visual Studio Setup project !!! Is it just another kind of Wizard? Pin
Calin Tatar18-Feb-09 23:29
Calin Tatar18-Feb-09 23:29 
AnswerRe: Visual Studio Setup project !!! Is it just another kind of Wizard? Pin
Nuri Ismail18-Feb-09 23:32
Nuri Ismail18-Feb-09 23:32 
Questionthread splach screen !!! Pin
mrcooll18-Feb-09 23:03
mrcooll18-Feb-09 23:03 
hello all.
m working on windows application uses web services to insert and retreave data
what m trying to do when the application call web service a thread splash screen appear , i did it fine but sometime i get unhandeled exception : "Thread was being aborted" how can i overcome this problime ?
thanks in advance
My Code:

Users user = new Users();//web service
LoadingIndicator.ShowLoading();
int employeeId = user.Login(userName, passWord);
LoadingIndicator.HideLoading();




class LoadingIndicator
{
static Thread LoadingThread;
public static void ShowLoading()
{
LoadingThread = new Thread(new ThreadStart(DoShowSplash));
LoadingThread.Start();
}
public static void HideLoading()
{
try
{
if (LoadingThread.IsAlive)
LoadingThread.Abort();
}
catch (ThreadAbortException ex)
{
Thread.ResetAbort();
}

}
private static void DoShowSplash()
{
frmLoading frm = new frmLoading();
frm.ShowDialog();
}
}
QuestionAuto Login Pin
Member 299896918-Feb-09 21:39
Member 299896918-Feb-09 21:39 
AnswerRe: Auto Login Pin
musefan18-Feb-09 22:18
musefan18-Feb-09 22:18 
GeneralRe: Auto Login Pin
Member 299896918-Feb-09 22:27
Member 299896918-Feb-09 22:27 
QuestionSocket, Remoting or WCF Pin
yesu prakash18-Feb-09 21:02
yesu prakash18-Feb-09 21:02 
AnswerRe: Socket, Remoting or WCF Pin
Expert Coming18-Feb-09 21:38
Expert Coming18-Feb-09 21:38 
Questioncopy row of one datagrid to another in C# Pin
shafiullah12318-Feb-09 20:30
shafiullah12318-Feb-09 20:30 
AnswerRe: copy row of one datagrid to another in C# Pin
Mycroft Holmes18-Feb-09 21:25
professionalMycroft Holmes18-Feb-09 21:25 
GeneralRe: copy row of one datagrid to another in C# Pin
Ramkithepower19-Feb-09 1:42
Ramkithepower19-Feb-09 1:42 
QuestionProblem with XMLDocument class Pin
Member 607418-Feb-09 19:59
Member 607418-Feb-09 19:59 
AnswerRe: Problem with XMLDocument class Pin
PIEBALDconsult19-Feb-09 7:38
mvePIEBALDconsult19-Feb-09 7:38 
GeneralRe: Problem with XMLDocument class [modified] Pin
Member 607422-Feb-09 23:26
Member 607422-Feb-09 23:26 
GeneralRe: Problem with XMLDocument class Pin
PIEBALDconsult23-Feb-09 3:48
mvePIEBALDconsult23-Feb-09 3:48 
QuestionRe: Problem with XMLDocument class Pin
Member 607423-Feb-09 18:50
Member 607423-Feb-09 18:50 
Questioni'm trying on accessing the usb port Pin
prasadbuddhika18-Feb-09 19:47
prasadbuddhika18-Feb-09 19:47 
AnswerRe: i'm trying on accessing the usb port Pin
Mycroft Holmes18-Feb-09 21:28
professionalMycroft Holmes18-Feb-09 21:28 
AnswerRe: i'm trying on accessing the usb port Pin
Giorgi Dalakishvili18-Feb-09 21:33
mentorGiorgi Dalakishvili18-Feb-09 21:33 
AnswerRe: i'm trying on accessing the usb port Pin
Dave Kreskowiak19-Feb-09 4:42
mveDave Kreskowiak19-Feb-09 4:42 

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.