Get One Column Value/Text quickly? ( not use For .... Next )
text from R1C2 to R10C2 = 1,2,3,4,5,6,7,8,9,10
For
vsFlexGrid as following
ColumnText_From_R1C2_to_R10C2 = vsFlexGrid.cell(flexcpText, Row1:=1, col1:=2, Row2:=10)
'
vsFlexGrid will return 1 + vbtab + 2 + vbtab + 3 + vbtab + 4 + vbtab ...... + 9 + vbtab + 10
vsFlexGrid.cell(flexcpText, Row1:=1, col1:=2, Row2:= 5) = Join( Array(11,22,33,44,55), vbTab )
'
vsFlexGrid will write R1C2_to_R5C2 = 11,22,33,44,55
'=====================
iGrid : Is there any method / property to get one column(or Row) text quickly ? ( Without use For .... Next )
Edited by user
2015-08-12T00:29:49Z
|
Reason: Not specified