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

C#

 
GeneralRe: Windows Service - Service Automatically stops when error is thrown Pin
Joe Brislin14-Apr-10 11:44
Joe Brislin14-Apr-10 11:44 
AnswerRe: Windows Service - Service Automatically stops when error is thrown Pin
Michel Godfroid14-Apr-10 12:56
Michel Godfroid14-Apr-10 12:56 
GeneralRe: Windows Service - Service Automatically stops when error is thrown Pin
PIEBALDconsult14-Apr-10 13:03
mvePIEBALDconsult14-Apr-10 13:03 
GeneralRe: Windows Service - Service Automatically stops when error is thrown Pin
Michel Godfroid14-Apr-10 13:10
Michel Godfroid14-Apr-10 13:10 
GeneralRe: Windows Service - Service Automatically stops when error is thrown Pin
Joe Brislin15-Apr-10 4:16
Joe Brislin15-Apr-10 4:16 
GeneralRe: Windows Service - Service Automatically stops when error is thrown Pin
PIEBALDconsult15-Apr-10 4:58
mvePIEBALDconsult15-Apr-10 4:58 
QuestionHelp with a Log-in Screen Pin
Geodude48714-Apr-10 7:24
Geodude48714-Apr-10 7:24 
AnswerRe: Help with a Log-in Screen Pin
William Winner14-Apr-10 8:19
William Winner14-Apr-10 8:19 
why not just add an event to the login form. Call it something like "UserLoggedInSuccessfully".

C#
public class MyEventArgs: EventArgs
{
  private string _UserName;

  public MyEventArgs(string UserName)
  {
    _UserName = UserName;
  }

  public string UserName()
  {
    return _UserName;
  }
}

public delegate void myEventHandler(object sender, MyEventArgs e)

public class LoginForm: Form
{
  public Event myEventHandler LoginSuccessful;

  ...
}


Then, when the login is successful you call:
C#
LoginSuccessful(this, new MyEventArgs(UserName));


and hook it on the main form. When the event is raised on the main form, you can check the username to see who it is.
AnswerRe: Help with a Log-in Screen Pin
OriginalGriff14-Apr-10 8:20
mveOriginalGriff14-Apr-10 8:20 
GeneralRe: Help with a Log-in Screen Pin
Geodude48715-Apr-10 5:00
Geodude48715-Apr-10 5:00 
GeneralRe: Help with a Log-in Screen Pin
OriginalGriff15-Apr-10 5:37
mveOriginalGriff15-Apr-10 5:37 
GeneralRe: Help with a Log-in Screen Pin
Geodude48715-Apr-10 8:06
Geodude48715-Apr-10 8:06 
QuestionStrange problems with inherited user controls when using DILImport Pin
chrisclarke1114-Apr-10 6:49
chrisclarke1114-Apr-10 6:49 
AnswerRe: Strange problems with inherited user controls when using DILImport Pin
kevinnicol14-Apr-10 8:47
kevinnicol14-Apr-10 8:47 
GeneralRe: Strange problems with inherited user controls when using DILImport Pin
chrisclarke1114-Apr-10 21:27
chrisclarke1114-Apr-10 21:27 
QuestionCSV file based on timer event Pin
mprice21414-Apr-10 6:15
mprice21414-Apr-10 6:15 
AnswerRe: CSV file based on timer event Pin
Ravi Bhavnani14-Apr-10 6:30
professionalRavi Bhavnani14-Apr-10 6:30 
GeneralRe: CSV file based on timer event Pin
mprice21414-Apr-10 7:36
mprice21414-Apr-10 7:36 
AnswerRe: CSV file based on timer event Pin
Ravi Bhavnani14-Apr-10 8:26
professionalRavi Bhavnani14-Apr-10 8:26 
GeneralRe: CSV file based on timer event Pin
mprice21414-Apr-10 8:38
mprice21414-Apr-10 8:38 
GeneralRe: CSV file based on timer event Pin
Ravi Bhavnani14-Apr-10 8:47
professionalRavi Bhavnani14-Apr-10 8:47 
GeneralRe: CSV file based on timer event Pin
Luc Pattyn14-Apr-10 8:53
sitebuilderLuc Pattyn14-Apr-10 8:53 
GeneralRe: CSV file based on timer event Pin
mprice21414-Apr-10 9:08
mprice21414-Apr-10 9:08 
GeneralRe: CSV file based on timer event Pin
Ravi Bhavnani14-Apr-10 9:30
professionalRavi Bhavnani14-Apr-10 9:30 
GeneralRe: CSV file based on timer event Pin
Ravi Bhavnani14-Apr-10 9:29
professionalRavi Bhavnani14-Apr-10 9:29 

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.