jj 14.03 showcolumn für datagridview

This commit is contained in:
JenneJ
2016-03-14 11:32:14 +01:00
parent 8a9f9241e6
commit 65ff842c1e

View File

@@ -233,16 +233,20 @@
DEFAULTVALUE = properties.DefaultValue
End If
If type = "TextBox" OrElse
type = "ComboBox" OrElse
type = "CheckBox" OrElse
type = "RadioButton" OrElse
type = "CheckedListBoxControl" OrElse
type = "ListBoxControl" Then
'If type = "TextBox" OrElse
' type = "ComboBox" OrElse
' type = "CheckBox" OrElse
' type = "RadioButton" OrElse
' type = "CheckedListBoxControl" OrElse
' type = "ListBoxControl" Then
' SHOW_COLUMN = BoolToInt(properties.ShowColumn)
'Else
' SHOW_COLUMN = BoolToInt(True)
'End If
If propExists(properties, "ShowColumn") Then
SHOW_COLUMN = BoolToInt(properties.ShowColumn)
Else
SHOW_COLUMN = BoolToInt(True)
End If
If type = "TextBox" AndAlso propExists(properties, "Format") Then