Click here to Skip to main content
15,920,508 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: How to work with Collection in VB6? Pin
Dave Kreskowiak26-Dec-07 8:08
mveDave Kreskowiak26-Dec-07 8:08 
GeneralRe: How to work with Collection in VB6? Pin
suguimoto26-Dec-07 8:55
suguimoto26-Dec-07 8:55 
GeneralRe: How to work with Collection in VB6? Pin
Dave Kreskowiak26-Dec-07 9:05
mveDave Kreskowiak26-Dec-07 9:05 
GeneralRe: How to work with Collection in VB6? [modified] Pin
suguimoto26-Dec-07 23:44
suguimoto26-Dec-07 23:44 
GeneralRe: How to work with Collection in VB6? Pin
Dave Kreskowiak27-Dec-07 5:09
mveDave Kreskowiak27-Dec-07 5:09 
QuestionInstance of existing form and control manipulation Pin
Adnan Siddiqi26-Dec-07 6:21
Adnan Siddiqi26-Dec-07 6:21 
GeneralRe: Instance of existing form and control manipulation Pin
Dave Kreskowiak26-Dec-07 8:13
mveDave Kreskowiak26-Dec-07 8:13 
GeneralDataGridViewTextBoxEditingControl Pin
helelark12326-Dec-07 4:54
helelark12326-Dec-07 4:54 
I have a DatagridViewTextboxColumn. I allow word wrapping. When I am writting into the textbox, at run time, I would like to datagridview row height size to grow accordingly.

Here is my code:

Private Sub dgvDetail_CellEndEdit(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles dgvDetail.CellEndEdit
RemoveHandler EditingControl.KeyUp, AddressOf editingControl_KeyUp
EditingControl = Nothing
End Sub

Private Sub dgvDetail_EditingControlShowing(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewEditingControlShowingEventArgs) Handles dgvDetail.EditingControlShowing
EditingControl = CType(e.Control, DataGridViewTextBoxEditingControl)
AddHandler EditingControl.KeyUp, AddressOf editingControl_KeyUp
End Sub

Private Sub editingControl_KeyUp(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs)
EditingControl.EditingControlDataGridView.AutoResizeRows()
End Sub

Please help

Shay Noy

GeneralRe: DataGridViewTextBoxEditingControl Pin
Dave Kreskowiak26-Dec-07 6:56
mveDave Kreskowiak26-Dec-07 6:56 
QuestionStoring PDF text unicode to database Pin
praabhu_p26-Dec-07 0:22
praabhu_p26-Dec-07 0:22 
GeneralRe: Storing PDF text unicode to database Pin
Dave Kreskowiak26-Dec-07 4:02
mveDave Kreskowiak26-Dec-07 4:02 
GeneralHRESULT : 0x80040202 in OPC Client OnDataChange handler. Pin
Prashant Khonde25-Dec-07 23:42
Prashant Khonde25-Dec-07 23:42 
GeneralRe: HRESULT : 0x80040202 in OPC Client OnDataChange handler. Pin
Dave Kreskowiak26-Dec-07 3:58
mveDave Kreskowiak26-Dec-07 3:58 
GeneralRe: HRESULT : 0x80040202 in OPC Client OnDataChange handler. Pin
Prashant Khonde27-Dec-07 2:23
Prashant Khonde27-Dec-07 2:23 
QuestionHow to import data by character wise from excel to sql server Pin
kamarudeen25-Dec-07 23:36
kamarudeen25-Dec-07 23:36 
AnswerRe: How to import data by character wise from excel to sql server Pin
Dave Kreskowiak26-Dec-07 3:44
mveDave Kreskowiak26-Dec-07 3:44 
AnswerRe: How to import data by character wise from excel to sql server Pin
Paul Conrad30-Dec-07 10:47
professionalPaul Conrad30-Dec-07 10:47 
GeneralDataGridView: Add combobox Pin
nishkarsh_k25-Dec-07 23:05
nishkarsh_k25-Dec-07 23:05 
GeneralRe: DataGridView: Add combobox Pin
helelark12326-Dec-07 5:01
helelark12326-Dec-07 5:01 
GeneralRe: DataGridView: Add combobox Pin
nishkarsh_k26-Dec-07 17:33
nishkarsh_k26-Dec-07 17:33 
GeneralRe: DataGridView: Add combobox Pin
helelark12326-Dec-07 18:54
helelark12326-Dec-07 18:54 
GeneralRe: DataGridView: Add combobox Pin
nishkarsh_k26-Dec-07 23:19
nishkarsh_k26-Dec-07 23:19 
QuestionHow to save data from datatable to database using vb.net Pin
Eunice (VB junior)25-Dec-07 21:15
Eunice (VB junior)25-Dec-07 21:15 
AnswerRe: How to save data from datatable to database using vb.net Pin
Dave Kreskowiak26-Dec-07 8:28
mveDave Kreskowiak26-Dec-07 8:28 
Generalparallel port in VB .Net 2008 Pin
meki_211825-Dec-07 20:19
meki_211825-Dec-07 20: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.