I have a project with MS-Access (Front End) + MySQL (BackEnd)
There are STATUS
and DEL_FLG
columns in a table called TB_STATUS
strSQL = "SELECT * FROM TB_STATUS"
rs.Open strSQL, cn, adOpenKeyset, adLockOptimistic
If rs.RecordCount <> 0 Then
Set Form.Recordset = rs
rs.Close
End If
User Interface is
|text||valid||invalid|
A value of DEL_FLG
is invalid with an invalidity button in the case of 0, and a value of DEL_FLG
wants to let you invalidate an effective button in the case of 1,
How to do it?