Click here to Skip to main content
15,880,427 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionCreate columntype as checkbox in datagridview by coding Pin
KIDYA3-Nov-09 18:12
KIDYA3-Nov-09 18:12 
AnswerRe: Create columntype as checkbox in datagridview by coding Pin
dan!sh 3-Nov-09 18:47
professional dan!sh 3-Nov-09 18:47 
GeneralRe: Create columntype as checkbox in datagridview by coding Pin
KIDYA3-Nov-09 19:08
KIDYA3-Nov-09 19:08 
GeneralRe: Create columntype as checkbox in datagridview by coding Pin
Mycroft Holmes3-Nov-09 19:40
professionalMycroft Holmes3-Nov-09 19:40 
GeneralRe: Create columntype as checkbox in datagridview by coding Pin
dan!sh 3-Nov-09 19:47
professional dan!sh 3-Nov-09 19:47 
GeneralRe: Create columntype as checkbox in datagridview by coding Pin
KIDYA3-Nov-09 19:52
KIDYA3-Nov-09 19:52 
GeneralRe: Create columntype as checkbox in datagridview by coding Pin
dan!sh 3-Nov-09 20:27
professional dan!sh 3-Nov-09 20:27 
GeneralRe: Create columntype as checkbox in datagridview by coding Pin
KIDYA3-Nov-09 21:13
KIDYA3-Nov-09 21:13 
Here is code that should create a header with a checkbox in it. I want this checkbox to select or unselct all checkboxes in the grid depending on if its checked or not. Right now, nothing happens when you click this check box. any suggestions?

Dim column As New DataGridViewCheckBoxColumn()
With column
.HeaderText = "Select"
.Name = "NSelect"
.AutoSizeMode = DataGridViewAutoSizeColumnMode.DisplayedCells
.FlatStyle = FlatStyle.Standard
.CellTemplate = New DataGridViewCheckBoxCell()
.CellTemplate.Style.BackColor = Color.Beige
End With

DgvUserlist.Columns.Insert(0, column)
GeneralRe: Create columntype as checkbox in datagridview by coding Pin
dan!sh 3-Nov-09 21:30
professional dan!sh 3-Nov-09 21:30 
GeneralRe: Create columntype as checkbox in datagridview by coding Pin
KIDYA3-Nov-09 21:39
KIDYA3-Nov-09 21:39 
QuestionShow items in Listview of other form Pin
Gagan.203-Nov-09 17:52
Gagan.203-Nov-09 17:52 
AnswerRe: Show items in Listview of other form Pin
Christian Graus3-Nov-09 18:12
protectorChristian Graus3-Nov-09 18:12 
GeneralRe: Show items in Listview of other form Pin
Gagan.203-Nov-09 18:15
Gagan.203-Nov-09 18:15 
GeneralRe: Show items in Listview of other form Pin
Christian Graus3-Nov-09 18:21
protectorChristian Graus3-Nov-09 18:21 
GeneralRe: Show items in Listview of other form Pin
Gagan.203-Nov-09 18:25
Gagan.203-Nov-09 18:25 
GeneralRe: Show items in Listview of other form Pin
Christian Graus3-Nov-09 18:31
protectorChristian Graus3-Nov-09 18:31 
GeneralRe: Show items in Listview of other form Pin
Gagan.203-Nov-09 18:34
Gagan.203-Nov-09 18:34 
GeneralRe: Show items in Listview of other form Pin
Christian Graus3-Nov-09 18:38
protectorChristian Graus3-Nov-09 18:38 
GeneralRe: Show items in Listview of other form Pin
Gagan.203-Nov-09 18:41
Gagan.203-Nov-09 18:41 
GeneralRe: Show items in Listview of other form Pin
Christian Graus3-Nov-09 18:42
protectorChristian Graus3-Nov-09 18:42 
GeneralRe: Show items in Listview of other form Pin
Gagan.203-Nov-09 18:45
Gagan.203-Nov-09 18:45 
GeneralRe: Show items in Listview of other form Pin
Christian Graus3-Nov-09 18:47
protectorChristian Graus3-Nov-09 18:47 
QuestionPrint Preview of 9000 Pages Pin
Anubhava Dimri3-Nov-09 17:22
Anubhava Dimri3-Nov-09 17:22 
AnswerRe: Print Preview of 9000 Pages Pin
Christian Graus3-Nov-09 18:11
protectorChristian Graus3-Nov-09 18:11 
GeneralRe: Print Preview of 9000 Pages Pin
Anubhava Dimri3-Nov-09 18:33
Anubhava Dimri3-Nov-09 18:33 

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.