Click here to Skip to main content
16,005,037 members
Home / Discussions / Windows Forms
   

Windows Forms

 
GeneralRe: Show all toolStripMenuItem's of a particular menustrip Pin
Ajay.k_Singh28-Feb-08 3:23
Ajay.k_Singh28-Feb-08 3:23 
QuestionHow to add context menu in form caption bar? [modified] Pin
Aravinthan27-Feb-08 3:24
Aravinthan27-Feb-08 3:24 
GeneralRe: How to add context menu in form caption bar? Pin
AndrewVos12-Mar-08 4:22
AndrewVos12-Mar-08 4:22 
Generalkeeping a separate modeless form usable while modal dialog boxes are being shown from main form Pin
JW73827-Feb-08 3:03
JW73827-Feb-08 3:03 
GeneralRe: keeping a separate modeless form usable while modal dialog boxes are being shown from main form Pin
Christian Graus27-Feb-08 9:12
protectorChristian Graus27-Feb-08 9:12 
GeneralRe: keeping a separate modeless form usable while modal dialog boxes are being shown from main form Pin
JW73827-Feb-08 21:49
JW73827-Feb-08 21:49 
QuestionUse of ToolStripSplitButton Pin
baranils26-Feb-08 5:44
baranils26-Feb-08 5:44 
GeneralRe: Use of ToolStripSplitButton Pin
John_Adams28-Feb-08 3:06
John_Adams28-Feb-08 3:06 
Hi,

ToolStripSplitButton is used to provide several option under a single button (similar to MenuItems).

Each option can be coded to perform certain taks on click events. Below is the code snippet which creates ToolStripLabel,ToolStripSplitButton,ToolStripComboBox,ToolStripProgressBar etc.

BEGIN CODE

Imports System
Imports System.Data
Imports System.Windows.Forms
Imports System.Drawing
Imports System.Data.SqlClient

public class MainClass
Shared Sub Main()
Dim form1 As Form = New Form1
Application.Run(form1)
End Sub
End Class


<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Public Class Form1
Inherits System.Windows.Forms.Form

'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
MyBase.Dispose(disposing)
End Sub

'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer

'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.ToolStrip1 = New System.Windows.Forms.ToolStrip
Me.ToolStripButton1 = New System.Windows.Forms.ToolStripButton
Me.ToolStripLabel1 = New System.Windows.Forms.ToolStripLabel
Me.ToolStripSplitButton1 = New System.Windows.Forms.ToolStripSplitButton
Me.ToolStripDropDownButton1 = New System.Windows.Forms.ToolStripDropDownButton
Me.ToolStripSeparator1 = New System.Windows.Forms.ToolStripSeparator
Me.ToolStripComboBox1 = New System.Windows.Forms.ToolStripComboBox
Me.ToolStripTextBox1 = New System.Windows.Forms.ToolStripTextBox
Me.ToolStripProgressBar1 = New System.Windows.Forms.ToolStripProgressBar
Me.ToolStrip1.SuspendLayout()
Me.SuspendLayout()
'
'ToolStrip1
'
Me.ToolStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripButton1, Me.ToolStripLabel1, Me.ToolStripSplitButton1, Me.ToolStripDropDownButton1, Me.ToolStripSeparator1, Me.ToolStripComboBox1, Me.ToolStripTextBox1, Me.ToolStripProgressBar1})
Me.ToolStrip1.Location = New System.Drawing.Point(0, 0)
Me.ToolStrip1.Name = "ToolStrip1"
Me.ToolStrip1.Size = New System.Drawing.Size(647, 25)
Me.ToolStrip1.TabIndex = 0
Me.ToolStrip1.Text = "ToolStrip1"
'
'ToolStripButton1
'
Me.ToolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripButton1.Image = New Bitmap("figure2.bmp")
Me.ToolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta
Me.ToolStripButton1.Name = "ToolStripButton1"
Me.ToolStripButton1.Text = "ToolStripButton1"
'
'ToolStripLabel1
'
Me.ToolStripLabel1.Name = "ToolStripLabel1"
Me.ToolStripLabel1.Text = "ToolStripLabel1"
'
'ToolStripSplitButton1
'
Me.ToolStripSplitButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripSplitButton1.Image = New Bitmap("figure2.bmp")
Me.ToolStripSplitButton1.ImageTransparentColor = System.Drawing.Color.Magenta
Me.ToolStripSplitButton1.Name = "ToolStripSplitButton1"
Me.ToolStripSplitButton1.Text = "ToolStripSplitButton1"
'
'ToolStripDropDownButton1
'
Me.ToolStripDropDownButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripDropDownButton1.Image = New Bitmap("figure2.bmp")
Me.ToolStripDropDownButton1.ImageTransparentColor = System.Drawing.Color.Magenta
Me.ToolStripDropDownButton1.Name = "ToolStripDropDownButton1"
Me.ToolStripDropDownButton1.Text = "ToolStripDropDownButton1"
'
'ToolStripSeparator1
'
Me.ToolStripSeparator1.Name = "ToolStripSeparator1"
'
'ToolStripComboBox1
'
Me.ToolStripComboBox1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.ImageAndText
Me.ToolStripComboBox1.Name = "ToolStripComboBox1"
Me.ToolStripComboBox1.Size = New System.Drawing.Size(121, 25)
Me.ToolStripComboBox1.Text = "ToolStripComboBox1"
'
'ToolStripTextBox1
'
Me.ToolStripTextBox1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.ImageAndText
Me.ToolStripTextBox1.Name = "ToolStripTextBox1"
Me.ToolStripTextBox1.Size = New System.Drawing.Size(100, 25)
Me.ToolStripTextBox1.Text = "ToolStripTextBox1"
'
'ToolStripProgressBar1
'
Me.ToolStripProgressBar1.BackColor = System.Drawing.Color.Black
Me.ToolStripProgressBar1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.ImageAndText
Me.ToolStripProgressBar1.Name = "ToolStripProgressBar1"
Me.ToolStripProgressBar1.Size = New System.Drawing.Size(100, 22)
Me.ToolStripProgressBar1.Text = "ToolStripProgressBar1"
Me.ToolStripProgressBar1.Value = 66
'
'Form1
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(647, 125)
Me.Controls.Add(Me.ToolStrip1)
Me.Name = "Form1"
Me.Text = "UseToolstrip"
Me.ToolStrip1.ResumeLayout(False)
Me.ToolStrip1.PerformLayout()
Me.ResumeLayout(False)
Me.PerformLayout()

End Sub
Friend WithEvents ToolStrip1 As System.Windows.Forms.ToolStrip
Friend WithEvents ToolStripButton1 As System.Windows.Forms.ToolStripButton
Friend WithEvents ToolStripLabel1 As System.Windows.Forms.ToolStripLabel
Friend WithEvents ToolStripSplitButton1 As System.Windows.Forms.ToolStripSplitButton
Friend WithEvents ToolStripDropDownButton1 As System.Windows.Forms.ToolStripDropDownButton
Friend WithEvents ToolStripSeparator1 As System.Windows.Forms.ToolStripSeparator
Friend WithEvents ToolStripComboBox1 As System.Windows.Forms.ToolStripComboBox
Friend WithEvents ToolStripTextBox1 As System.Windows.Forms.ToolStripTextBox
Friend WithEvents ToolStripProgressBar1 As System.Windows.Forms.ToolStripProgressBar

End Class

END CODE

I hope this helps Smile | :) .

Regards,
John Adams
ComponentOne LLC

Questionhow to applyexcel formulas in windows application with c# coding pls urgent Pin
venkatesh.gan25-Feb-08 19:03
venkatesh.gan25-Feb-08 19:03 
AnswerRe: how to applyexcel formulas in windows application with c# coding pls urgent Pin
Pete O'Hanlon26-Feb-08 10:28
mvePete O'Hanlon26-Feb-08 10:28 
QuestionDataGrid item template Pin
rajeshaz0925-Feb-08 18:11
rajeshaz0925-Feb-08 18:11 
GeneralRe: DataGrid item template Pin
Christian Graus25-Feb-08 19:33
protectorChristian Graus25-Feb-08 19:33 
Generalreply plz Pin
chellam.r2-Mar-08 20:44
chellam.r2-Mar-08 20:44 
GeneralRe: reply plz Pin
Paul Conrad7-Mar-08 14:50
professionalPaul Conrad7-Mar-08 14:50 
GeneralForm with BackGroundWorkers Pin
Herman<T>.Instance25-Feb-08 2:59
Herman<T>.Instance25-Feb-08 2:59 
GeneralRe: Form with BackGroundWorkers Pin
Luc Pattyn25-Feb-08 5:09
sitebuilderLuc Pattyn25-Feb-08 5:09 
GeneralRe: Form with BackGroundWorkers Pin
Herman<T>.Instance26-Feb-08 2:14
Herman<T>.Instance26-Feb-08 2:14 
GeneralRe: Form with BackGroundWorkers Pin
Luc Pattyn26-Feb-08 2:31
sitebuilderLuc Pattyn26-Feb-08 2:31 
GeneralRe: Form with BackGroundWorkers Pin
Herman<T>.Instance26-Feb-08 4:18
Herman<T>.Instance26-Feb-08 4:18 
GeneralRe: Form with BackGroundWorkers Pin
Luc Pattyn26-Feb-08 4:49
sitebuilderLuc Pattyn26-Feb-08 4:49 
GeneralRe: Form with BackGroundWorkers [modified] Pin
Herman<T>.Instance26-Feb-08 5:00
Herman<T>.Instance26-Feb-08 5:00 
GeneralRe: Form with BackGroundWorkers Pin
Luc Pattyn26-Feb-08 5:14
sitebuilderLuc Pattyn26-Feb-08 5:14 
GeneralRe: Form with BackGroundWorkers Pin
Herman<T>.Instance26-Feb-08 6:03
Herman<T>.Instance26-Feb-08 6:03 
GeneralRe: Form with BackGroundWorkers Pin
Luc Pattyn26-Feb-08 6:09
sitebuilderLuc Pattyn26-Feb-08 6:09 
GeneralRe: Form with BackGroundWorkers Pin
Herman<T>.Instance26-Feb-08 23:01
Herman<T>.Instance26-Feb-08 23:01 

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.