Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: scstand
  • Order by date
  1. scstand

    Setting column width of a database grid.

    chuanwang: You can try this in form_activate event: MSFlexGrid1.ColWidth(1) = 500 MSFlexGrid1.ColWidth(2) = 3000. This time, "1" means first column of grid, "2" means second column, and so on. (The "0"th column is supposed to be a Fixed Column.)
  2. scstand

    Setting column width of a database grid.

    Please try form_activate event to put CCLINT's code.(Assuming that you are using the DBGrid in Bound mode, and the properties of the Data control have already been set at design time.)
  3. scstand

    Im using DAO for access database. I

    You can try these steps for DAO: 1. Populate the Record set (say rs) 2. Check rs.EOF to ensure that atleast one record exists 3. rs.movelast 4. rs.movefirst 5. The rs.recordcount should contain correct record count now.

Part and Inventory Search

Back
Top