update 20240925
This commit is contained in:
@@ -35,6 +35,9 @@
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="OnDocOffice">
|
||||
<HintPath>..\OnDocOffice\bin\Debug\OnDocOffice.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="SkiaSharp, Version=2.88.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\SkiaSharp.2.88.6\lib\net462\SkiaSharp.dll</HintPath>
|
||||
</Reference>
|
||||
|
||||
62
DocIO_Demo_SHU/Form1.Designer.cs
generated
62
DocIO_Demo_SHU/Form1.Designer.cs
generated
@@ -38,6 +38,11 @@
|
||||
this.textBox1 = new System.Windows.Forms.TextBox();
|
||||
this.button1 = new System.Windows.Forms.Button();
|
||||
this.treeViewAdv1 = new Syncfusion.Windows.Forms.Tools.TreeViewAdv();
|
||||
this.textBox2 = new System.Windows.Forms.TextBox();
|
||||
this.label2 = new System.Windows.Forms.Label();
|
||||
this.label3 = new System.Windows.Forms.Label();
|
||||
this.textBox3 = new System.Windows.Forms.TextBox();
|
||||
this.button2 = new System.Windows.Forms.Button();
|
||||
((System.ComponentModel.ISupportInitialize)(this.treeViewAdv1)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
@@ -66,6 +71,7 @@
|
||||
this.button1.TabIndex = 2;
|
||||
this.button1.Text = "button1";
|
||||
this.button1.UseVisualStyleBackColor = true;
|
||||
this.button1.Click += new System.EventHandler(this.button1_Click);
|
||||
//
|
||||
// treeViewAdv1
|
||||
//
|
||||
@@ -88,7 +94,7 @@
|
||||
this.treeViewAdv1.HelpTextControl.TabIndex = 0;
|
||||
this.treeViewAdv1.HelpTextControl.Visible = true;
|
||||
this.treeViewAdv1.InactiveSelectedNodeForeColor = System.Drawing.SystemColors.ControlText;
|
||||
this.treeViewAdv1.Location = new System.Drawing.Point(582, 70);
|
||||
this.treeViewAdv1.Location = new System.Drawing.Point(963, 39);
|
||||
this.treeViewAdv1.MetroColor = System.Drawing.Color.FromArgb(((int)(((byte)(22)))), ((int)(((byte)(165)))), ((int)(((byte)(220)))));
|
||||
this.treeViewAdv1.Name = "treeViewAdv1";
|
||||
treeNodeAdv1.ChildStyle.CheckBoxTickThickness = 1;
|
||||
@@ -175,11 +181,60 @@
|
||||
this.treeViewAdv1.DragLeave += new System.EventHandler(this.treeViewAdv1_DragLeave);
|
||||
this.treeViewAdv1.QueryContinueDrag += new System.Windows.Forms.QueryContinueDragEventHandler(this.treeViewAdv1_QueryContinueDrag);
|
||||
//
|
||||
// textBox2
|
||||
//
|
||||
this.textBox2.Location = new System.Drawing.Point(115, 214);
|
||||
this.textBox2.Name = "textBox2";
|
||||
this.textBox2.Size = new System.Drawing.Size(461, 20);
|
||||
this.textBox2.TabIndex = 5;
|
||||
this.textBox2.Text = "H:\\tssettings\\Edoka\\20240925085336_OFFEDK0002024002449546.doc";
|
||||
//
|
||||
// label2
|
||||
//
|
||||
this.label2.AutoSize = true;
|
||||
this.label2.Location = new System.Drawing.Point(60, 214);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Size = new System.Drawing.Size(49, 13);
|
||||
this.label2.TabIndex = 6;
|
||||
this.label2.Text = "Filename";
|
||||
//
|
||||
// label3
|
||||
//
|
||||
this.label3.AutoSize = true;
|
||||
this.label3.Location = new System.Drawing.Point(60, 248);
|
||||
this.label3.Name = "label3";
|
||||
this.label3.Size = new System.Drawing.Size(45, 13);
|
||||
this.label3.TabIndex = 7;
|
||||
this.label3.Text = "DokTyp";
|
||||
//
|
||||
// textBox3
|
||||
//
|
||||
this.textBox3.Location = new System.Drawing.Point(115, 248);
|
||||
this.textBox3.Name = "textBox3";
|
||||
this.textBox3.Size = new System.Drawing.Size(461, 20);
|
||||
this.textBox3.TabIndex = 8;
|
||||
this.textBox3.Text = "357";
|
||||
//
|
||||
// button2
|
||||
//
|
||||
this.button2.Location = new System.Drawing.Point(63, 289);
|
||||
this.button2.Name = "button2";
|
||||
this.button2.Size = new System.Drawing.Size(75, 23);
|
||||
this.button2.TabIndex = 9;
|
||||
this.button2.Text = "Test";
|
||||
this.button2.UseVisualStyleBackColor = true;
|
||||
this.button2.Click += new System.EventHandler(this.button2_Click);
|
||||
//
|
||||
// Form1
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.ClientSize = new System.Drawing.Size(1256, 450);
|
||||
this.Controls.Add(this.button2);
|
||||
this.Controls.Add(this.textBox3);
|
||||
this.Controls.Add(this.label3);
|
||||
this.Controls.Add(this.label2);
|
||||
this.Controls.Add(this.textBox2);
|
||||
this.Controls.Add(this.treeViewAdv1);
|
||||
this.Controls.Add(this.button1);
|
||||
this.Controls.Add(this.textBox1);
|
||||
@@ -199,6 +254,11 @@
|
||||
private System.Windows.Forms.TextBox textBox1;
|
||||
private System.Windows.Forms.Button button1;
|
||||
private Syncfusion.Windows.Forms.Tools.TreeViewAdv treeViewAdv1;
|
||||
private System.Windows.Forms.TextBox textBox2;
|
||||
private System.Windows.Forms.Label label2;
|
||||
private System.Windows.Forms.Label label3;
|
||||
private System.Windows.Forms.TextBox textBox3;
|
||||
private System.Windows.Forms.Button button2;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -207,6 +207,20 @@ namespace DocIO_Demo_SHU
|
||||
|
||||
}
|
||||
|
||||
private void button2_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
OnDocOffice.clsWordEdit wh = new OnDocOffice.clsWordEdit("Data Source=shu01\\shu00;Initial Catalog=edoka_dms;Persist Security Info=True;User ID=sa;Password=*shu29", textBox2.Text, "");
|
||||
wh.Edit_Document();
|
||||
//wh.exec_macros(textBox2.Text, Convert.ToInt32(textBox3.Text), "Data Source=shu01\\shu00;Initial Catalog=edoka_dms;Persist Security Info=True;User ID=sa;Password=*shu29");
|
||||
|
||||
}
|
||||
|
||||
private void button1_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
//private void button1_Click(object sender, EventArgs e)
|
||||
//{
|
||||
|
||||
Binary file not shown.
Binary file not shown.
BIN
DocIO_Demo_SHU/bin/Debug/OnDocOffice.dll
Normal file
BIN
DocIO_Demo_SHU/bin/Debug/OnDocOffice.dll
Normal file
Binary file not shown.
BIN
DocIO_Demo_SHU/bin/Debug/OnDocOffice.pdb
Normal file
BIN
DocIO_Demo_SHU/bin/Debug/OnDocOffice.pdb
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
79b0dcdb4f976f0cb9c710ab7f0e60b2f5f4a4b7ae6b3af54955a5abe8d5be80
|
||||
07f8a02c7c996fdc3d53c5a969ab9737e14502f11fd048911c0e9a6a1153c841
|
||||
|
||||
@@ -64,3 +64,5 @@ E:\Software-Projekte\OnDoc\OnDoc\DocIO_Demo_SHU\bin\Debug\Syncfusion.Core.WinFor
|
||||
E:\Software-Projekte\OnDoc\OnDoc\DocIO_Demo_SHU\bin\Debug\Syncfusion.DataSource.WinForms.xml
|
||||
E:\Software-Projekte\OnDoc\OnDoc\DocIO_Demo_SHU\bin\Debug\Syncfusion.GridCommon.WinForms.xml
|
||||
E:\Software-Projekte\OnDoc\OnDoc\DocIO_Demo_SHU\bin\Debug\Syncfusion.SfListView.WinForms.xml
|
||||
E:\Software-Projekte\OnDoc\OnDoc\DocIO_Demo_SHU\bin\Debug\OnDocOffice.dll
|
||||
E:\Software-Projekte\OnDoc\OnDoc\DocIO_Demo_SHU\bin\Debug\OnDocOffice.pdb
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user