Click here to Skip to main content
15,887,421 members
Home / Discussions / C#
   

C#

 
QuestionContext Menu in List view Pin
M. J. Jaya Chitra17-Sep-07 21:14
M. J. Jaya Chitra17-Sep-07 21:14 
Questionadding controls to an invisible control Pin
cignox117-Sep-07 21:12
cignox117-Sep-07 21:12 
AnswerRe: adding controls to an invisible control Pin
Luc Pattyn17-Sep-07 23:03
sitebuilderLuc Pattyn17-Sep-07 23:03 
GeneralRe: adding controls to an invisible control Pin
cignox117-Sep-07 23:36
cignox117-Sep-07 23:36 
GeneralRe: adding controls to an invisible control Pin
Luc Pattyn17-Sep-07 23:50
sitebuilderLuc Pattyn17-Sep-07 23:50 
AnswerRe: adding controls to an invisible control Pin
Big Daddy Farang18-Sep-07 7:37
Big Daddy Farang18-Sep-07 7:37 
GeneralRe: adding controls to an invisible control Pin
cignox118-Sep-07 20:37
cignox118-Sep-07 20:37 
GeneralRe: adding controls to an invisible control Pin
Big Daddy Farang19-Sep-07 7:28
Big Daddy Farang19-Sep-07 7:28 
cignox1 wrote:
created with Visible = false


Aha! That's interesting. Not what I (nor Luc) would have expected. Since you are a few time zone ahead of me, you may have tried this already, too, but here goes.

My assumptions:
System.Windows.Forms.Panel tablelayoutpanel;
Your custom controls derive from System.Windows.Forms.UserControl
Either you or the designer do something like
tablelayoutpanel.Controls.Add(this.customControl2);

You could iterate the custom controls making them visible:
tablelayoutpanel.Visible = true;
foreach (Control c in tablelayoutpanel.Controls)
{
  c.Visible = true;
}



BDF
QuestionDatabase problem Pin
Nishad8517-Sep-07 20:45
Nishad8517-Sep-07 20:45 
AnswerRe: Database problem Pin
Paul Conrad23-Sep-07 6:44
professionalPaul Conrad23-Sep-07 6:44 
QuestionRichTextBox Pin
mihksoft17-Sep-07 20:22
mihksoft17-Sep-07 20:22 
AnswerRe: RichTextBox Pin
wienzzz17-Sep-07 22:27
wienzzz17-Sep-07 22:27 
QuestionHow Yahoo messenger photo sharing works Pin
Lilupa17-Sep-07 20:20
Lilupa17-Sep-07 20:20 
QuestionGetting a variant containing safe array of Double Values from MFC ActiveX in C#? Pin
ss43117-Sep-07 20:11
ss43117-Sep-07 20:11 
AnswerRe: Getting a variant containing safe array of Double Values from MFC ActiveX in C#? Pin
Nissim Salomon18-Sep-07 1:40
Nissim Salomon18-Sep-07 1:40 
GeneralRe: Getting a variant containing safe array of Double Values from MFC ActiveX in C#? Pin
ss43118-Sep-07 19:30
ss43118-Sep-07 19:30 
GeneralRe: Getting a variant containing safe array of Double Values from MFC ActiveX in C#? Pin
Nissim Salomon20-Sep-07 13:54
Nissim Salomon20-Sep-07 13:54 
GeneralRe: Getting a variant containing safe array of Double Values from MFC ActiveX in C#? Pin
venkyhyd5-Oct-08 20:14
venkyhyd5-Oct-08 20:14 
QuestionWhere can call reports in layers "tier" Pin
Rami Said Abd Alhalim17-Sep-07 19:57
Rami Said Abd Alhalim17-Sep-07 19:57 
Questioncheck to see if a specified file exist in a specified directory Pin
pavya_Cool17-Sep-07 19:19
pavya_Cool17-Sep-07 19:19 
AnswerRe: check to see if a specified file exist in a specified directory Pin
Kuldeep Antil17-Sep-07 19:51
Kuldeep Antil17-Sep-07 19:51 
GeneralRe: check to see if a specified file exist in a specified directory Pin
pavya_Cool17-Sep-07 19:54
pavya_Cool17-Sep-07 19:54 
AnswerRe: check to see if a specified file exist in a specified directory Pin
Nissim Salomon17-Sep-07 20:18
Nissim Salomon17-Sep-07 20:18 
GeneralRe: check to see if a specified file exist in a specified directory Pin
pavya_Cool17-Sep-07 20:21
pavya_Cool17-Sep-07 20:21 
AnswerRe: check to see if a specified file exist in a specified directory Pin
ramdil20-Sep-07 1:10
ramdil20-Sep-07 1:10 

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.