Updaet 20240730
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
using Database;
|
||||
using Microsoft.Office.Interop.Word;
|
||||
using Microsoft.Toolkit.Uwp.Notifications;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
@@ -40,6 +41,18 @@ namespace OnDoc.Klassen
|
||||
}
|
||||
}
|
||||
|
||||
public static class ToastMessage
|
||||
{
|
||||
public static void ShowToast(string title, string message)
|
||||
{
|
||||
new ToastContentBuilder()
|
||||
|
||||
.AddArgument("Datensicherung", "Datensicherung")
|
||||
.AddText(title)
|
||||
.AddText(message)
|
||||
.Show();
|
||||
}
|
||||
}
|
||||
|
||||
public static class ExternalCall
|
||||
{
|
||||
@@ -51,7 +64,7 @@ namespace OnDoc.Klassen
|
||||
public static string dokumenttypnr { get; set; } = "0";
|
||||
public static string Interaktion { get; set; } = "Yes";
|
||||
public static string showdoc { get; set; } = "Yes";
|
||||
public static Boolean parseparams()
|
||||
public static Boolean parseparams()
|
||||
{
|
||||
if (executed) return false;
|
||||
string sparam = sourceparam.Substring(sourceparam.IndexOf('?') + 1, sourceparam.Length - (sourceparam.IndexOf('?') + 1));
|
||||
|
||||
Reference in New Issue
Block a user