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

C#

 
QuestionSplitting distribution groups and security groups up? Pin
Jacob Dixon22-Mar-09 10:27
Jacob Dixon22-Mar-09 10:27 
QuestionStreamReader.readline() problem Pin
Admin88722-Mar-09 8:30
Admin88722-Mar-09 8:30 
AnswerRe: StreamReader.readline() problem Pin
dan!sh 22-Mar-09 9:16
professional dan!sh 22-Mar-09 9:16 
GeneralRe: StreamReader.readline() problem Pin
Admin88722-Mar-09 10:40
Admin88722-Mar-09 10:40 
AnswerRe: StreamReader.readline() problem Pin
PIEBALDconsult22-Mar-09 16:29
mvePIEBALDconsult22-Mar-09 16:29 
QuestionIn windows application from1 Link to form2 i want buttons visible false how? [modified] Pin
pramod251722-Mar-09 8:24
pramod251722-Mar-09 8:24 
AnswerRe: In windows application from1 to form2 i want buttons visible false how? Pin
dan!sh 22-Mar-09 9:12
professional dan!sh 22-Mar-09 9:12 
AnswerRe: In windows application from1 to form2 i want buttons visible false how? Pin
DaveyM6922-Mar-09 9:23
professionalDaveyM6922-Mar-09 9:23 
Do you mean that if the form is shown via the Submit Button then the TextBoxes should be hidden, otherwise they should be shown?

If so, add a method to Form2, maybe
public void HideTextBoxes()
{
    textBox1.Visible = false;
    // etc...
}
and call that method after instanciation but before Show() in your submit button's handler.

Dave
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Visual Basic is not used by normal people so we're not covering it here. (Uncyclopedia)

GeneralRe: In windows application from1 to form2 i want buttons visible false how? Pin
pramod251722-Mar-09 9:51
pramod251722-Mar-09 9:51 
GeneralRe: In windows application from1 to form2 i want buttons visible false how? Pin
Christian Graus22-Mar-09 10:23
protectorChristian Graus22-Mar-09 10:23 
AnswerRe: In windows application from1 Link to form2 i want buttons visible false how? Pin
Nouman Bhatti22-Mar-09 22:11
Nouman Bhatti22-Mar-09 22:11 
QuestionInstalling Device Drivers [modified] Pin
queries36522-Mar-09 8:22
queries36522-Mar-09 8:22 
AnswerRe: Installing Device Drivers Pin
Henry Minute23-Mar-09 5:46
Henry Minute23-Mar-09 5:46 
Questionreading the data values in textfile Pin
Nettai22-Mar-09 5:53
Nettai22-Mar-09 5:53 
AnswerRe: reading the data values in textfile Pin
harold aptroot22-Mar-09 6:16
harold aptroot22-Mar-09 6:16 
GeneralRe: reading the data values in textfile Pin
Nettai22-Mar-09 7:29
Nettai22-Mar-09 7:29 
GeneralRe: reading the data values in textfile Pin
harold aptroot22-Mar-09 7:41
harold aptroot22-Mar-09 7:41 
GeneralRe: reading the data values in textfile Pin
Nettai22-Mar-09 7:50
Nettai22-Mar-09 7:50 
GeneralRe: reading the data values in textfile [modified] Pin
harold aptroot22-Mar-09 8:27
harold aptroot22-Mar-09 8:27 
AnswerRe: reading the data values in textfile Pin
Jacob Dixon22-Mar-09 8:38
Jacob Dixon22-Mar-09 8:38 
GeneralRe: reading the data values in textfile Pin
Nettai22-Mar-09 8:51
Nettai22-Mar-09 8:51 
AnswerRe: reading the data values in textfile Pin
riced22-Mar-09 8:46
riced22-Mar-09 8:46 
AnswerRe: reading the data values in textfile Pin
Alan N22-Mar-09 9:11
Alan N22-Mar-09 9:11 
AnswerRe: reading the data values in textfile Pin
DaveyM6922-Mar-09 9:16
professionalDaveyM6922-Mar-09 9:16 
QuestionRead all occurances of a specific tag out of an HTML file Pin
YiXiang_8922-Mar-09 4:49
YiXiang_8922-Mar-09 4:49 

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.