Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
Private Sub ButOK_Click()
Dim i As Long
Do
i = i + 1
If Cells(i, 1).Value = text1.Value Then
text2.Value = Cells(i, 2).Value & " " & Cells(i, 3).Value
Exit Do
End If
Loop Until Cells(i + 1, 1).Value = ""
If text1.Text = "" Then 'Meldung keine eingabe
MsgBox "Fehler keine eingaben getätigt.", vbExclamation, "Keine eingaben."
End If
End Sub
Private Sub ExportAsXMLData_Click()
ActiveWorkbook.Save
MsgBox "Daten wurden gespeichert.", vbInformation, "Speichert"
Private Sub ButOK_Click()
Dim i As Long
Do
i = i + 1
If CStr(Cells(i, 1).Value) = text1.Value Then
text2.Value = Cells(i, 2).Value & " " & Cells(i, 3).Value
Exit Do
End If
Loop Until Cells(i + 1, 1).Value = ""
If text1.Text = "" Then 'Meldung keine eingabe
MsgBox "Fehler keine eingaben getätigt.", vbExclamation, "Keine eingaben."
End If
End Sub
Private Sub ExportAsXMLData_Click()
ActiveWorkbook.Save
MsgBox "Daten wurden gespeichert.", vbInformation, "Speichert"