Click here to Skip to main content
15,901,122 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: How to write amount in words Pin
parth.p22-Sep-07 0:45
parth.p22-Sep-07 0:45 
GeneralRe: How to write amount in words Pin
Dave Kreskowiak22-Sep-07 3:09
mveDave Kreskowiak22-Sep-07 3:09 
GeneralRe: How to write amount in words Pin
parth.p22-Sep-07 3:11
parth.p22-Sep-07 3:11 
GeneralRe: How to write amount in words Pin
Dave Kreskowiak22-Sep-07 3:23
mveDave Kreskowiak22-Sep-07 3:23 
GeneralRe: How to write amount in words Pin
Swiss Mantoro24-Sep-07 19:43
Swiss Mantoro24-Sep-07 19:43 
AnswerRe: How to write amount in words Pin
Colin Angus Mackay22-Sep-07 1:54
Colin Angus Mackay22-Sep-07 1:54 
QuestionCheckbox on Datagrid? Pin
Widgets21-Sep-07 14:55
Widgets21-Sep-07 14:55 
AnswerRe: Checkbox on Datagrid? Pin
Gary Bigman27-Sep-07 5:47
Gary Bigman27-Sep-07 5:47 
Hi,

The datagrid by default does not offer checkbox as a value for any of its cells. However I have created a work-around to get around this problem.

I have placed a checkbox on the form and when the grid loads the checkbox is moved to the cell. Code attachedSmile | :) .

************
Private Sub Form_Load()
'on the form:
'one flexgrid (named= flex1)
'one checkbox (named= tb)
Dim intX As Integer
tb.Visible = False
With flex1
.Columns(0).Width = 2000
.RowHeight = 300
tb.Caption = "Box"
tb.Width = 500
tb.Move flex1.Left + 350, flex1.Top + 250, flex1.Width / 15, flex1.Height / 199
tb.BackColor = .BackColor
tb.Visible = True
End With
End Sub
************

Gary Bigman.

Software Engineer
ComponentOne LLC
www.componentone.com

QuestionClickOnce and File Associations Problem Pin
Kschuler21-Sep-07 10:55
Kschuler21-Sep-07 10:55 
QuestionUnload Event - VB2005 Pin
parth.p21-Sep-07 7:19
parth.p21-Sep-07 7:19 
AnswerRe: Unload Event - VB2005 Pin
Dave Kreskowiak21-Sep-07 8:21
mveDave Kreskowiak21-Sep-07 8:21 
GeneralRe: Unload Event - VB2005 Pin
parth.p22-Sep-07 0:36
parth.p22-Sep-07 0:36 
GeneralRe: Unload Event - VB2005 Pin
Dave Kreskowiak22-Sep-07 3:11
mveDave Kreskowiak22-Sep-07 3:11 
Questionhow to pass all the data from datagridview1 to datagridview2 vb.net Pin
Abbhie21-Sep-07 7:10
Abbhie21-Sep-07 7:10 
AnswerRe: how to pass all the data from datagridview1 to datagridview2 vb.net Pin
nlarson1121-Sep-07 9:01
nlarson1121-Sep-07 9:01 
GeneralRe: how to pass all the data from datagridview1 to datagridview2 vb.net Pin
Abbhie21-Sep-07 17:17
Abbhie21-Sep-07 17:17 
Questionworking with Forms Pin
sainipraveen0421-Sep-07 6:39
sainipraveen0421-Sep-07 6:39 
AnswerRe: working with Forms Pin
parth.p21-Sep-07 7:32
parth.p21-Sep-07 7:32 
Questionworking on charts in vb.net Pin
Abbhie21-Sep-07 6:07
Abbhie21-Sep-07 6:07 
AnswerRe: working on charts in vb.net Pin
DanB198321-Sep-07 6:18
DanB198321-Sep-07 6:18 
GeneralRe: working on charts in vb.net Pin
Abbhie21-Sep-07 6:24
Abbhie21-Sep-07 6:24 
GeneralRe: working on charts in vb.net Pin
DanB198321-Sep-07 6:28
DanB198321-Sep-07 6:28 
QuestionVB.NET Events Pin
Richard J. Hanney21-Sep-07 3:47
Richard J. Hanney21-Sep-07 3:47 
AnswerRe: VB.NET Events Pin
Tom Deketelaere21-Sep-07 4:18
professionalTom Deketelaere21-Sep-07 4:18 
AnswerRe: VB.NET Events Pin
nlarson1121-Sep-07 4:20
nlarson1121-Sep-07 4:20 

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.