MS_04.01
This commit is contained in:
@@ -7,15 +7,15 @@ Public Class frmNewKombiForm
|
||||
STRING1 = Me.TextBox1.Text
|
||||
|
||||
Dim Sql = "select count(*) from TBPMO_FORM_CONSTRUCTOR where UPPER(FORM_TITLE) = UPPER('" & STRING1 & "')"
|
||||
Dim exists As Integer = ClassDatabase.Execute_Scalar(sql, True)
|
||||
Dim exists As Integer = ClassDatabase.Execute_Scalar(Sql)
|
||||
If exists = 1 Then
|
||||
MsgBox("Achtung: Dieser Name existiert bereits!" & vbNewLine & "Bitte wählen Sie einen anderen Namen!", MsgBoxStyle.Exclamation)
|
||||
Exit Sub
|
||||
End If
|
||||
|
||||
Sql = "EXEC [PRPMO_CREATE_CONSTRUCTOR] " & INTEGER1.ToString & ", '" & STRING1 & "'"
|
||||
If ClassDatabase.Execute_non_Query(Sql, True) = True Then
|
||||
Dim result As MsgBoxResult = MsgBox("Das Kombiformular wurde erfolgreich erzeugt!" & vbNewLine & "Wollen Sie die Konfiguration anzeigen?", MsgBoxStyle.YesNo, "Frage:")
|
||||
If ClassDatabase.Execute_non_Query(Sql) = True Then
|
||||
Dim result As MsgBoxResult = MsgBox("Die neue Sicht wurde erfolgreich erzeugt!" & vbNewLine & "Wollen Sie die Konfiguration anzeigen?", MsgBoxStyle.YesNo, "Frage:")
|
||||
If result = MsgBoxResult.Yes Then
|
||||
Dim frm As New frmConstructorDesigner
|
||||
frm.MdiParent = frmMain
|
||||
|
||||
Reference in New Issue
Block a user