亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? winboard.cs

?? 一個(gè)即時(shí)通信 Messenger C#代碼
?? CS
?? 第 1 頁(yè) / 共 4 頁(yè)
字號(hào):
/*

<Aicaca Community Messenger Client>

Copyright (c) Aicaca.com, All rights reserved.

Writer                : Byung-ku, Cho (Aicaca)
E-mail                : aicaca@hanmail.net
Personal Homepage URL : http://www.aicaca.com
Last Updated Date     : Feb. 27th, 2002

Programming Language  : C#
Editor & Compiler     : VisualStudio.NET

*/


using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.IO;
using System.Xml;
using System.Data;
using System.Threading;
using System.Runtime.Serialization.Formatters.Binary;

namespace TalkClient
{
    delegate void GridDelegate();

	public class WinBoard : System.Windows.Forms.Form
	{
		private WinCom WC = new WinCom();
		private WinClient xWinClient;

        private string rootID;
		private string localID;

		private string boardID;
		private string boardName;
		private string boardPassword;
		private string boardType;

		private string msgID;
		private string msgPassword;

		private enum ActionMode {Msg, Write, Modify, Reply}
		private ActionMode actionMode = new ActionMode();

		private string searchKeyword;
		private string searchType;

        private DataTable xDataTable = new DataTable("board");
		private GridDelegate xGridDelegate;

		private System.Windows.Forms.Panel listPanel;
		private System.Windows.Forms.GroupBox actionGroup;
		private System.Windows.Forms.Button writeButton;
		private System.Windows.Forms.DataGrid mainGrid;
		private System.Windows.Forms.Panel inputPanel;
		private System.Windows.Forms.GroupBox bottomGroup;
		private System.Windows.Forms.Label msgLabel;
		private System.Windows.Forms.Label pwdLabel;
		private System.Windows.Forms.Label emailLabel;
		private System.Windows.Forms.Label writerLabel;
		private System.Windows.Forms.Label titleLabel;
		private System.Windows.Forms.TextBox titleBox;
		private System.Windows.Forms.TextBox writerBox;
		private System.Windows.Forms.TextBox pwdBox;
		private System.Windows.Forms.RichTextBox msgBox;
		private System.Windows.Forms.TextBox emailBox;
		private System.Windows.Forms.GroupBox topGroup;
		private System.Windows.Forms.TextBox countBox;
		private System.Windows.Forms.Label countLabel;
		private System.Windows.Forms.Button listButton;
		private System.Windows.Forms.Button saveButton;
		private System.Windows.Forms.Button resetButton;
		private System.Windows.Forms.Button replyButton;
		private System.Windows.Forms.Button modifyButton;
		private System.Windows.Forms.Button deleteButton;
		private System.Windows.Forms.DataGridTableStyle tableStyle;
		private System.Windows.Forms.DataGridTextBoxColumn titleStyle;
		private System.Windows.Forms.DataGridTextBoxColumn writerStyle;
		private System.Windows.Forms.DataGridTextBoxColumn emailStyle;
		private System.Windows.Forms.DataGridTextBoxColumn hitStyle;
		private System.Windows.Forms.DataGridTextBoxColumn dateStyle;
		private System.Windows.Forms.DataGridTextBoxColumn idStyle;
		private System.Windows.Forms.DataGridTextBoxColumn stepStyle;
		private System.Windows.Forms.Button adminButton;
		private System.Windows.Forms.GroupBox searchGroup;
		private System.Windows.Forms.TextBox searchBox;
		private System.Windows.Forms.Button searchButton;
		private System.Windows.Forms.Button allButton;
		private System.Windows.Forms.ComboBox typeCombo;
		private System.Windows.Forms.Label uploadLabel;
		private System.Windows.Forms.TextBox uploadBox;
		private System.Windows.Forms.Button uploadButton;
		private System.Windows.Forms.OpenFileDialog openDialog;
		private System.Windows.Forms.DataGridTextBoxColumn uploadStyle;
		private System.Windows.Forms.SaveFileDialog saveDialog;
		private System.Windows.Forms.ContextMenu editMenu;
		private System.ComponentModel.Container components = null;

		public WinBoard(WinClient tWinClient, string tLocalID, string tRootID, string tBoardID, string tBoardName, string tBoardPassword, string tBoardType)
		{
            xWinClient = tWinClient;
			localID = tLocalID;
			rootID = tRootID;
			boardID = tBoardID;
			boardName = tBoardName;
		    boardPassword = tBoardPassword;
			boardType = tBoardType;
		}

		public void WinThread()
		{
			xWinClient.AddThread(WC.MakeXML("WinBoard", boardID), this);
			InitializeComponent();
			this.SetConfig();
			this.ShowDialog();
		}

		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if(components != null)
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Windows Form Designer generated code
		private void InitializeComponent()
		{
			this.idStyle = new System.Windows.Forms.DataGridTextBoxColumn();
			this.uploadLabel = new System.Windows.Forms.Label();
			this.searchButton = new System.Windows.Forms.Button();
			this.writeButton = new System.Windows.Forms.Button();
			this.countBox = new System.Windows.Forms.TextBox();
			this.writerLabel = new System.Windows.Forms.Label();
			this.titleBox = new System.Windows.Forms.TextBox();
			this.listPanel = new System.Windows.Forms.Panel();
			this.searchGroup = new System.Windows.Forms.GroupBox();
			this.allButton = new System.Windows.Forms.Button();
			this.searchBox = new System.Windows.Forms.TextBox();
			this.typeCombo = new System.Windows.Forms.ComboBox();
			this.actionGroup = new System.Windows.Forms.GroupBox();
			this.countLabel = new System.Windows.Forms.Label();
			this.adminButton = new System.Windows.Forms.Button();
			this.mainGrid = new System.Windows.Forms.DataGrid();
			this.tableStyle = new System.Windows.Forms.DataGridTableStyle();
			this.stepStyle = new System.Windows.Forms.DataGridTextBoxColumn();
			this.titleStyle = new System.Windows.Forms.DataGridTextBoxColumn();
			this.writerStyle = new System.Windows.Forms.DataGridTextBoxColumn();
			this.emailStyle = new System.Windows.Forms.DataGridTextBoxColumn();
			this.uploadStyle = new System.Windows.Forms.DataGridTextBoxColumn();
			this.hitStyle = new System.Windows.Forms.DataGridTextBoxColumn();
			this.dateStyle = new System.Windows.Forms.DataGridTextBoxColumn();
			this.inputPanel = new System.Windows.Forms.Panel();
			this.bottomGroup = new System.Windows.Forms.GroupBox();
			this.uploadButton = new System.Windows.Forms.Button();
			this.uploadBox = new System.Windows.Forms.TextBox();
			this.msgLabel = new System.Windows.Forms.Label();
			this.pwdLabel = new System.Windows.Forms.Label();
			this.emailLabel = new System.Windows.Forms.Label();
			this.titleLabel = new System.Windows.Forms.Label();
			this.writerBox = new System.Windows.Forms.TextBox();
			this.pwdBox = new System.Windows.Forms.TextBox();
			this.msgBox = new System.Windows.Forms.RichTextBox();
			this.editMenu = new System.Windows.Forms.ContextMenu();
			this.emailBox = new System.Windows.Forms.TextBox();
			this.topGroup = new System.Windows.Forms.GroupBox();
			this.deleteButton = new System.Windows.Forms.Button();
			this.modifyButton = new System.Windows.Forms.Button();
			this.replyButton = new System.Windows.Forms.Button();
			this.listButton = new System.Windows.Forms.Button();
			this.saveButton = new System.Windows.Forms.Button();
			this.resetButton = new System.Windows.Forms.Button();
			this.saveDialog = new System.Windows.Forms.SaveFileDialog();
			this.openDialog = new System.Windows.Forms.OpenFileDialog();
			this.listPanel.SuspendLayout();
			this.searchGroup.SuspendLayout();
			this.actionGroup.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.mainGrid)).BeginInit();
			this.inputPanel.SuspendLayout();
			this.bottomGroup.SuspendLayout();
			this.topGroup.SuspendLayout();
			this.SuspendLayout();
			// 
			// idStyle
			// 
			this.idStyle.Format = "";
			this.idStyle.FormatInfo = null;
			this.idStyle.HeaderText = "Record ID";
			this.idStyle.MappingName = "recordID";
			this.idStyle.Width = 0;
			// 
			// uploadLabel
			// 
			this.uploadLabel.Anchor = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left);
			this.uploadLabel.Location = new System.Drawing.Point(8, 256);
			this.uploadLabel.Name = "uploadLabel";
			this.uploadLabel.Size = new System.Drawing.Size(64, 23);
			this.uploadLabel.TabIndex = 0;
			this.uploadLabel.Text = "Upload";
			this.uploadLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// searchButton
			// 
			this.searchButton.Anchor = System.Windows.Forms.AnchorStyles.Right;
			this.searchButton.Location = new System.Drawing.Point(392, 16);
			this.searchButton.Name = "searchButton";
			this.searchButton.Size = new System.Drawing.Size(80, 23);
			this.searchButton.TabIndex = 7;
			this.searchButton.Text = "Search";
			this.searchButton.Click += new System.EventHandler(this.searchButton_Click);
			// 
			// writeButton
			// 
			this.writeButton.Anchor = System.Windows.Forms.AnchorStyles.Right;
			this.writeButton.Location = new System.Drawing.Point(392, 16);
			this.writeButton.Name = "writeButton";
			this.writeButton.Size = new System.Drawing.Size(80, 24);
			this.writeButton.TabIndex = 2;
			this.writeButton.Text = "Write";
			this.writeButton.Click += new System.EventHandler(this.writeButton_Click);
			// 
			// countBox
			// 
			this.countBox.Anchor = System.Windows.Forms.AnchorStyles.Left;
			this.countBox.Location = new System.Drawing.Point(96, 16);
			this.countBox.Name = "countBox";
			this.countBox.ReadOnly = true;
			this.countBox.Size = new System.Drawing.Size(80, 21);
			this.countBox.TabIndex = 0;
			this.countBox.Text = "0";
			// 
			// writerLabel
			// 
			this.writerLabel.Location = new System.Drawing.Point(8, 48);
			this.writerLabel.Name = "writerLabel";
			this.writerLabel.Size = new System.Drawing.Size(64, 23);
			this.writerLabel.TabIndex = 0;
			this.writerLabel.Text = "Writer";
			this.writerLabel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// titleBox
			// 
			this.titleBox.Location = new System.Drawing.Point(80, 16);
			this.titleBox.MaxLength = 100;
			this.titleBox.Name = "titleBox";
			this.titleBox.Size = new System.Drawing.Size(392, 21);
			this.titleBox.TabIndex = 7;
			this.titleBox.Text = "";
			// 
			// listPanel
			// 
			this.listPanel.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
				| System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right);
			this.listPanel.Controls.AddRange(new System.Windows.Forms.Control[] {
																					this.searchGroup,
																					this.actionGroup,
																					this.mainGrid});
			this.listPanel.Location = new System.Drawing.Point(8, 8);
			this.listPanel.Name = "listPanel";
			this.listPanel.Size = new System.Drawing.Size(480, 352);
			this.listPanel.TabIndex = 0;
			// 
			// searchGroup
			// 
			this.searchGroup.Anchor = ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right);
			this.searchGroup.Controls.AddRange(new System.Windows.Forms.Control[] {
																					  this.allButton,
																					  this.searchButton,
																					  this.searchBox,
																					  this.typeCombo});
			this.searchGroup.Location = new System.Drawing.Point(0, 296);
			this.searchGroup.Name = "searchGroup";
			this.searchGroup.Size = new System.Drawing.Size(480, 48);
			this.searchGroup.TabIndex = 0;
			this.searchGroup.TabStop = false;
			this.searchGroup.Text = "Search";
			// 
			// allButton
			// 
			this.allButton.Anchor = System.Windows.Forms.AnchorStyles.Left;
			this.allButton.Location = new System.Drawing.Point(8, 16);
			this.allButton.Name = "allButton";
			this.allButton.Size = new System.Drawing.Size(80, 23);
			this.allButton.TabIndex = 4;
			this.allButton.Text = "Refresh All";
			this.allButton.Click += new System.EventHandler(this.allButton_Click);
			// 
			// searchBox
			// 
			this.searchBox.Anchor = System.Windows.Forms.AnchorStyles.Right;
			this.searchBox.Location = new System.Drawing.Point(256, 16);
			this.searchBox.MaxLength = 30;
			this.searchBox.Name = "searchBox";
			this.searchBox.Size = new System.Drawing.Size(128, 21);
			this.searchBox.TabIndex = 6;
			this.searchBox.Text = "";
			// 
			// typeCombo
			// 
			this.typeCombo.Anchor = System.Windows.Forms.AnchorStyles.Right;
			this.typeCombo.DropDownWidth = 121;
			this.typeCombo.Items.AddRange(new object[] {
														   "Tilte",
														   "Writer",
														   "Message"});
			this.typeCombo.Location = new System.Drawing.Point(144, 16);
			this.typeCombo.Name = "typeCombo";
			this.typeCombo.Size = new System.Drawing.Size(104, 20);
			this.typeCombo.TabIndex = 5;
			this.typeCombo.Text = "Select Type";
			// 
			// actionGroup
			// 
			this.actionGroup.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right);
			this.actionGroup.Controls.AddRange(new System.Windows.Forms.Control[] {
																					  this.countLabel,
																					  this.countBox,
																					  this.adminButton,
																					  this.writeButton});
			this.actionGroup.Name = "actionGroup";
			this.actionGroup.Size = new System.Drawing.Size(480, 48);
			this.actionGroup.TabIndex = 0;
			this.actionGroup.TabStop = false;
			this.actionGroup.Text = "Action";
			// 
			// countLabel
			// 
			this.countLabel.Anchor = System.Windows.Forms.AnchorStyles.Left;
			this.countLabel.Location = new System.Drawing.Point(8, 24);
			this.countLabel.Name = "countLabel";
			this.countLabel.Size = new System.Drawing.Size(88, 16);

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
av色综合久久天堂av综合| 91在线小视频| 中文字幕字幕中文在线中不卡视频| 欧洲一区二区av| 国产精品456露脸| 午夜精彩视频在线观看不卡| 欧美激情自拍偷拍| 欧美一区二区三区婷婷月色| 日本韩国精品在线| 成人午夜激情在线| 久热成人在线视频| 日日夜夜精品视频天天综合网| 亚洲图片你懂的| 国产日韩欧美一区二区三区乱码| 91精品福利在线一区二区三区| 色久综合一二码| 99久久免费国产| 高清免费成人av| 国产精品一卡二卡在线观看| 91丨porny丨户外露出| 国产成人夜色高潮福利影视| 麻豆精品国产91久久久久久| 亚洲1区2区3区视频| 一区二区高清视频在线观看| 国产精品国产自产拍在线| 久久久99久久| 久久你懂得1024| 亚洲精品一区二区三区四区高清| 欧美日本韩国一区二区三区视频| 日本福利一区二区| 91麻豆福利精品推荐| 99精品国产99久久久久久白柏| 国产成人av电影在线观看| 国产在线播精品第三| 久久国产精品色婷婷| 美国精品在线观看| 久久爱www久久做| 精品一区中文字幕| 国产综合成人久久大片91| 精品一区二区三区免费播放| 久久精品国产久精国产| 精品一区精品二区高清| 国产一区二区三区香蕉| 国内精品在线播放| 国产精品69久久久久水密桃 | 亚洲一区二区欧美日韩| 一区二区三区精品| 一区二区三区精品在线| 亚洲成人久久影院| 欧美性大战久久久久久久| 色94色欧美sute亚洲线路一ni| 日本福利一区二区| 欧美男生操女生| 精品免费日韩av| 久久久久久久久99精品| 中文字幕制服丝袜成人av| 亚洲欧美日韩在线不卡| 亚洲h精品动漫在线观看| 热久久免费视频| 国产一区日韩二区欧美三区| 成人免费高清在线观看| 欧洲日韩一区二区三区| 91精品在线免费观看| 337p粉嫩大胆色噜噜噜噜亚洲| 国产午夜精品一区二区| 亚洲欧美国产77777| 视频一区欧美精品| 国产精品99久久久久久宅男| www.欧美色图| 7799精品视频| 欧美国产日韩一二三区| 亚洲亚洲精品在线观看| 国内精品自线一区二区三区视频| 99久久er热在这里只有精品15| 欧美日韩一级视频| 青娱乐精品视频| 成人高清视频免费观看| 欧美日韩卡一卡二| 国产欧美精品一区aⅴ影院| 一区二区在线观看免费视频播放| 免费久久99精品国产| av不卡免费电影| 欧美一区二区三区视频在线观看| 国产欧美精品国产国产专区| 亚洲一区二区视频在线观看| 精品在线一区二区| 色综合久久中文综合久久牛| 日韩欧美在线123| 综合激情网...| 美女国产一区二区三区| 色系网站成人免费| 精品久久久久久久久久久院品网| 亚洲欧美一区二区视频| 卡一卡二国产精品| 欧美午夜视频网站| 欧美激情中文字幕一区二区| 视频一区在线播放| 99久久伊人网影院| 亚洲精品一区二区在线观看| 亚洲自拍都市欧美小说| 成人av网站免费| 精品国产露脸精彩对白| 亚洲成人tv网| 中文字幕中文在线不卡住| 狠狠色综合日日| 91麻豆精品国产| 亚洲自拍与偷拍| 99综合影院在线| 日本一区二区免费在线| 美腿丝袜亚洲三区| 欧美日韩免费不卡视频一区二区三区| 国产精品国产三级国产| 国产一区二区三区av电影| 欧美精品在线一区二区三区| 亚洲男人的天堂网| 成人午夜免费视频| 国产亚洲一区二区三区四区| 毛片基地黄久久久久久天堂| 欧美日韩精品欧美日韩精品一综合| 成人免费在线视频| 成人国产视频在线观看| 国产午夜精品一区二区三区四区| 麻豆国产精品777777在线| 欧美电影影音先锋| 午夜日韩在线观看| 欧美日韩国产成人在线免费| 亚洲另类在线视频| 色av成人天堂桃色av| 亚洲啪啪综合av一区二区三区| 成人av在线看| 中文幕一区二区三区久久蜜桃| 国产盗摄女厕一区二区三区| 久久亚洲私人国产精品va媚药| 欧美日韩黄视频| 日日噜噜夜夜狠狠视频欧美人| 欧美色综合网站| 亚洲国产成人精品视频| 欧美日韩极品在线观看一区| 午夜精品免费在线| 日韩一级大片在线| 狠狠色丁香久久婷婷综| 久久久青草青青国产亚洲免观| 国产精品小仙女| 中文字幕免费不卡| 色综合一区二区| 亚洲一区二区三区四区在线| 欧美日韩aaa| 久草在线在线精品观看| 久久久综合网站| 成人美女视频在线观看| 17c精品麻豆一区二区免费| 色先锋资源久久综合| 亚洲国产wwwccc36天堂| 在线播放91灌醉迷j高跟美女| 蜜桃一区二区三区在线观看| 精品久久五月天| 成人激情视频网站| 一区二区三区欧美久久| 欧美二区三区的天堂| 极品少妇xxxx精品少妇偷拍| 欧美极品xxx| 在线精品观看国产| 精品在线亚洲视频| 国产精品传媒视频| 欧美日韩国产乱码电影| 九色|91porny| 日韩一区在线免费观看| 91 com成人网| 国产成人在线网站| 亚洲一区二区在线免费观看视频| 91精品国产一区二区| 国产成人丝袜美腿| 亚洲一区二三区| 国产亚洲精品7777| 欧美影院一区二区| 国内精品久久久久影院色| 亚洲精品亚洲人成人网在线播放| 欧美理论在线播放| 波多野结衣中文字幕一区| 午夜精品福利一区二区三区蜜桃| 精品欧美一区二区久久| 99re热这里只有精品免费视频| 日韩一区欧美二区| 中文字幕亚洲一区二区av在线 | 成人黄色电影在线| 日韩av一区二区三区四区| 中文字幕第一区第二区| 欧美人与z0zoxxxx视频| 成人免费视频一区二区| 日本视频在线一区| 亚洲欧美激情视频在线观看一区二区三区| 91精品国产色综合久久不卡蜜臀| 粉嫩高潮美女一区二区三区| 日欧美一区二区| 亚洲视频1区2区| 国产欧美日本一区视频| 日韩精品在线一区二区| 91高清视频在线| 成人精品免费看| 韩国一区二区三区|