Click here to Skip to main content
15,912,932 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralDynamically screen resolution... need help Pin
AbuFahed9-Aug-04 9:03
AbuFahed9-Aug-04 9:03 
GeneralManipulating a hashtable Pin
woaksie9-Aug-04 8:38
woaksie9-Aug-04 8:38 
GeneralRe: Manipulating a hashtable Pin
Steven Campbell9-Aug-04 10:13
Steven Campbell9-Aug-04 10:13 
GeneralRe: Manipulating a hashtable Pin
normanordas10-Aug-04 21:13
normanordas10-Aug-04 21:13 
GeneralSave a MS Word shape as an image Pin
smritiy9-Aug-04 8:38
smritiy9-Aug-04 8:38 
GeneralRe: Save a MS Word shape as an image Pin
Member 53081010-Aug-04 4:58
Member 53081010-Aug-04 4:58 
Questiondoes everybody know how to deal with this question? Pin
Lisana9-Aug-04 8:28
Lisana9-Aug-04 8:28 
AnswerRe: does everybody know how to deal with this question? Pin
skytribe9-Aug-04 11:00
skytribe9-Aug-04 11:00 
Perhaps this is what you are looking for....

Get the current cell's rownumber

and then build string for the messagebox which looks at the appropriate columns on that cell.....

Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim strTest As String
Dim iRowNumber As Integer
Try

iRowNumber = DataGrid1.CurrentCell.RowNumber()
strTest = "Selected Identify " & CStr(DataGrid1.Item(iRowNumber, 1))
MessageBox.Show(strTest)
Catch ex As Exception

End Try

End Sub





SkyTribe
GeneralRe: does everybody know how to deal with this question? Pin
Lisana9-Aug-04 14:45
Lisana9-Aug-04 14:45 
GeneralRe: does everybody know how to deal with this question? Pin
Anonymous9-Aug-04 17:00
Anonymous9-Aug-04 17:00 
GeneralRe: does everybody know how to deal with this question? Pin
Lisana10-Aug-04 3:43
Lisana10-Aug-04 3:43 
Generaldate conversion and option strict on Pin
leezardd9-Aug-04 8:26
leezardd9-Aug-04 8:26 
GeneralRe: date conversion and option strict on Pin
Steven Campbell9-Aug-04 10:26
Steven Campbell9-Aug-04 10:26 
GeneralRe: date conversion and option strict on Pin
RDoes10-Aug-04 20:32
RDoes10-Aug-04 20:32 
QuestionHow can I integrate 2 project. Pin
jlizardo9-Aug-04 5:43
jlizardo9-Aug-04 5:43 
AnswerRe: How can I integrate 2 project. Pin
Dave Kreskowiak9-Aug-04 10:10
mveDave Kreskowiak9-Aug-04 10:10 
GeneralShow RichText in DataGrid Pin
RDoes9-Aug-04 5:08
RDoes9-Aug-04 5:08 
GeneralRe: Show RichText in DataGrid Pin
progload9-Aug-04 20:47
progload9-Aug-04 20:47 
GeneralRe: Show RichText in DataGrid Pin
RDoes10-Aug-04 9:21
RDoes10-Aug-04 9:21 
GeneralRe: Show RichText in DataGrid Pin
progload10-Aug-04 11:08
progload10-Aug-04 11:08 
GeneralRe: Show RichText in DataGrid Pin
RDoes10-Aug-04 20:27
RDoes10-Aug-04 20:27 
GeneralRe: Show RichText in DataGrid Pin
progload11-Aug-04 5:59
progload11-Aug-04 5:59 
GeneralRe: Show RichText in DataGrid Pin
RDoes11-Aug-04 21:02
RDoes11-Aug-04 21:02 
GeneralRe: Show RichText in DataGrid fixed Pin
progload12-Aug-04 9:33
progload12-Aug-04 9:33 
GeneralRe: Show RichText in DataGrid fixed Pin
RDoes16-Aug-04 2:57
RDoes16-Aug-04 2:57 

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.