Jump to content

Visual Studio Application Development Toolbox


Recommended Posts

Man, I am not sure if this is the right place to ask, but I am programming in C# and using Visual Studio V8. I am a beginner and using the Form Designer to create my interfaces. I realize this is a newbe question, but I do not know where else I might get this information.

When I am designing my application using the Design mode and adding buttons, listboxes and such, I am not always sure what commands a specific Toolbox item can use or offer. As an example, how do I know what other commands can be used with the following or Form entities? i.e.

// Close the open window

Form.ActiveForm.Close();

OR

Button newButton = new Button();

newButton.Name = controlNameTextBox.Text;

newButton.Text = controlTextTextBox.Text;

sampleFlowLayoutPanel.Controls.Add(newButton);

OR

private void wrapContentsCheckBox_CheckedChanged(object sender, EventArgs e)

{

if (wrapContentsCheckBox.Checked == true)

sampleFlowLayoutPanel.WrapContents = true;

else

sampleFlowLayoutPanel.WrapContents = false;

}

What I am asking here is, are there any third party books that help explain what commands you can use for a particular Toolbox item?

I am looking for a reference manual or book I can buy that will show me what attributes a command from the toolbox has that can be used.

I've looked through the help and really do not want to have to navigate through the Visual Studio Help Menu labyrinth in order to find just what actions can be assigned to a Toolbox item.

I hope this makes sense.

Thanks in advance,

Dennis

---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----

Belief has no affect on reality.

My Website: http://www.roadtobetterliving.com

Edited by dlt123me
Link to comment
Share on other sites


Bump...

I hate to do this but I still need this information. I realize this may be a real newbie question, but I am just beginning to learn C# and the VS 8 Pro programming environment.

It would sure be nice if I could find a reference book that explains the commands or attributes of the Form Tool box items.

Again, I appreciate your time and answers.

Dennis

---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----

Belief has no affect on reality.

My Website: http://www.roadtobetterliving.com

Link to comment
Share on other sites

  • 2 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...