This commit is contained in:
chi
2025-04-18 09:26:39 +09:00
parent 66ef51f814
commit 930e09400d
15 changed files with 282 additions and 206 deletions

View File

@@ -38,8 +38,8 @@
this.bn = new System.Windows.Forms.BindingNavigator(this.components);
this.bs = new System.Windows.Forms.BindingSource(this.components);
this.dsMSSQL = new FCM0000.DSMail();
this.mailFormBindingNavigatorSaveItem = new System.Windows.Forms.ToolStripButton();
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.btSend = new System.Windows.Forms.ToolStripButton();
this.btOUtlook = new System.Windows.Forms.ToolStripButton();
this.panel1 = new System.Windows.Forms.Panel();
this.tbBody = new YARTE.UI.HtmlEditor();
this.tbTo = new System.Windows.Forms.TextBox();
@@ -48,6 +48,7 @@
this.tbSubject = new System.Windows.Forms.TextBox();
this.tam = new FCM0000.DSMailTableAdapters.TableAdapterManager();
this.ta = new FCM0000.DSMailTableAdapters.MailDataTableAdapter();
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
tolistLabel = new System.Windows.Forms.Label();
bccLabel = new System.Windows.Forms.Label();
ccLabel = new System.Windows.Forms.Label();
@@ -115,7 +116,8 @@
this.bn.DeleteItem = null;
this.bn.Dock = System.Windows.Forms.DockStyle.Bottom;
this.bn.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.mailFormBindingNavigatorSaveItem,
this.btSend,
this.btOUtlook,
this.toolStripButton1});
this.bn.Location = new System.Drawing.Point(0, 498);
this.bn.MoveFirstItem = null;
@@ -138,23 +140,23 @@
this.dsMSSQL.DataSetName = "dsMSSQL";
this.dsMSSQL.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// mailFormBindingNavigatorSaveItem
// btSend
//
this.mailFormBindingNavigatorSaveItem.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.mailFormBindingNavigatorSaveItem.Image = ((System.Drawing.Image)(resources.GetObject("mailFormBindingNavigatorSaveItem.Image")));
this.mailFormBindingNavigatorSaveItem.Name = "mailFormBindingNavigatorSaveItem";
this.mailFormBindingNavigatorSaveItem.Size = new System.Drawing.Size(69, 22);
this.mailFormBindingNavigatorSaveItem.Text = "Send(&S)";
this.mailFormBindingNavigatorSaveItem.Click += new System.EventHandler(this.mailFormBindingNavigatorSaveItem_Click);
this.btSend.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.btSend.Image = ((System.Drawing.Image)(resources.GetObject("btSend.Image")));
this.btSend.Name = "btSend";
this.btSend.Size = new System.Drawing.Size(69, 22);
this.btSend.Text = "Send(&S)";
this.btSend.Click += new System.EventHandler(this.mailFormBindingNavigatorSaveItem_Click);
//
// toolStripButton1
// btOUtlook
//
this.toolStripButton1.Image = global::FCM0000.Properties.Resources.action_refresh;
this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton1.Name = "toolStripButton1";
this.toolStripButton1.Size = new System.Drawing.Size(90, 22);
this.toolStripButton1.Text = "To OutLook";
this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click_1);
this.btOUtlook.Image = global::FCM0000.Properties.Resources.action_refresh;
this.btOUtlook.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btOUtlook.Name = "btOUtlook";
this.btOUtlook.Size = new System.Drawing.Size(90, 22);
this.btOUtlook.Text = "To OutLook";
this.btOUtlook.Click += new System.EventHandler(this.toolStripButton1_Click_1);
//
// panel1
//
@@ -180,8 +182,9 @@
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tbBody.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.tbBody.Html = resources.GetString("tbBody.Html");
this.tbBody.Html = "";
this.tbBody.Location = new System.Drawing.Point(74, 97);
this.tbBody.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.tbBody.Name = "tbBody";
this.tbBody.ReadOnly = false;
this.tbBody.ShowToolbar = true;
@@ -232,6 +235,7 @@
// tam
//
this.tam.BackupDataSetBeforeUpdate = false;
this.tam.MailAutoTableAdapter = null;
this.tam.MailDataTableAdapter = this.ta;
this.tam.MailFormTableAdapter = null;
this.tam.UpdateOrder = FCM0000.DSMailTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete;
@@ -240,6 +244,15 @@
//
this.ta.ClearBeforeFill = true;
//
// toolStripButton1
//
this.toolStripButton1.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
this.toolStripButton1.Name = "toolStripButton1";
this.toolStripButton1.Size = new System.Drawing.Size(90, 22);
this.toolStripButton1.Text = "Direct Send";
this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
//
// fSendMail
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
@@ -268,7 +281,7 @@
private System.Windows.Forms.BindingSource bs;
private DSMailTableAdapters.TableAdapterManager tam;
private System.Windows.Forms.BindingNavigator bn;
private System.Windows.Forms.ToolStripButton mailFormBindingNavigatorSaveItem;
private System.Windows.Forms.ToolStripButton btSend;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.TextBox tbTo;
private System.Windows.Forms.TextBox tbBCC;
@@ -276,6 +289,7 @@
private System.Windows.Forms.TextBox tbSubject;
private YARTE.UI.HtmlEditor tbBody;
private DSMailTableAdapters.MailDataTableAdapter ta;
private System.Windows.Forms.ToolStripButton btOUtlook;
private System.Windows.Forms.ToolStripButton toolStripButton1;
}
}