Click here to Skip to main content
15,914,221 members
Home / Discussions / C#
   

C#

 
AnswerRe: A doubt about framework 2.0, please help me.... Pin
EliottA9-Feb-09 10:07
EliottA9-Feb-09 10:07 
GeneralRe: A doubt about framework 2.0, please help me.... Pin
pocho21019-Feb-09 10:17
pocho21019-Feb-09 10:17 
AnswerRe: A doubt about framework 2.0, please help me.... Pin
JoseMenendez9-Feb-09 10:21
JoseMenendez9-Feb-09 10:21 
GeneralRe: A doubt about framework 2.0, please help me.... Pin
pocho21019-Feb-09 10:24
pocho21019-Feb-09 10:24 
AnswerRe: A doubt about framework 2.0, please help me.... Pin
Luc Pattyn9-Feb-09 10:43
sitebuilderLuc Pattyn9-Feb-09 10:43 
AnswerRe: A doubt about framework 2.0, please help me.... Pin
pocho21019-Feb-09 10:41
pocho21019-Feb-09 10:41 
GeneralRe: A doubt about framework 2.0, please help me.... Pin
DaveyM699-Feb-09 10:52
professionalDaveyM699-Feb-09 10:52 
Questionhow to change text color an item in listview C#? Pin
ping_jacob9-Feb-09 9:38
ping_jacob9-Feb-09 9:38 
AnswerRe: how to change text color an item in listview C#? Pin
Ennis Ray Lynch, Jr.9-Feb-09 9:57
Ennis Ray Lynch, Jr.9-Feb-09 9:57 
AnswerRe: how to change text color an item in listview C#? Pin
DaveyM699-Feb-09 9:57
professionalDaveyM699-Feb-09 9:57 
QuestionSession Class Pin
MacSpudster9-Feb-09 9:07
professionalMacSpudster9-Feb-09 9:07 
AnswerRe: Session Class Pin
Ennis Ray Lynch, Jr.9-Feb-09 9:19
Ennis Ray Lynch, Jr.9-Feb-09 9:19 
AnswerRe: Session Class Pin
Christian Graus9-Feb-09 9:37
protectorChristian Graus9-Feb-09 9:37 
GeneralAdvantages of standardizing development tools and environment Pin
Mokai9-Feb-09 8:32
Mokai9-Feb-09 8:32 
GeneralRe: Advantages of standardizing development tools and environment Pin
Pete O'Hanlon9-Feb-09 8:41
mvePete O'Hanlon9-Feb-09 8:41 
GeneralRe: Advantages of standardizing development tools and environment Pin
Ennis Ray Lynch, Jr.9-Feb-09 9:56
Ennis Ray Lynch, Jr.9-Feb-09 9:56 
GeneralRe: Advantages of standardizing development tools and environment Pin
Mokai9-Feb-09 9:59
Mokai9-Feb-09 9:59 
GeneralRe: Advantages of standardizing development tools and environment Pin
Ennis Ray Lynch, Jr.9-Feb-09 10:01
Ennis Ray Lynch, Jr.9-Feb-09 10:01 
QuestionProblem with creating login application Pin
enigma1719849-Feb-09 8:08
enigma1719849-Feb-09 8:08 
Hello,
I am new to this forum and I am a student.My problem is that, I created a MDI Parent application which is suppose to be accessed through login form,I used following code for login to the mdi parent
if (usertxtbox.Text.Equals("admin") && passtxtbox.Text.Equals("admin"))
            {
                MDIForm1 f1 = new MDIForm1();
                f1.Show();
                this.Close();
            }
            else
            {
                MessageBox.Show("Login Failed");
            }

but when I run the application it and insert the correct info the application closes.
After that I thought of hiding the login form instead of closing it by changing
this.Close() to this.Hide() and it worked .
But I had problem when I tried to close the MDI Form using the close button[X] of the form on the top,the form closed but the application was still running in background.
What can I do to solve the problem?
I think I am suppose to implement Threads but how i don't know .
Sorry if I am unable to explain properly,Since its my first time.
Please! Can anyone like to help me.
AnswerRe: Problem with creating login application Pin
Wendelius9-Feb-09 8:14
mentorWendelius9-Feb-09 8:14 
AnswerRe: Problem with creating login application Pin
Pete O'Hanlon9-Feb-09 8:45
mvePete O'Hanlon9-Feb-09 8:45 
QuestionHelp with my project Pin
cdpace9-Feb-09 8:04
cdpace9-Feb-09 8:04 
AnswerRe: Help with my project Pin
akidan9-Feb-09 9:59
akidan9-Feb-09 9:59 
GeneralRe: Help with my project Pin
cdpace10-Feb-09 2:51
cdpace10-Feb-09 2:51 
GeneralRe: Help with my project Pin
akidan10-Feb-09 5:24
akidan10-Feb-09 5:24 

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.