Good Day People!!!
I have a problem regarding grid control. I use check box control instead of textbox in my control, at first theres no problem at all. But when I use an SQL statement and group my records according to employee name, the check box is no longer editable eventhough all the employee name have the same mark.
FOR EXAMPLE:
Name MARK
AAA T
AAA T
AAA T
AAA T
BBB F
BBB F
BBB F
BBB F
BBB F
when you make an SQL statement such as this:
SELECT * FROM EMPLOYEE group by MARK into cursor temp1
the result would be like this (in my grid control)
Name Mark
AAA T
BBB F
when I use temp1 as my recordsource in my grid. The value in my grid control cannot be edit unlike in the first one.
Is there a way to solve this problem?
Thanks.
I have a problem regarding grid control. I use check box control instead of textbox in my control, at first theres no problem at all. But when I use an SQL statement and group my records according to employee name, the check box is no longer editable eventhough all the employee name have the same mark.
FOR EXAMPLE:
Name MARK
AAA T
AAA T
AAA T
AAA T
BBB F
BBB F
BBB F
BBB F
BBB F
when you make an SQL statement such as this:
SELECT * FROM EMPLOYEE group by MARK into cursor temp1
the result would be like this (in my grid control)
Name Mark
AAA T
BBB F
when I use temp1 as my recordsource in my grid. The value in my grid control cannot be edit unlike in the first one.
Is there a way to solve this problem?
Thanks.