Created
August 15, 2014 13:20
-
-
Save cerkit/1bd81bc0cfd34e2a6c74 to your computer and use it in GitHub Desktop.
Set boolean property with If, Then, Else (old way)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If Mid(C1, 40, 1) = "Y" Then | |
C1GridView1.Columns.ColumnByName("Age Allocated").Visible = True | |
Else | |
C1GridView1.Columns.ColumnByName("Age Allocated").Visible = False | |
End If |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment