MS23032016

This commit is contained in:
SchreiberM
2016-03-23 13:01:40 +01:00
parent 777de5582e
commit 58788043c5
14 changed files with 989 additions and 1428 deletions

View File

@@ -113,7 +113,11 @@ Public Class ClassControlBuilder
Select Case control.GetType()
Case GetType(ComboBox)
value = DirectCast(control, ComboBox).SelectedValue
If IsNothing(DirectCast(control, ComboBox).ValueMember) Then
value = DirectCast(control, ComboBox).Text
Else
value = DirectCast(control, ComboBox).SelectedValue
End If
Case Else
Exit Sub
End Select