Click here to Skip to main content
15,896,606 members
Home / Discussions / C#
   

C#

 
GeneralRe: Having problems with getting current username in Windows... Pin
Colin Angus Mackay12-Nov-05 8:27
Colin Angus Mackay12-Nov-05 8:27 
GeneralRe: Having problems with getting current username in Windows... Pin
VampireLord12-Nov-05 8:43
VampireLord12-Nov-05 8:43 
GeneralRe: Having problems with getting current username in Windows... Pin
Colin Angus Mackay12-Nov-05 11:35
Colin Angus Mackay12-Nov-05 11:35 
AnswerRe: Having problems with getting current username in Windows... Pin
Michael P Butler12-Nov-05 8:57
Michael P Butler12-Nov-05 8:57 
GeneralRe: Having problems with getting current username in Windows... Pin
VampireLord12-Nov-05 23:44
VampireLord12-Nov-05 23:44 
QuestionRemoving empty attributes in xmldocument Pin
kerberos_prozac12-Nov-05 7:19
kerberos_prozac12-Nov-05 7:19 
AnswerRe: Removing empty attributes in xmldocument Pin
kerberos_prozac15-Nov-05 6:21
kerberos_prozac15-Nov-05 6:21 
Questionactive form name problems.. Pin
da vinci coder12-Nov-05 6:08
da vinci coder12-Nov-05 6:08 
ok my problem is..

when i enter this code inside the load event it returns the name of the form opened before this form..

private void editForm_Load(object sender, System.EventArgs e)
{
MessageBox.Show(ActiveForm.Name.ToString());
}

which returns AdminPanel ( which is the previous form ) but what i want is to see editForm ( which is the form i'm currently opening )

i know its because the form is loading and thats why the currently activeform is AdminPanel but i need to see editForm because:

i have a listbox which gets data from mssql and puts the data to listbox, and someforms of i use are inherited from editForm so while this editForm is loading i want to fetch the data from the unique table so i can see the datas in the listbox after the form is loaded

so my code should be something like this..

private void editForm_Load(object sender, System.EventArgs e)
{
Classes.editClass eC = new HalkDanisv03.Classes.editClass(); // create new object

if(ActiveForm.Name.ToString() == "editEmployee")
{
eC.getStaffUsername(xList,"employeeinfo"); // employeeinfo is the name of the tablename
}
else if(ActiveForm.Name.ToString() == "editManager")
{
eC.getStaffUsername(xList,"managerinfo"); //managerinfo is the name of the tablename
}

}

any help would be great..
thx guys..
good coding
AnswerRe: active form name problems.. Pin
turbochimp12-Nov-05 6:41
turbochimp12-Nov-05 6:41 
GeneralRe: active form name problems.. Pin
da vinci coder12-Nov-05 6:44
da vinci coder12-Nov-05 6:44 
AnswerRe: active form name problems.. Pin
Dave Kreskowiak12-Nov-05 15:33
mveDave Kreskowiak12-Nov-05 15:33 
QuestionImap library Pin
eskan12-Nov-05 5:56
eskan12-Nov-05 5:56 
QuestionExport Crystal Report to txt file Pin
Bedevian12-Nov-05 5:43
Bedevian12-Nov-05 5:43 
AnswerRe: Export Crystal Report to txt file Pin
mav.northwind12-Nov-05 6:03
mav.northwind12-Nov-05 6:03 
Questionurl problem Pin
god4k12-Nov-05 4:56
god4k12-Nov-05 4:56 
AnswerRe: url problem Pin
turbochimp12-Nov-05 6:43
turbochimp12-Nov-05 6:43 
QuestionObtaining a startup filename Pin
theladsmith12-Nov-05 4:22
theladsmith12-Nov-05 4:22 
AnswerRe: Obtaining a startup filename Pin
S. Senthil Kumar12-Nov-05 5:55
S. Senthil Kumar12-Nov-05 5:55 
GeneralRe: Obtaining a startup filename Pin
theladsmith12-Nov-05 8:25
theladsmith12-Nov-05 8:25 
GeneralRe: Obtaining a startup filename Pin
S. Senthil Kumar13-Nov-05 4:05
S. Senthil Kumar13-Nov-05 4:05 
GeneralRe: Obtaining a startup filename Pin
theladsmith14-Nov-05 1:33
theladsmith14-Nov-05 1:33 
QuestionHow can i use infinite parameters in a method Pin
da vinci coder12-Nov-05 0:15
da vinci coder12-Nov-05 0:15 
AnswerRe: How can i use infinite parameters in a method Pin
Daniel Turini12-Nov-05 0:59
Daniel Turini12-Nov-05 0:59 
QuestionHow to make a sound in a form? Pin
Sina_A11-Nov-05 22:35
Sina_A11-Nov-05 22:35 
AnswerRe: How to make a sound in a form? Pin
g00fyman11-Nov-05 23:19
g00fyman11-Nov-05 23:19 

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.