hi,
i have one flexgrid populated with data (just text not numerical):
Set txtStream = fsoStream.OpenTextFile(DataLoc)
Do While Not txtStream.AtEndOfStream
strTextFromFile = txtStream.ReadLine
MyData = Split(strTextFromFile, ";")
FeedData = MyData(0) & vbTab & MyData(1) & vbTab & MyData(2) & vbTab & MyData(3) & vbTab & MyData(4) & vbTab & MyData(5)
MSFlexGrid1.AddItem FeedData
Loop
Set txtStream = Nothing
Set fsoStream = Nothing
what i need is:
1) to sort rows alphabetically by the first column
2) on MSFlexGrid1_Click() insert data from selected line into text boxes (six cell/six text boxes)
i think it's pretty simple if you have the right manual (which i don't have
i have one flexgrid populated with data (just text not numerical):
Set txtStream = fsoStream.OpenTextFile(DataLoc)
Do While Not txtStream.AtEndOfStream
strTextFromFile = txtStream.ReadLine
MyData = Split(strTextFromFile, ";")
FeedData = MyData(0) & vbTab & MyData(1) & vbTab & MyData(2) & vbTab & MyData(3) & vbTab & MyData(4) & vbTab & MyData(5)
MSFlexGrid1.AddItem FeedData
Loop
Set txtStream = Nothing
Set fsoStream = Nothing
what i need is:
1) to sort rows alphabetically by the first column
2) on MSFlexGrid1_Click() insert data from selected line into text boxes (six cell/six text boxes)
i think it's pretty simple if you have the right manual (which i don't have