Click here to Skip to main content
15,910,981 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Mouse Hit Test: How?? Pin
bitpusher9-Sep-04 13:49
bitpusher9-Sep-04 13:49 
GeneralRe: Mouse Hit Test: How?? Pin
Purple Monk10-Sep-04 0:00
Purple Monk10-Sep-04 0:00 
AnswerRe: Mouse Hit Test: How?? Pin
Dennis C. Dietrich10-Sep-04 9:09
Dennis C. Dietrich10-Sep-04 9:09 
AnswerRe: Mouse Hit Test: How?? Pin
Dennis C. Dietrich10-Sep-04 15:15
Dennis C. Dietrich10-Sep-04 15:15 
GeneralVBA Word ActiveDocument.RoutingSlip problem Pin
Doug Wright9-Sep-04 10:52
Doug Wright9-Sep-04 10:52 
GeneralDataGrid Pin
Jeeva Jose9-Sep-04 8:04
Jeeva Jose9-Sep-04 8:04 
GeneralRe: DataGrid Pin
Dave Kreskowiak9-Sep-04 10:05
mveDave Kreskowiak9-Sep-04 10:05 
GeneralRe: DataGrid Pin
partt10-Sep-04 4:49
partt10-Sep-04 4:49 
Go to the property builder of YourDG and add something like a Select Button Column. Then do this:

Private Sub YourDG_ItemCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridCommandEventArgs) Handles YourDG.ItemCommand

e.item.cells(2).text.trim

End Sub

This way when you click Select, it will grab what's in the 3rd column of the selected row(DG columns are zero-based).

You can also read cells when the DG is bound using this:

Private Sub YourDG_ItemDataBound(ByVal sender As Object, ByVal e As DataGridItemEventArgs) Handles YourDG.ItemDataBound

YourDG.Items 'etc

End Sub
Generalget ip from client Pin
fo0lish9-Sep-04 5:36
fo0lish9-Sep-04 5:36 
GeneralRe: get ip from client Pin
Anonymous9-Sep-04 6:14
Anonymous9-Sep-04 6:14 
QuestionWYSIWYG HTML Controls? Pin
Chris Quick9-Sep-04 3:28
Chris Quick9-Sep-04 3:28 
AnswerRe: WYSIWYG HTML Controls? Pin
Anonymous9-Sep-04 5:57
Anonymous9-Sep-04 5:57 
GeneralSending the e-mail via default mail client Pin
knelenk9-Sep-04 1:33
knelenk9-Sep-04 1:33 
GeneralRe: Sending the e-mail via default mail client Pin
Dave Kreskowiak9-Sep-04 10:30
mveDave Kreskowiak9-Sep-04 10:30 
Generalhi guys Pin
Fired Dragon9-Sep-04 0:47
Fired Dragon9-Sep-04 0:47 
GeneralRe: hi guys Pin
Dave Kreskowiak9-Sep-04 10:35
mveDave Kreskowiak9-Sep-04 10:35 
GeneralRe: hi guys Pin
Mekong River10-Sep-04 4:50
Mekong River10-Sep-04 4:50 
GeneralBinding context change when switch between tab page Pin
kokain8-Sep-04 23:36
kokain8-Sep-04 23:36 
GeneralRe: Binding context change when switch between tab page Pin
Syedahmad9-Sep-04 0:26
Syedahmad9-Sep-04 0:26 
GeneralRe: Binding context change when switch between tab page Pin
kokain9-Sep-04 1:11
kokain9-Sep-04 1:11 
GeneralConvert ARGB 2 RGB Pin
Eduard Keilholz8-Sep-04 23:23
Eduard Keilholz8-Sep-04 23:23 
GeneralRe: Convert ARGB 2 RGB Pin
Eduard Keilholz9-Sep-04 2:28
Eduard Keilholz9-Sep-04 2:28 
QuestionHow to create a autofill toolbar like of google Pin
akszn8-Sep-04 23:05
akszn8-Sep-04 23:05 
AnswerRe: How to create a autofill toolbar like of google Pin
Eduard Keilholz9-Sep-04 0:10
Eduard Keilholz9-Sep-04 0:10 
GeneralDraw a Line in VBA Pin
RonnyS8-Sep-04 22:09
RonnyS8-Sep-04 22:09 

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.