Update nach EDK-Read
This commit is contained in:
@@ -202,6 +202,7 @@
|
||||
<Compile Include="Klassen\clsStaticValues.cs" />
|
||||
<Compile Include="Klassen\clstheming.cs" />
|
||||
<Compile Include="Klassen\clsWordEdit.cs" />
|
||||
<Compile Include="Klassen\EDKFile.cs" />
|
||||
<Compile Include="Klassen\EventHandler.cs" />
|
||||
<Compile Include="Klassen\Factory.cs" />
|
||||
<Compile Include="Program.cs" />
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
|
||||
<StartArguments>shodoc:%3fpartnernr=1000210&vorlagenr=125&interaktion=NO&showdoc=YES&funktion=Createdoc</StartArguments>
|
||||
<StartArguments>E:\Software-Projekte\OnDoc\EDK_Dateien\3bv.edk</StartArguments>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<PublishUrlHistory>publish\</PublishUrlHistory>
|
||||
|
||||
137
Client/Klassen/EDKFile.cs
Normal file
137
Client/Klassen/EDKFile.cs
Normal file
@@ -0,0 +1,137 @@
|
||||
using Microsoft.Office.Interop.Excel;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using Syncfusion.Windows.Forms.Tools.Win32API;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Web.UI.WebControls;
|
||||
using System.Xml;
|
||||
using System.Xml.Linq;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
|
||||
namespace OnDoc.Klassen
|
||||
{
|
||||
public enum EDK_ActionType
|
||||
{
|
||||
AnzeigePartnerdossier = 1,
|
||||
DokumentAnzeige = 2,
|
||||
DokumentErstellung = 3,
|
||||
DokumentBearbeitung = 4,
|
||||
Statusmutation = 5,
|
||||
HostDokumentAnzeige = 6,
|
||||
UVMDokumentanzeige = 7,
|
||||
ZVDokumentanzeige = 8,
|
||||
DokLoeschung = 9,
|
||||
AusHyperlink = 10
|
||||
}
|
||||
|
||||
public class EDK_Parameters
|
||||
{
|
||||
private string name { get; set; }
|
||||
private string value { get; set; }
|
||||
|
||||
public EDK_Parameters(string name, string value)
|
||||
{
|
||||
this.name = name;
|
||||
this.value = value;
|
||||
}
|
||||
}
|
||||
|
||||
public class EDK_Dokumentwerte
|
||||
{
|
||||
private string name { get; set; }
|
||||
private string value { get; set; }
|
||||
|
||||
public EDK_Dokumentwerte (string name, string value)
|
||||
{
|
||||
this.name=name;
|
||||
this.value=value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public static class EDK_Data
|
||||
{
|
||||
public static EDK_ActionType action { get; set; }
|
||||
public static string creatortg { get; set; }
|
||||
public static string source { get; set; }
|
||||
public static bool executed { get; set; }
|
||||
public static bool toexecute { get; set; }
|
||||
public static List<EDK_Parameters> parameters { get; set; }
|
||||
public static List<EDK_Dokumentwerte> dokumentwerte { get; set; }
|
||||
|
||||
|
||||
|
||||
public static void Load_EDK_File(string filename)
|
||||
{
|
||||
//XmlSerializer serializer = new XmlSerializer(typeof(Action));
|
||||
//using (StringReader reader = new StringReader(filename))
|
||||
//{
|
||||
// var test = (Action)serializer.Deserialize(reader);
|
||||
//}
|
||||
|
||||
|
||||
var doc = new XmlDocument();
|
||||
try
|
||||
{
|
||||
doc.Load(filename);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
// read header elements
|
||||
action = (EDK_ActionType)Enum.Parse(typeof(EDK_ActionType), doc.SelectSingleNode("action/actionId").InnerText, true);
|
||||
creatortg = doc.SelectSingleNode("action/creatorTg").InnerText;
|
||||
source = doc.SelectSingleNode("action/sourceApplication").InnerText;
|
||||
|
||||
XmlElement RootNode = doc.DocumentElement;
|
||||
XmlNodeList nodeList = RootNode.ChildNodes;
|
||||
XmlNodeList dokwerte = RootNode.LastChild.ChildNodes;
|
||||
List<EDK_Parameters> Params = new List<EDK_Parameters>();
|
||||
List<EDK_Dokumentwerte> Dokwerte = new List<EDK_Dokumentwerte>();
|
||||
if (nodeList.Count > 0)
|
||||
{
|
||||
string value;
|
||||
string name;
|
||||
var loopTo = nodeList.Count - 1;
|
||||
for (int i = 0; i < nodeList.Count - 1; i++)
|
||||
{
|
||||
value = nodeList.Item(i).InnerText;
|
||||
name = nodeList.Item(i).LocalName;
|
||||
Params.Add(new EDK_Parameters(name, value));
|
||||
}
|
||||
}
|
||||
parameters = Params;
|
||||
|
||||
if (dokwerte.Count > 0)
|
||||
{
|
||||
for (int i = 0; i < dokwerte.Count - 1; i++)
|
||||
{
|
||||
XmlNodeList XNode = dokwerte[i].ChildNodes;
|
||||
string value;
|
||||
string name;
|
||||
value = XNode[1].InnerText;
|
||||
name = XNode[0].InnerText;
|
||||
Dokwerte.Add(new EDK_Dokumentwerte(name, value));
|
||||
}
|
||||
dokumentwerte = Dokwerte;
|
||||
|
||||
if (parameters.Count > 0)
|
||||
{
|
||||
executed = false;
|
||||
toexecute = true;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -38,10 +38,9 @@ namespace OnDoc.Klassen
|
||||
StaticValues.UserID = "Stefan Hutter";
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
public static class ExternalCall
|
||||
{
|
||||
public static bool executed { get; set; } = false;
|
||||
|
||||
@@ -17,6 +17,10 @@ namespace OnDoc
|
||||
{
|
||||
internal static class Program
|
||||
{
|
||||
|
||||
/// Args
|
||||
/// shodoc:?partnernr=1000210&vorlagenr=125&interaktion=NO&showdoc=YES&funktion=Createdoc
|
||||
/// E:\Software-Projekte\OnDoc\EDK_Dateien\3bv.edk
|
||||
/// <summary>
|
||||
/// Der Haupteinstiegspunkt für die Anwendung.
|
||||
/// </summary>
|
||||
@@ -32,13 +36,27 @@ namespace OnDoc
|
||||
ExternalCall.sourceparam = "";
|
||||
if (args.Length > 0)
|
||||
{
|
||||
AppParams.init();
|
||||
//MessageBox.Show(AppParams.tempdir);
|
||||
string destfile = AppParams.tempdir + "tmpfile.tmp";
|
||||
using (StreamWriter outputfile = new StreamWriter(destfile))
|
||||
if (args[0].ToString().ToUpper().Substring(args[0].ToString().Length - 4, 4) == ".EDK")
|
||||
{
|
||||
outputfile.WriteLine(Uri.UnescapeDataString(args[0]));
|
||||
outputfile.Close();
|
||||
EDK_Data.Load_EDK_File(args[0]);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (args[0].ToString().ToUpper().IndexOf("PARTNERNR") > 0)
|
||||
{
|
||||
AppParams.init();
|
||||
//MessageBox.Show(AppParams.tempdir);
|
||||
string destfile = AppParams.tempdir + "tmpfile.tmp";
|
||||
using (StreamWriter outputfile = new StreamWriter(destfile))
|
||||
{
|
||||
outputfile.WriteLine(Uri.UnescapeDataString(args[0]));
|
||||
outputfile.Close();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
MessageBox.Show("Die Übergabeparemeter '" + args[0].ToString()+"' sind ungültig","Aufruffehler",MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
3
Client/Start.Designer.cs
generated
3
Client/Start.Designer.cs
generated
@@ -104,11 +104,13 @@
|
||||
//
|
||||
// timer1
|
||||
//
|
||||
this.timer1.Enabled = true;
|
||||
this.timer1.Interval = 3000;
|
||||
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
|
||||
//
|
||||
// dokList1
|
||||
//
|
||||
this.dokList1.datafilter = "";
|
||||
this.dokList1.docartnr = 0;
|
||||
this.dokList1.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.dokList1.Location = new System.Drawing.Point(2, 2);
|
||||
@@ -116,6 +118,7 @@
|
||||
this.dokList1.Name = "dokList1";
|
||||
this.dokList1.partnernr = 0;
|
||||
this.dokList1.profilnr = 0;
|
||||
this.dokList1.selected_cellvalue = null;
|
||||
this.dokList1.selected_dokumentid = null;
|
||||
this.dokList1.Size = new System.Drawing.Size(1584, 796);
|
||||
this.dokList1.TabIndex = 4;
|
||||
|
||||
@@ -107,10 +107,7 @@ namespace OnDoc
|
||||
|
||||
public void External_Call()
|
||||
{
|
||||
|
||||
timer1.Start();
|
||||
|
||||
|
||||
}
|
||||
|
||||
private void Start_Load(object sender, EventArgs e)
|
||||
@@ -118,20 +115,16 @@ namespace OnDoc
|
||||
|
||||
if (ExternalCall.sourceparam.Trim().ToString() !="" && ExternalCall.executed == false)
|
||||
{
|
||||
|
||||
External_Call();
|
||||
}
|
||||
if (EDK_Data.toexecute == true)
|
||||
{
|
||||
exec_edk();
|
||||
}
|
||||
//partnerTree1.mitarbeiternr = AppParams.CurrentMitarbieter;
|
||||
}
|
||||
|
||||
//private void rbcomboboxprofil_DropDownItemClicked(object sender, RibbonItemEventArgs e)
|
||||
//{
|
||||
// Logging.Logging.Debug("rbcomboboxprofil_DropDownItemClicked", "start.cs", "");
|
||||
// //partnerTree1.Refresh(-1, AppParams.CurrentMitarbieter, Convert.ToInt32(e.Item.Tag.ToString()));
|
||||
// //MessageBox.Show(e.Item.Tag.ToString());
|
||||
//}
|
||||
|
||||
private void dokList1_Load(object sender, EventArgs e)
|
||||
private void dokList1_Load(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
@@ -177,5 +170,13 @@ namespace OnDoc
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private void exec_edk()
|
||||
{
|
||||
if (EDK_Data.action == EDK_ActionType.DokumentErstellung)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -153,13 +153,13 @@
|
||||
<data name="ribbonButton1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
vgAADr4B6kKxwAAAABpJREFUWEftwQEBAAAAgiD/r25IQAAAAMC5GhAgAAGdeElDAAAAAElFTkSuQmCC
|
||||
vAAADrwBlbxySQAAABpJREFUWEftwQEBAAAAgiD/r25IQAAAAMC5GhAgAAGdeElDAAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<data name="ribbonButton1.LargeImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
vgAADr4B6kKxwAAAABpJREFUWEftwQEBAAAAgiD/r25IQAAAAMC5GhAgAAGdeElDAAAAAElFTkSuQmCC
|
||||
vAAADrwBlbxySQAAABpJREFUWEftwQEBAAAAgiD/r25IQAAAAMC5GhAgAAGdeElDAAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<data name="ribbonButton1.SmallImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
|
||||
50
Client/UIControls/DokList.Designer.cs
generated
50
Client/UIControls/DokList.Designer.cs
generated
@@ -39,6 +39,7 @@
|
||||
this.barcodeDemoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.vertragPDFDEMOToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.zellenwertInZwischenablageKopierenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.druckenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
|
||||
this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
|
||||
this.tsrbvorschau = new System.Windows.Forms.ToolStripComboBox();
|
||||
@@ -79,9 +80,11 @@
|
||||
this.RibbonPanelDoklist = new System.Windows.Forms.RibbonPanel();
|
||||
this.RibbonButtonRefresh = new System.Windows.Forms.RibbonButton();
|
||||
this.RibbonTabAdmin = new System.Windows.Forms.RibbonTab();
|
||||
this.ribbonPanel1 = new System.Windows.Forms.RibbonPanel();
|
||||
this.RibbonButtonDokumenttyp = new System.Windows.Forms.RibbonButton();
|
||||
this.RibbonButtonVorlagen = new System.Windows.Forms.RibbonButton();
|
||||
this.pdfConfig1 = new Syncfusion.Pdf.PdfConfig();
|
||||
this.RibbonButtonCreateNewDoc = new System.Windows.Forms.RibbonButton();
|
||||
this.druckenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
((System.ComponentModel.ISupportInitialize)(this.sfDataGrid1)).BeginInit();
|
||||
this.ctxMenuDokList.SuspendLayout();
|
||||
this.toolStrip1.SuspendLayout();
|
||||
@@ -124,7 +127,7 @@
|
||||
this.zellenwertInZwischenablageKopierenToolStripMenuItem,
|
||||
this.druckenToolStripMenuItem});
|
||||
this.ctxMenuDokList.Name = "ctxMenuDokList";
|
||||
this.ctxMenuDokList.Size = new System.Drawing.Size(280, 202);
|
||||
this.ctxMenuDokList.Size = new System.Drawing.Size(280, 180);
|
||||
//
|
||||
// dokumentAnzeigenToolStripMenuItem
|
||||
//
|
||||
@@ -180,6 +183,13 @@
|
||||
this.zellenwertInZwischenablageKopierenToolStripMenuItem.Text = "Zellenwert in Zwischenablage kopieren";
|
||||
this.zellenwertInZwischenablageKopierenToolStripMenuItem.Click += new System.EventHandler(this.zellenwertInZwischenablageKopierenToolStripMenuItem_Click);
|
||||
//
|
||||
// druckenToolStripMenuItem
|
||||
//
|
||||
this.druckenToolStripMenuItem.Name = "druckenToolStripMenuItem";
|
||||
this.druckenToolStripMenuItem.Size = new System.Drawing.Size(279, 22);
|
||||
this.druckenToolStripMenuItem.Text = "Drucken";
|
||||
this.druckenToolStripMenuItem.Click += new System.EventHandler(this.druckenToolStripMenuItem_Click);
|
||||
//
|
||||
// toolStrip1
|
||||
//
|
||||
this.toolStrip1.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||
@@ -570,8 +580,34 @@
|
||||
// RibbonTabAdmin
|
||||
//
|
||||
this.RibbonTabAdmin.Name = "RibbonTabAdmin";
|
||||
this.RibbonTabAdmin.Panels.Add(this.ribbonPanel1);
|
||||
this.RibbonTabAdmin.Text = "Administration";
|
||||
//
|
||||
// ribbonPanel1
|
||||
//
|
||||
this.ribbonPanel1.ButtonMoreVisible = false;
|
||||
this.ribbonPanel1.FlowsTo = System.Windows.Forms.RibbonPanelFlowDirection.Right;
|
||||
this.ribbonPanel1.Items.Add(this.RibbonButtonDokumenttyp);
|
||||
this.ribbonPanel1.Items.Add(this.RibbonButtonVorlagen);
|
||||
this.ribbonPanel1.Name = "ribbonPanel1";
|
||||
this.ribbonPanel1.Text = "ribbonPanel1";
|
||||
//
|
||||
// RibbonButtonDokumenttyp
|
||||
//
|
||||
this.RibbonButtonDokumenttyp.Image = ((System.Drawing.Image)(resources.GetObject("RibbonButtonDokumenttyp.Image")));
|
||||
this.RibbonButtonDokumenttyp.LargeImage = ((System.Drawing.Image)(resources.GetObject("RibbonButtonDokumenttyp.LargeImage")));
|
||||
this.RibbonButtonDokumenttyp.Name = "RibbonButtonDokumenttyp";
|
||||
this.RibbonButtonDokumenttyp.SmallImage = ((System.Drawing.Image)(resources.GetObject("RibbonButtonDokumenttyp.SmallImage")));
|
||||
this.RibbonButtonDokumenttyp.Text = "Dokumenttyp";
|
||||
//
|
||||
// RibbonButtonVorlagen
|
||||
//
|
||||
this.RibbonButtonVorlagen.Image = ((System.Drawing.Image)(resources.GetObject("RibbonButtonVorlagen.Image")));
|
||||
this.RibbonButtonVorlagen.LargeImage = ((System.Drawing.Image)(resources.GetObject("RibbonButtonVorlagen.LargeImage")));
|
||||
this.RibbonButtonVorlagen.Name = "RibbonButtonVorlagen";
|
||||
this.RibbonButtonVorlagen.SmallImage = ((System.Drawing.Image)(resources.GetObject("RibbonButtonVorlagen.SmallImage")));
|
||||
this.RibbonButtonVorlagen.Text = "Vorlagen";
|
||||
//
|
||||
// RibbonButtonCreateNewDoc
|
||||
//
|
||||
this.RibbonButtonCreateNewDoc.Image = global::OnDoc.Properties.Resources.NewDoc_32x32_32;
|
||||
@@ -581,13 +617,6 @@
|
||||
this.RibbonButtonCreateNewDoc.Text = "Dokument";
|
||||
this.RibbonButtonCreateNewDoc.Click += new System.EventHandler(this.RibbonButtonCreateNewDoc_Click);
|
||||
//
|
||||
// druckenToolStripMenuItem
|
||||
//
|
||||
this.druckenToolStripMenuItem.Name = "druckenToolStripMenuItem";
|
||||
this.druckenToolStripMenuItem.Size = new System.Drawing.Size(279, 22);
|
||||
this.druckenToolStripMenuItem.Text = "Drucken";
|
||||
this.druckenToolStripMenuItem.Click += new System.EventHandler(this.druckenToolStripMenuItem_Click);
|
||||
//
|
||||
// DokList
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
@@ -666,5 +695,8 @@
|
||||
private System.Windows.Forms.RibbonButton RibbonButtonCreateNewDoc;
|
||||
private System.Windows.Forms.ToolStripMenuItem zellenwertInZwischenablageKopierenToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem druckenToolStripMenuItem;
|
||||
private System.Windows.Forms.RibbonPanel ribbonPanel1;
|
||||
private System.Windows.Forms.RibbonButton RibbonButtonDokumenttyp;
|
||||
private System.Windows.Forms.RibbonButton RibbonButtonVorlagen;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -357,6 +357,42 @@
|
||||
HwlkxKJc0Gw7nIj2L2EcX4yAJ6eqqQ6ginIFDHpjsMzbMP7BjK8bLriJWZ1D0M1P4agrjHWWr3enUgBo
|
||||
QiD04bcGdOrb0KE7TKwVpx+1YdxpQrrw7/UUgJpoEU9+nE0mQB5XAEJR2bUh4De6MJTcWL7XngAAAABJ
|
||||
RU5ErkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<data name="RibbonButtonDokumenttyp.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wgAADsIBFShKgAAAABpJREFUWEftwQEBAAAAgiD/r25IQAAAAMC5GhAgAAGdeElDAAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<data name="RibbonButtonDokumenttyp.LargeImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wgAADsIBFShKgAAAABpJREFUWEftwQEBAAAAgiD/r25IQAAAAMC5GhAgAAGdeElDAAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<data name="RibbonButtonDokumenttyp.SmallImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wgAADsIBFShKgAAAABNJREFUOE9jGAWjYBSMAjBgYAAABBAAAadEfGMAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="RibbonButtonVorlagen.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wgAADsIBFShKgAAAABpJREFUWEftwQEBAAAAgiD/r25IQAAAAMC5GhAgAAGdeElDAAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<data name="RibbonButtonVorlagen.LargeImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wgAADsIBFShKgAAAABpJREFUWEftwQEBAAAAgiD/r25IQAAAAMC5GhAgAAGdeElDAAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<data name="RibbonButtonVorlagen.SmallImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||
wgAADsIBFShKgAAAABNJREFUOE9jGAWjYBSMAjBgYAAABBAAAadEfGMAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="pdfConfig1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -15024,3 +15024,51 @@
|
||||
2024-07-18 14:20:25.8347|DEBUG|EDOKA|
|
||||
2024-07-18 14:20:43.4065|DEBUG|EDOKA|
|
||||
2024-07-18 14:20:49.6416|DEBUG|EDOKA|
|
||||
2024-07-18 16:21:30.1833|DEBUG|EDOKA|Start
|
||||
2024-07-19 08:49:28.9877|DEBUG|EDOKA|Start
|
||||
2024-07-19 08:49:29.0498|DEBUG|EDOKA|
|
||||
2024-07-19 08:49:29.0498|DEBUG|EDOKA|
|
||||
2024-07-19 08:49:29.0498|DEBUG|EDOKA|
|
||||
2024-07-19 08:49:29.0498|DEBUG|EDOKA|
|
||||
2024-07-19 08:49:29.1374|DEBUG|EDOKA|Start - Ende
|
||||
2024-07-19 08:55:30.0277|DEBUG|EDOKA|Start
|
||||
2024-07-19 08:55:30.0888|DEBUG|EDOKA|
|
||||
2024-07-19 08:55:30.0888|DEBUG|EDOKA|
|
||||
2024-07-19 08:55:30.0888|DEBUG|EDOKA|
|
||||
2024-07-19 08:55:30.0988|DEBUG|EDOKA|
|
||||
2024-07-19 08:55:30.1667|DEBUG|EDOKA|Start - Ende
|
||||
2024-07-19 08:59:10.9075|DEBUG|EDOKA|Start
|
||||
2024-07-19 08:59:10.9662|DEBUG|EDOKA|
|
||||
2024-07-19 08:59:10.9662|DEBUG|EDOKA|
|
||||
2024-07-19 08:59:10.9662|DEBUG|EDOKA|
|
||||
2024-07-19 08:59:10.9742|DEBUG|EDOKA|
|
||||
2024-07-19 08:59:11.0447|DEBUG|EDOKA|Start - Ende
|
||||
2024-07-19 08:59:17.4100|DEBUG|EDOKA|
|
||||
2024-07-19 08:59:17.4470|DEBUG|EDOKA|
|
||||
2024-07-19 08:59:17.7993|DEBUG|EDOKA|
|
||||
2024-07-19 08:59:17.8429|DEBUG|EDOKA|
|
||||
2024-07-19 08:59:17.8919|DEBUG|EDOKA|
|
||||
2024-07-19 08:59:17.8949|DEBUG|EDOKA|
|
||||
2024-07-19 08:59:17.8949|DEBUG|EDOKA|
|
||||
2024-07-19 08:59:17.8949|DEBUG|EDOKA|
|
||||
2024-07-19 08:59:17.9109|DEBUG|EDOKA|
|
||||
2024-07-19 08:59:17.9109|DEBUG|EDOKA|
|
||||
2024-07-19 08:59:17.9399|DEBUG|EDOKA|
|
||||
2024-07-19 09:00:14.1483|DEBUG|EDOKA|Start
|
||||
2024-07-19 09:00:14.2080|DEBUG|EDOKA|
|
||||
2024-07-19 09:00:14.2080|DEBUG|EDOKA|
|
||||
2024-07-19 09:00:14.2080|DEBUG|EDOKA|
|
||||
2024-07-19 09:00:14.2080|DEBUG|EDOKA|
|
||||
2024-07-19 09:00:14.2875|DEBUG|EDOKA|Start - Ende
|
||||
2024-07-19 09:06:21.2757|DEBUG|EDOKA|Start
|
||||
2024-07-19 09:06:21.3356|DEBUG|EDOKA|
|
||||
2024-07-19 09:06:21.3356|DEBUG|EDOKA|
|
||||
2024-07-19 09:06:21.3356|DEBUG|EDOKA|
|
||||
2024-07-19 09:06:21.3526|DEBUG|EDOKA|
|
||||
2024-07-19 09:06:21.4201|DEBUG|EDOKA|Start - Ende
|
||||
2024-07-19 09:49:57.9494|DEBUG|EDOKA|Start
|
||||
2024-07-19 09:49:58.0085|DEBUG|EDOKA|
|
||||
2024-07-19 09:49:58.0085|DEBUG|EDOKA|
|
||||
2024-07-19 09:49:58.0085|DEBUG|EDOKA|
|
||||
2024-07-19 09:49:58.0085|DEBUG|EDOKA|
|
||||
2024-07-19 09:49:58.0888|DEBUG|EDOKA|Start - Ende
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
0e96e841bafed15f8dc556cd5af78ed568f09a88caaf8ca805fb32c56e392722
|
||||
c15d02835333e1b836eea7ced198ac5906af7cbb62c10ba6322f7413272a50d2
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
14
Database/VSdoc/index.html_rename
Normal file
14
Database/VSdoc/index.html_rename
Normal file
@@ -0,0 +1,14 @@
|
||||
<html>
|
||||
<head>
|
||||
<link rel="icon" href="favicon.ico">
|
||||
<title>Default page</title>
|
||||
<META http-equiv="refresh" content="0;URL=topic_0000000000000186.html">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="vsdocman_overrides.css">
|
||||
</head>
|
||||
<body style="direction: ltr;">
|
||||
<center>
|
||||
<a href="topic_0000000000000186.html">Go to default page</a>
|
||||
</center>
|
||||
</body>
|
||||
</html>
|
||||
91
Database/VSdoc/search--.html_rename
Normal file
91
Database/VSdoc/search--.html_rename
Normal file
@@ -0,0 +1,91 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="GENERATOR" content="VSdocman - documentation generator; https://www.helixoft.com" />
|
||||
<link rel="icon" href="favicon.ico">
|
||||
<title>Search</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="msdn2019/toc.css" />
|
||||
<script src="msdn2019/toc.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="msdn2019/msdn2019.css">
|
||||
<script src="msdn2019/msdn2019.js" type="text/javascript"></script>
|
||||
<script src="msdn2019/search.js"></script>
|
||||
<script src="search--/search_index.js" type="text/javascript"></script>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="vsdocman_overrides.css">
|
||||
</head>
|
||||
|
||||
<body style="direction: ltr;">
|
||||
<div id="topic">
|
||||
<!--HEADER START-->
|
||||
<div id="header">
|
||||
<div id="header-top-container">
|
||||
<div id="header-top-parent-container1">
|
||||
<div id="header-top-container1">
|
||||
<div id="runningHeaderText1"><a id="headerLogo" href="#" onclick="window.location.href = getCssCustomProperty('--headerLogoLink'); return false;">logo</a></div>
|
||||
<div id="runningHeaderText1b"><script>
|
||||
document.write(getCssCustomProperty('--headerTopCustomLineHtml'));
|
||||
</script></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="header-top-container2">
|
||||
<div id="runningHeaderText">Database Reference</div>
|
||||
|
||||
<div id="search-bar-container">
|
||||
<form id="search-bar" action="search--.html">
|
||||
<input id="HeaderSearchInput" type="search" name="search" placeholder="Search" >
|
||||
<button id="btn-search" class="c-glyph" title="Search">
|
||||
<span>Search</span>
|
||||
</button>
|
||||
</form>
|
||||
<button id="cancel-search" class="cancel-search" title="Cancel">
|
||||
<span>Cancel</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<hr />
|
||||
<div id="header-breadcrumbs">
|
||||
<ul>
|
||||
<li>Search</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="headerLinks">
|
||||
</div>
|
||||
<hr />
|
||||
</div>
|
||||
<!--HEADER END-->
|
||||
<div id="mainSection">
|
||||
<div id="mainBody">
|
||||
|
||||
<div id="search-results-section">
|
||||
<h1 class="title"><span id="search-results-heading-count"></span>
|
||||
<span id="search-results-heading-text">Search results for</span>
|
||||
<span id="search-results-heading-phrase"></span></h1>
|
||||
|
||||
<div id="search-results-container"></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<div id="footer-container">
|
||||
<p>Generated with <a target="_top" href="http://www.helixoft.com/vsdocman/overview.html">VSdocman</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
<!--
|
||||
try {
|
||||
search();
|
||||
} catch (ex) {}
|
||||
//-->
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1 +1 @@
|
||||
search_result['0']=["topic_0000000000000000.html","edoka_dms Namespace",""];
|
||||
search_result['0']=["index.html","Default page",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['1']=["topic_0000000000000001.html","clsConnectionProvider Class",""];
|
||||
search_result['1']=["search--.html","Search",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['10']=["topic_0000000000000004.html","clsConnectionProvider.Dispose (Boolean) Method",""];
|
||||
search_result['10']=["topic_0000000000000003.html","clsConnectionProvider.Dispose Method",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['100']=["topic_000000000000004D.html","clsDokument.iMa_eingangsarchivierung Property",""];
|
||||
search_result['100']=["topic_000000000000004B.html","clsDokument.bEingangsarchiviert Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['101']=["topic_000000000000004E.html","clsDokument.iStatus_edoka_batch_ausgang Property",""];
|
||||
search_result['101']=["topic_000000000000004C.html","clsDokument.daDatum_eingangsarchivierung Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['102']=["topic_000000000000004F.html","clsDokument.iStatus_edoka_batch_eingang Property",""];
|
||||
search_result['102']=["topic_000000000000004D.html","clsDokument.iMa_eingangsarchivierung Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['103']=["topic_0000000000000050.html","clsDokument.sLoeschgrund Property",""];
|
||||
search_result['103']=["topic_000000000000004E.html","clsDokument.iStatus_edoka_batch_ausgang Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['104']=["topic_0000000000000051.html","clsDokument.iColdstatus Property",""];
|
||||
search_result['104']=["topic_000000000000004F.html","clsDokument.iStatus_edoka_batch_eingang Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['105']=["topic_0000000000000052.html","clsDokument.sVersandadresse Property",""];
|
||||
search_result['105']=["topic_0000000000000050.html","clsDokument.sLoeschgrund Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['106']=["topic_0000000000000053.html","clsDokument.iBarcodenr Property",""];
|
||||
search_result['106']=["topic_0000000000000051.html","clsDokument.iColdstatus Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['107']=["topic_0000000000000054.html","clsDokument.sColddokumentid Property",""];
|
||||
search_result['107']=["topic_0000000000000052.html","clsDokument.sVersandadresse Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['108']=["topic_0000000000000055.html","clsDokument.bAmsdokument Property",""];
|
||||
search_result['108']=["topic_0000000000000053.html","clsDokument.iBarcodenr Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['109']=["topic_0000000000000056.html","clsDokument.iVerantwortlich Property",""];
|
||||
search_result['109']=["topic_0000000000000054.html","clsDokument.sColddokumentid Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['11']=["topic_0000000000000004_overloads--.html","clsConnectionProvider.Dispose Method",""];
|
||||
search_result['11']=["topic_0000000000000003_overloads--.html","clsConnectionProvider.Dispose Method",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['110']=["topic_0000000000000057.html","clsDokument.iZustaendiger Property",""];
|
||||
search_result['110']=["topic_0000000000000055.html","clsDokument.bAmsdokument Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['111']=["topic_0000000000000058.html","clsDokument.iUnterschriftlinks Property",""];
|
||||
search_result['111']=["topic_0000000000000056.html","clsDokument.iVerantwortlich Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['112']=["topic_0000000000000059.html","clsDokument.iUnterschriftrechts Property",""];
|
||||
search_result['112']=["topic_0000000000000057.html","clsDokument.iZustaendiger Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['113']=["topic_000000000000005A.html","clsDokument.iPostzustellung Property",""];
|
||||
search_result['113']=["topic_0000000000000058.html","clsDokument.iUnterschriftlinks Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['114']=["topic_000000000000005B.html","clsDokument.bAktiv Property",""];
|
||||
search_result['114']=["topic_0000000000000059.html","clsDokument.iUnterschriftrechts Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['115']=["topic_000000000000005C.html","clsDokument.iStatusnr Property",""];
|
||||
search_result['115']=["topic_000000000000005A.html","clsDokument.iPostzustellung Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['116']=["topic_000000000000005D.html","clsDokument.bZustaendig_kube Property",""];
|
||||
search_result['116']=["topic_000000000000005B.html","clsDokument.bAktiv Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['117']=["topic_000000000000005E.html","clsDokument.sZustelladresse Property",""];
|
||||
search_result['117']=["topic_000000000000005C.html","clsDokument.iStatusnr Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['118']=["topic_000000000000005F.html","clsDokument.bVertraulich Property",""];
|
||||
search_result['118']=["topic_000000000000005D.html","clsDokument.bZustaendig_kube Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['119']=["topic_0000000000000060.html","clsDokument.daErstellungsdatum Property",""];
|
||||
search_result['119']=["topic_000000000000005E.html","clsDokument.sZustelladresse Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['12']=["topic_0000000000000005.html","clsConnectionProvider.OpenConnection Method",""];
|
||||
search_result['12']=["topic_0000000000000004.html","clsConnectionProvider.Dispose (Boolean) Method",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['120']=["topic_0000000000000061.html","clsDokument.daArchivierungsdatum Property",""];
|
||||
search_result['120']=["topic_000000000000005F.html","clsDokument.bVertraulich Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['121']=["topic_0000000000000062.html","clsDokument.daTermin Property",""];
|
||||
search_result['121']=["topic_0000000000000060.html","clsDokument.daErstellungsdatum Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['122']=["topic_0000000000000063.html","clsDokument.iMutiererteam Property",""];
|
||||
search_result['122']=["topic_0000000000000061.html","clsDokument.daArchivierungsdatum Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['123']=["topic_0000000000000064.html","clsDokument.sAnredezustelladresse Property",""];
|
||||
search_result['123']=["topic_0000000000000062.html","clsDokument.daTermin Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['124']=["topic_0000000000000065.html","clsDokument.iDokdurchkubeweitergegeben Property",""];
|
||||
search_result['124']=["topic_0000000000000063.html","clsDokument.iMutiererteam Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['125']=["topic_0000000000000066.html","clsDokument.iBck Property",""];
|
||||
search_result['125']=["topic_0000000000000064.html","clsDokument.sAnredezustelladresse Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['126']=["topic_0000000000000067.html","clsDokument.iBearbeitungszeit_in_minuten Property",""];
|
||||
search_result['126']=["topic_0000000000000065.html","clsDokument.iDokdurchkubeweitergegeben Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['127']=["topic_0000000000000068.html","clsDokument.iMonierung_in_tagen Property",""];
|
||||
search_result['127']=["topic_0000000000000066.html","clsDokument.iBck Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['128']=["topic_0000000000000069.html","clsDokument.iAufbewahrung_elektronisch Property",""];
|
||||
search_result['128']=["topic_0000000000000067.html","clsDokument.iBearbeitungszeit_in_minuten Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['129']=["topic_000000000000006A.html","clsDokument.iAufbewahrung_phaysisch Property",""];
|
||||
search_result['129']=["topic_0000000000000068.html","clsDokument.iMonierung_in_tagen Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['13']=["topic_0000000000000006.html","clsConnectionProvider.BeginTransaction Method",""];
|
||||
search_result['13']=["topic_0000000000000004_overloads--.html","clsConnectionProvider.Dispose Method",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['130']=["topic_000000000000006B.html","clsDokument.iIn_edoka_datenbank Property",""];
|
||||
search_result['130']=["topic_0000000000000069.html","clsDokument.iAufbewahrung_elektronisch Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['131']=["topic_000000000000006C.html","clsDokument.iBearbeitung_nach_abschluss Property",""];
|
||||
search_result['131']=["topic_000000000000006A.html","clsDokument.iAufbewahrung_phaysisch Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['132']=["topic_000000000000006D.html","clsDokument.sColdfolder Property",""];
|
||||
search_result['132']=["topic_000000000000006B.html","clsDokument.iIn_edoka_datenbank Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['133']=["topic_000000000000006E.html","clsDokument.sColdschema Property",""];
|
||||
search_result['133']=["topic_000000000000006C.html","clsDokument.iBearbeitung_nach_abschluss Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['134']=["topic_000000000000006F.html","clsDokument.daErinnerungam Property",""];
|
||||
search_result['134']=["topic_000000000000006D.html","clsDokument.sColdfolder Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['135']=["topic_0000000000000070.html","clsDokument.sFANummer1 Property",""];
|
||||
search_result['135']=["topic_000000000000006E.html","clsDokument.sColdschema Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['136']=["topic_0000000000000071.html","clsDokument.sFANummer2 Property",""];
|
||||
search_result['136']=["topic_000000000000006F.html","clsDokument.daErinnerungam Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['137']=["topic_0000000000000072.html","clsDokument.bFapartnerwechsel Property",""];
|
||||
search_result['137']=["topic_0000000000000070.html","clsDokument.sFANummer1 Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['138']=["topic_0000000000000073.html","clsDokument.bFAStatuswechsel Property",""];
|
||||
search_result['138']=["topic_0000000000000071.html","clsDokument.sFANummer2 Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['139']=["topic_0000000000000074.html","clsDokument.bFAVerantwortlicherwechsel Property",""];
|
||||
search_result['139']=["topic_0000000000000072.html","clsDokument.bFapartnerwechsel Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['14']=["topic_0000000000000007.html","clsConnectionProvider.CommitTransaction Method",""];
|
||||
search_result['14']=["topic_0000000000000005.html","clsConnectionProvider.OpenConnection Method",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['140']=["topic_0000000000000075.html","clsDokument.sBedRDokumentid Property",""];
|
||||
search_result['140']=["topic_0000000000000073.html","clsDokument.bFAStatuswechsel Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['141']=["topic_0000000000000076.html","clsDokument.bBedRRetourniert Property",""];
|
||||
search_result['141']=["topic_0000000000000074.html","clsDokument.bFAVerantwortlicherwechsel Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['142']=["topic_0000000000000077.html","clsDokument.iBRVernichtungnachTagen Property",""];
|
||||
search_result['142']=["topic_0000000000000075.html","clsDokument.sBedRDokumentid Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['143']=["topic_0000000000000078.html","clsDokument.bOfficedokumentgeloescht Property",""];
|
||||
search_result['143']=["topic_0000000000000076.html","clsDokument.bBedRRetourniert Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['144']=["topic_0000000000000079.html","clsDokument.sFanummer3 Property",""];
|
||||
search_result['144']=["topic_0000000000000077.html","clsDokument.iBRVernichtungnachTagen Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['145']=["topic_000000000000007A.html","clsDokument.sVvnr Property",""];
|
||||
search_result['145']=["topic_0000000000000078.html","clsDokument.bOfficedokumentgeloescht Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['146']=["topic_000000000000007B.html","clsDokument.iAnzeigeStatus Property",""];
|
||||
search_result['146']=["topic_0000000000000079.html","clsDokument.sFanummer3 Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['147']=["topic_000000000000007C.html","clsDokument.bBl_scan Property",""];
|
||||
search_result['147']=["topic_000000000000007A.html","clsDokument.sVvnr Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['148']=["topic_000000000000007D.html","clsDokument.bBldossier Property",""];
|
||||
search_result['148']=["topic_000000000000007B.html","clsDokument.iAnzeigeStatus Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['149']=["topic_000000000000007E.html","clsDokument.iNoEdit Property",""];
|
||||
search_result['149']=["topic_000000000000007C.html","clsDokument.bBl_scan Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['15']=["topic_0000000000000008.html","clsConnectionProvider.RollbackTransaction Method",""];
|
||||
search_result['15']=["topic_0000000000000006.html","clsConnectionProvider.BeginTransaction Method",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['150']=["topic_000000000000007F.html","clsDokument_status Class",""];
|
||||
search_result['150']=["topic_000000000000007D.html","clsDokument.bBldossier Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['151']=["topic_000000000000007F_attached_props--.html","clsDokument_status Attached Properties",""];
|
||||
search_result['151']=["topic_000000000000007E.html","clsDokument.iNoEdit Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['152']=["topic_000000000000007F_events--.html","clsDokument_status Events",""];
|
||||
search_result['152']=["topic_000000000000007F.html","clsDokument_status Class",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['153']=["topic_000000000000007F_methods--.html","clsDokument_status Methods",""];
|
||||
search_result['153']=["topic_000000000000007F_attached_props--.html","clsDokument_status Attached Properties",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['154']=["topic_000000000000007F_props--.html","clsDokument_status Properties",""];
|
||||
search_result['154']=["topic_000000000000007F_events--.html","clsDokument_status Events",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['155']=["topic_000000000000007F_vars--.html","clsDokument_status Fields",""];
|
||||
search_result['155']=["topic_000000000000007F_methods--.html","clsDokument_status Methods",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['156']=["topic_0000000000000080.html","clsDokument_status Constructor",""];
|
||||
search_result['156']=["topic_000000000000007F_props--.html","clsDokument_status Properties",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['157']=["topic_0000000000000081.html","clsDokument_status.Insert Method",""];
|
||||
search_result['157']=["topic_000000000000007F_vars--.html","clsDokument_status Fields",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['158']=["topic_0000000000000082.html","clsDokument_status.Update Method",""];
|
||||
search_result['158']=["topic_0000000000000080.html","clsDokument_status Constructor",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['159']=["topic_0000000000000083.html","clsDokument_status.Delete Method",""];
|
||||
search_result['159']=["topic_0000000000000081.html","clsDokument_status.Insert Method",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['16']=["topic_0000000000000009.html","clsConnectionProvider.SaveTransaction Method",""];
|
||||
search_result['16']=["topic_0000000000000007.html","clsConnectionProvider.CommitTransaction Method",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['160']=["topic_0000000000000084.html","clsDokument_status.SelectOne Method",""];
|
||||
search_result['160']=["topic_0000000000000082.html","clsDokument_status.Update Method",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['161']=["topic_0000000000000085.html","clsDokument_status.SelectAll Method",""];
|
||||
search_result['161']=["topic_0000000000000083.html","clsDokument_status.Delete Method",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['162']=["topic_0000000000000086.html","clsDokument_status.iDokument_statusnr Property",""];
|
||||
search_result['162']=["topic_0000000000000084.html","clsDokument_status.SelectOne Method",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['163']=["topic_0000000000000087.html","clsDokument_status.sDokumenitid Property",""];
|
||||
search_result['163']=["topic_0000000000000085.html","clsDokument_status.SelectAll Method",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['164']=["topic_0000000000000088.html","clsDokument_status.iStatus_bezeichnungnr Property",""];
|
||||
search_result['164']=["topic_0000000000000086.html","clsDokument_status.iDokument_statusnr Property",""];
|
||||
@@ -1 +1 @@
|
||||
search_result['165']=["topic_0000000000000089.html","clsDokument_status.sBezeichnung Property",""];
|
||||
search_result['165']=["topic_0000000000000087.html","clsDokument_status.sDokumenitid Property",""];
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user