Forums before death by AOL, social media and spammers... "We can't have nice things"
|    comp.lang.visual.basic    |    MS Visual Basic discussions, NOT dot-net    |    10,840 messages    |
[   << oldest   |   < older   |   list   |   newer >   |   newest >>   ]
|    Message 9,944 of 10,840    |
|    Randy Birch to All    |
|    Re: MSFlex Grid Control - Fixed Rows    |
|    08 Mar 06 19:51:44    |
      XPost: comp.lang.basic.visual       From: rgb_removethis@mvps.org              ????              You say you want to sort when the user clicks a column in the fixed row       (which is the row across the top of the control), then go on to say you are       capturing the row number in the click event which will always be (correctly)       1 because clicking the header selects the entire column and moves the focus       rectangle to the first work row (the row 1 you mention).              If you want to determine the column clicked when a header in the top fixed       row is clicked, all you need is:              Private Sub MSFlexGrid1_MouseDown(...        If MSFlexGrid1.Row = 1 Then        Debug.Print MSFlexGrid1.Col        End If       End Sub                     Similarly the reverse holds true for detecting the row clicks when the row       fixed header is clicked:              Private Sub MSFlexGrid1_MouseDown(...        If MSFlexGrid1.Col= 1 Then        Debug.Print MSFlexGrid1.Row        End If       End Sub              --              Randy Birch       MS MVP Visual Basic       http://vbnet.mvps.org/              Please reply to the newsgroups so all can participate.                                   "Otie" |
[   << oldest   |   < older   |   list   |   newer >   |   newest >>   ]
(c) 1994, bbs@darkrealms.ca