Click here to Skip to main content
15,898,222 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: How to create a hyperlink to a field value in a datagrid in VB6 Pin
Prerak Patel20-Sep-10 21:00
professionalPrerak Patel20-Sep-10 21:00 
GeneralRe: How to create a hyperlink to a field value in a datagrid in VB6 Pin
kokilag22-Sep-10 1:10
kokilag22-Sep-10 1:10 
GeneralRe: How to create a hyperlink to a field value in a datagrid in VB6 Pin
Prerak Patel22-Sep-10 1:35
professionalPrerak Patel22-Sep-10 1:35 
GeneralRe: How to create a hyperlink to a field value in a datagrid in VB6 Pin
kokilag23-Sep-10 0:52
kokilag23-Sep-10 0:52 
Question[VB10] DataGridView Columns Error [modified] Pin
The Mighty Atom14-Sep-10 11:49
The Mighty Atom14-Sep-10 11:49 
AnswerRe: [VB10] DataGridView Columns Error Pin
Luc Pattyn14-Sep-10 12:05
sitebuilderLuc Pattyn14-Sep-10 12:05 
GeneralRe: [VB10] DataGridView Columns Error Pin
The Mighty Atom14-Sep-10 12:15
The Mighty Atom14-Sep-10 12:15 
GeneralRe: [VB10] DataGridView Columns Error Pin
Luc Pattyn14-Sep-10 12:25
sitebuilderLuc Pattyn14-Sep-10 12:25 
Everything you did through Visual Designer is captured, converted to code and stored in files whose names end on designer.vb (they are part of your project, however they may be hidden somewhat, depends on some settings). This code gets called by the Form's constructor; most of what is there could:

1. have been coded by you instead of Visual Designer, and stored somewhere (say inside the constructor).

2. be postponed to a later point in time, such as the Form's Load event, the Form's Shown event, or even a button click handler (so you would have to click the button to populate the Form).

In particular, it could be wise to postpone the database access (and/or the data aspects of the DataGridView) till the Shown event.

BTW: the Designer-generated code needs a specific order, I hope you didn't mess that up earlier.

Smile | :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum
Please use <PRE> tags for code snippets, they preserve indentation, and improve readability.


GeneralRe: [VB10] DataGridView Columns Error Pin
The Mighty Atom14-Sep-10 12:32
The Mighty Atom14-Sep-10 12:32 
AnswerRe: [VB10] DataGridView Columns Error Pin
Luc Pattyn14-Sep-10 12:41
sitebuilderLuc Pattyn14-Sep-10 12:41 
GeneralRe: [VB10] DataGridView Columns Error [modified] Pin
The Mighty Atom14-Sep-10 12:50
The Mighty Atom14-Sep-10 12:50 
AnswerRe: [VB10] DataGridView Columns Error Pin
Luc Pattyn14-Sep-10 13:12
sitebuilderLuc Pattyn14-Sep-10 13:12 
GeneralRe: [VB10] DataGridView Columns Error Pin
The Mighty Atom14-Sep-10 13:16
The Mighty Atom14-Sep-10 13:16 
GeneralRe: [VB10] DataGridView Columns Error Pin
Luc Pattyn14-Sep-10 13:38
sitebuilderLuc Pattyn14-Sep-10 13:38 
GeneralRe: [VB10] DataGridView Columns Error Pin
The Mighty Atom14-Sep-10 13:54
The Mighty Atom14-Sep-10 13:54 
AnswerRe: [VB10] DataGridView Columns Error Pin
Luc Pattyn14-Sep-10 14:21
sitebuilderLuc Pattyn14-Sep-10 14:21 
GeneralRe: [VB10] DataGridView Columns Error Pin
The Mighty Atom15-Sep-10 7:24
The Mighty Atom15-Sep-10 7:24 
GeneralRe: [VB10] DataGridView Columns Error [modified] Pin
Luc Pattyn15-Sep-10 7:44
sitebuilderLuc Pattyn15-Sep-10 7:44 
GeneralRe: [VB10] DataGridView Columns Error Pin
The Mighty Atom15-Sep-10 12:09
The Mighty Atom15-Sep-10 12:09 
QuestionHow to add row header to DataGridView in vb.net Pin
Andraw Tang14-Sep-10 9:24
Andraw Tang14-Sep-10 9:24 
AnswerRe: How to add row header to DataGridView in vb.net Pin
Andraw Tang14-Sep-10 12:32
Andraw Tang14-Sep-10 12:32 
AnswerRe: How to add row header to DataGridView in vb.net Pin
Prerak Patel20-Sep-10 22:19
professionalPrerak Patel20-Sep-10 22:19 
Questionhow to create data grid control in VB6.0 Pin
jainiraj14-Sep-10 2:38
jainiraj14-Sep-10 2:38 
AnswerRe: how to create data grid control in VB6.0 Pin
Dave Kreskowiak14-Sep-10 4:09
mveDave Kreskowiak14-Sep-10 4:09 
Questionhow to read xml data from xml file in VB6.0 Pin
jainiraj14-Sep-10 0:19
jainiraj14-Sep-10 0:19 

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.