Results 1 to 3 of 3

Thread: MSFlexGrid Fixed Row

  1. #1

    Thread Starter
    New Member
    Join Date
    Sep 1999
    Location
    Tamborine, Queensland, Australia
    Posts
    6

    Post

    When loading a form containing an MSFlexGrid and a data control, the data control RecordSource field names are automatically included in the first fixed row. Redefining the text in the first fixed row can be achieved by code such as ...

    msfgObject.row = 0
    msfgObject.col = 1
    msfgObject.Text = "Header Title"

    BUT this method doesn't seem to work in the form load event, although it will work on any subsequent event on the form.
    Any suggestions for loading headers on msFlexGrids at form load()??? <IMG SRC="http://216.167.2.32/ubb/smile.gif">

  2. #2
    Frenzied Member
    Join Date
    Aug 1999
    Location
    Santa Clara, Ca , 95058
    Posts
    1,105

    Post

    Your select statement can populate the headers as well.


    for example:

    select empno as "Employee Number", deptno as "Department", salary as "Gross Income" from payroll

  3. #3
    New Member
    Join Date
    Sep 1999
    Posts
    7

    Post

    try using a string variable in place of "Header Title"

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width