Click here to Skip to main content
15,913,854 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to get a Unique ID ( or Network Card Mac Address) in Mobile Devices ? Pin
MehmetFurkan1-Jun-09 1:29
MehmetFurkan1-Jun-09 1:29 
GeneralRe: How to get a Unique ID ( or Network Card Mac Address) in Mobile Devices ? Pin
Rajesh Anuhya1-Jun-09 2:43
professionalRajesh Anuhya1-Jun-09 2:43 
Questionhi peoples... Pin
Hema Bairavan31-May-09 22:31
Hema Bairavan31-May-09 22:31 
AnswerRe: hi peoples... Pin
Simon P Stevens31-May-09 22:48
Simon P Stevens31-May-09 22:48 
GeneralRe: hi peoples... Pin
Hema Bairavan31-May-09 22:53
Hema Bairavan31-May-09 22:53 
GeneralRe: hi peoples... Pin
Simon P Stevens31-May-09 23:14
Simon P Stevens31-May-09 23:14 
GeneralRe: hi peoples... Pin
Vasudevan Deepak Kumar1-Jun-09 0:27
Vasudevan Deepak Kumar1-Jun-09 0:27 
GeneralRe: hi peoples... Pin
Pete O'Hanlon1-Jun-09 2:57
mvePete O'Hanlon1-Jun-09 2:57 
AnswerRe: hi peoples... Pin
Pete O'Hanlon1-Jun-09 4:23
mvePete O'Hanlon1-Jun-09 4:23 
Questionabout PowerCollections and C5 library Pin
Seraph_summer31-May-09 22:27
Seraph_summer31-May-09 22:27 
AnswerRe: about PowerCollections and C5 library Pin
Simon P Stevens31-May-09 22:45
Simon P Stevens31-May-09 22:45 
QuestionAuto-resize C# Datagridview Pin
Mbulelo31-May-09 22:20
Mbulelo31-May-09 22:20 
AnswerRe: Auto-resize C# Datagridview Pin
Satish Pai31-May-09 22:24
Satish Pai31-May-09 22:24 
AnswerRe: Auto-resize C# Datagridview Pin
alien viper31-May-09 22:54
alien viper31-May-09 22:54 
QuestionHow to implement observableCollection.Exist() method? Pin
Kunal Chowdhury «IN»31-May-09 21:32
professionalKunal Chowdhury «IN»31-May-09 21:32 
AnswerRe: How to implement observableCollection.Exist() method? Pin
Pete O'Hanlon31-May-09 22:16
mvePete O'Hanlon31-May-09 22:16 
QuestionRe: How to implement observableCollection.Exist() method? Pin
Kunal Chowdhury «IN»31-May-09 22:32
professionalKunal Chowdhury «IN»31-May-09 22:32 
AnswerRe: How to implement observableCollection.Exist() method? Pin
Simon P Stevens31-May-09 22:38
Simon P Stevens31-May-09 22:38 
GeneralRe: How to implement observableCollection.Exist() method? Pin
Kunal Chowdhury «IN»31-May-09 23:53
professionalKunal Chowdhury «IN»31-May-09 23:53 
QuestionProblem with MdiParent-MdiChildren forms Pin
Nine_31-May-09 20:38
Nine_31-May-09 20:38 
AnswerRe: Problem with MdiParent-MdiChildren forms Pin
dan!sh 31-May-09 21:08
professional dan!sh 31-May-09 21:08 
You need to pass the current instance of your parent form to the LoginForm. This way:

LoginForm frmLogin = new LoginForm(this);


While the constructor for LoginForm will be:

public LoginForm(MDIparent frmParent)
{
this.Parent=frmParent;
}


This way you will be able to access all the controls of the parent form.

For your second problem, Application.OpenForms collection is there to help you. If the CustomerForm is already in the collection, just set Focus to it, otherwise create a new instance of it and show.

जय हिंद

Rajdeep.Net[^] is NOT from India. Proof.[^]

GeneralRe: Problem with MdiParent-MdiChildren forms Pin
Nine_31-May-09 21:12
Nine_31-May-09 21:12 
GeneralRe: Problem with MdiParent-MdiChildren forms Pin
dan!sh 31-May-09 21:23
professional dan!sh 31-May-09 21:23 
GeneralRe: Problem with MdiParent-MdiChildren forms Pin
Nine_31-May-09 21:29
Nine_31-May-09 21:29 
QuestionHow to delete the URL from cache entry in c#? Pin
svt gdwl31-May-09 20:31
svt gdwl31-May-09 20:31 

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.