Results 1 to 2 of 2

Thread: A "checkbox" in a grid

  1. #1

    Thread Starter
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    A "checkbox" in a grid

    In Access 2000 when a field is yes/no then what is shown is a "checkbox", is it possible to emulate that through MSHFlexGrid or MSFlexGrid without other controls?
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  2. #2
    MS SQL Powerposter szlamany's Avatar
    Join Date
    Mar 2004
    Location
    Connecticut
    Posts
    18,263

    Re: A "checkbox" in a grid

    This will put a CHECK MARK character into a CELL...

    Code:
    flxPosting.Row = lngRow
    flxPosting.Col = lngCol
    flxPosting.CellFontName = "Wingdings"
    flxPosting.TextMatrix(lngRow, lngCol) = Chr$(252)
    We do that for "faking" a check box type of thing in a control...

    *** Read the sticky in the DB forum about how to get your question answered quickly!! ***

    Please remember to rate posts! Rate any post you find helpful - even in old threads! Use the link to the left - "Rate this Post".

    Some Informative Links:
    [ SQL Rules to Live By ] [ Reserved SQL keywords ] [ When to use INDEX HINTS! ] [ Passing Multi-item Parameters to STORED PROCEDURES ]
    [ Solution to non-domain Windows Authentication ] [ Crazy things we do to shrink log files ] [ SQL 2005 Features ] [ Loading Pictures from DB ]

    MS MVP 2006, 2007, 2008

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