i am new to vb.net......i have two radio buttons associated with msflexgrid version 6 in vb.net ..can any body help me out how can i create control array...In vb6.0 it was it was ** easy ....but i don't why MS decided to drop this facility from VB.net... In vb 6.0 it was like this
Code:
Select Case Index Case 0 EntryOption = 0 Case 1 EntryOption = 1 End Select If EntryOption = 0 Then ds = CurDb.OpenRecordset("PlinthBeamData", DAO.RecordsetTypeEnum.dbOpenDynaset) Else If EntryOption = 1 Then ds = CurDb.OpenRecordset("FloorBeamData", DAO.RecordsetTypeEnum.dbOpenDynaset) End If
Comment