how can i access data that i have entered to the database in msflexgrid. like for example i have putting three categories the noofitem,scores, and totals. that was displayed on the top of msflexgrid horizontally..? is there anyone can help me... please...

Recommended Answers

All 2 Replies

are you trying to change the column caption on the grid ?

Try our this code:

dim i as integer
dim j as integer
dim cnt as integer
dim rs as adodb.recordset

set rs=new adodb.recordset
rs.open urQuery,urDatabaseConnectionPath

msflexgrid.cols=3
msflexgrid.rows=rs.recordcount

for i=0 to 3 
    k=0
   for j=1 to rs.recordcount
        MSFlexGrid1.textmatrix(i,j)=rs.fields(k).value
         k=k+1
   next j
next i
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.