Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Well, you don't really have to, do you? Can't you just populate the flexgrid with stuff through code?Of corse you have to connect the DataGrid to a data source, e.g. Adorecordset
Private Sub Form_Load()
Dim con As ADODB.Connection
Dim rs As ADODB.Recordset
Set con = New ADODB.Connection
con.ConnectionString = "Driver={SQL Server}" _
& ";Server=SID5LONIB" _
& ";Database=LIGHTER_DEV" _
& ";Trusted_Connection=yes;"
con.Open
Set rs = New ADODB.Recordset
Call rs.Open("Select * From REPORTS_LIST", _
con, adOpenKeyset)
Set DataGrid1.DataSource = rs
End Sub