Click here to Skip to main content
15,918,808 members
Home / Discussions / C#
   

C#

 
AnswerRe: numeric conversion for if check Pin
J4amieC26-May-06 2:51
J4amieC26-May-06 2:51 
GeneralRe: numeric conversion for if check Pin
Mairaaj Khan26-May-06 19:35
professionalMairaaj Khan26-May-06 19:35 
AnswerRe: numeric conversion for if check [modified] Pin
V.26-May-06 4:52
professionalV.26-May-06 4:52 
GeneralRe: numeric conversion for if check [modified] Pin
J4amieC26-May-06 5:12
J4amieC26-May-06 5:12 
GeneralRe: numeric conversion for if check [modified] Pin
V.26-May-06 5:42
professionalV.26-May-06 5:42 
GeneralRe: numeric conversion for if check [modified] Pin
J4amieC26-May-06 10:02
J4amieC26-May-06 10:02 
GeneralRe: numeric conversion for if check [modified] Pin
V.26-May-06 10:06
professionalV.26-May-06 10:06 
GeneralRe: numeric conversion for if check [modified] Pin
Mairaaj Khan26-May-06 19:39
professionalMairaaj Khan26-May-06 19:39 
AnswerRe: numeric conversion for if check Pin
Robin Panther26-May-06 11:55
Robin Panther26-May-06 11:55 
GeneralRe: numeric conversion for if check Pin
Mairaaj Khan26-May-06 19:43
professionalMairaaj Khan26-May-06 19:43 
Questionhelp for inserting data to msaccess ? Pin
cmpeng3426-May-06 2:03
cmpeng3426-May-06 2:03 
AnswerRe: help for inserting data to msaccess ? [modified] Pin
rah_sin26-May-06 2:06
professionalrah_sin26-May-06 2:06 
QuestionCustom control - configuration in desing time Pin
kamarchand26-May-06 1:30
kamarchand26-May-06 1:30 
QuestionShow Internet Optiions Dialog with C# [modified] Pin
Adiphe26-May-06 0:55
Adiphe26-May-06 0:55 
AnswerRe: Show Internet Optiions Dialog with C# [modified] Pin
Shajeel26-May-06 1:32
Shajeel26-May-06 1:32 
GeneralRe: Show Internet Optiions Dialog with C# [modified] Pin
Adiphe26-May-06 1:38
Adiphe26-May-06 1:38 
AnswerRe: Show Internet Optiions Dialog with C# [modified] Pin
Shajeel26-May-06 2:24
Shajeel26-May-06 2:24 
GeneralRe: Show Internet Optiions Dialog with C# [modified] Pin
Adiphe26-May-06 2:47
Adiphe26-May-06 2:47 
QuestionCLONE FORM Pin
Greeky26-May-06 0:52
Greeky26-May-06 0:52 
AnswerRe: CLONE FORM Pin
Robert Rohde26-May-06 1:49
Robert Rohde26-May-06 1:49 
Questionduplicate items in treeview [modified] Pin
lushgrass26-May-06 0:34
lushgrass26-May-06 0:34 
QuestionShowing and hiding controls [modified] Pin
travellermania26-May-06 0:27
travellermania26-May-06 0:27 
I have an application that has 3 panels one on top of the other.
Each panel contains several control.
I also have a toolbar that I am using to navigate between the panels using the SendToBack() and BringToFront() methods and with the Hide() and Show() methods.
For some reason when I want to show the the 3rd panel, I get the controls of the first panel together with the 3rd panel.
This problem doesn't happen when I display the 2nd panel or the first panel.
Help will be appreciated.
Topaz
P.S.
this is the code:
			switch(e.Button.Text)
			{
				case "Option 1":
					this.panelOption2.SendToBack();
					this.panelOption3.SendToBack();
					this.panelOption1.BringToFront();
					this.panelOption1.Show();

					this.panelOption2.Hide();			
					this.panelOption3.Hide();

					break;
				case "Option 2":
					this.panelOption1.SendToBack();
					this.panelOption3.SendToBack();
					this.panelOption2.BringToFront();
					this.panelOption2.Show();

					this.panelOption3.Hide();
					break;				
				case "Option 3":					
					this.panelOption2.Show();
					this.panelOption2.SendToBack();
					this.panelOption1.SendToBack();
					this.panelOption3.BringToFront();
					
					this.panelOption3.Show();
					break;
				default:
					break;
			}
<pre>


 -- modified at 6:31 Friday 26th May, 2006

AnswerRe: Showing and hiding controls Pin
Larantz26-May-06 0:34
Larantz26-May-06 0:34 
GeneralRe: Showing and hiding controls Pin
travellermania26-May-06 0:49
travellermania26-May-06 0:49 
GeneralRe: Showing and hiding controls Pin
Robert Rohde26-May-06 1:46
Robert Rohde26-May-06 1:46 

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.