Click here to Skip to main content
15,925,081 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questioni need help in data grid?? Pin
flashmemory29-Jan-06 22:39
flashmemory29-Jan-06 22:39 
QuestionMirroring GroupBox Contents Pin
vipul khandelwal29-Jan-06 22:06
vipul khandelwal29-Jan-06 22:06 
AnswerRe: Mirroring GroupBox Contents Pin
JUNEYT30-Jan-06 14:35
JUNEYT30-Jan-06 14:35 
QuestionAdd Image to Datagridviewimagecolumn Pin
HemaRawat29-Jan-06 21:56
HemaRawat29-Jan-06 21:56 
QuestionUsing Flexgrid .net Pin
welbert29-Jan-06 19:40
welbert29-Jan-06 19:40 
AnswerRe: Using Flexgrid .net Pin
Muhammad Javed Khan29-Jan-06 19:51
Muhammad Javed Khan29-Jan-06 19:51 
AnswerRe: Using Flexgrid .net Pin
Dave Kreskowiak30-Jan-06 1:29
mveDave Kreskowiak30-Jan-06 1:29 
AnswerRe: Using Flexgrid .net Pin
Suelinda_W1-Feb-06 6:02
Suelinda_W1-Feb-06 6:02 
Hello welbert,

There was a Microsoft FlexGrid for VB 6, but it should still be available in .NET, although it will probably not . Is this what you are using. It was based on an old version of our VSFlexGrid. We, ComponentOne, also have an updated FlexGrid for .NET 1.x and 2.0. I am not sure which one you are using, but each version has the rows indexed from 0, so you are right to start intCount at 0. Keep in mind that 0 to 10 is 11 rows, not 10 rows. If you want to add "Hello" to all rows, it would be better to use

For intCount = 0 to Grid1.Rows.Count -1
Grid1.Cell(0, intCount).Text = "Hello"
Next

This way you know that the index will always be in range, even if rows are added or deleted later. If you still have trouble, please let me know exactly which grid you are using, and which build, then I can provide better assistance.

Suelinda W
Customer Engagement, ComponentOne LLC
Questionhelp me out Pin
simhag29-Jan-06 18:43
simhag29-Jan-06 18:43 
AnswerRe: help me out Pin
Steve Pullan29-Jan-06 18:48
Steve Pullan29-Jan-06 18:48 
AnswerRe: help me out Pin
Mekong River3-Feb-06 5:42
Mekong River3-Feb-06 5:42 
Questionoutlook addin Pin
ankitpatial29-Jan-06 18:31
ankitpatial29-Jan-06 18:31 
AnswerRe: outlook addin Pin
Matthew Hazlett29-Jan-06 19:48
Matthew Hazlett29-Jan-06 19:48 
QuestionCrystal Reports With VB.Net Pin
mayhem_rules29-Jan-06 18:00
mayhem_rules29-Jan-06 18:00 
AnswerRe: Crystal Reports With VB.Net Pin
ankitpatial29-Jan-06 18:53
ankitpatial29-Jan-06 18:53 
QuestionCrystal Reports Trusted Connection Pin
thealca29-Jan-06 17:16
thealca29-Jan-06 17:16 
QuestionDateTimePicker Pin
welbert29-Jan-06 16:36
welbert29-Jan-06 16:36 
AnswerRe: DateTimePicker Pin
Christian Graus29-Jan-06 16:47
protectorChristian Graus29-Jan-06 16:47 
GeneralRe: DateTimePicker Pin
welbert29-Jan-06 17:43
welbert29-Jan-06 17:43 
QuestionReadProcessMemory API and VB.net Pin
gaxxx29-Jan-06 14:36
gaxxx29-Jan-06 14:36 
AnswerRe: ReadProcessMemory API and VB.net Pin
Dave Kreskowiak29-Jan-06 15:15
mveDave Kreskowiak29-Jan-06 15:15 
GeneralRe: ReadProcessMemory API and VB.net Pin
gaxxx29-Jan-06 16:34
gaxxx29-Jan-06 16:34 
GeneralRe: ReadProcessMemory API and VB.net Pin
Mekong River29-Jan-06 20:35
Mekong River29-Jan-06 20:35 
AnswerRe: ReadProcessMemory API and VB.net Pin
Duncan Edwards Jones29-Jan-06 21:08
professionalDuncan Edwards Jones29-Jan-06 21:08 
GeneralRe: ReadProcessMemory API and VB.net Pin
gaxxx30-Jan-06 3:50
gaxxx30-Jan-06 3:50 

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.