CNAS取数仪器端升级
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

frmSourceSetting.Designer.cs 79KB

4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
4ヶ月前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440
  1. namespace CNAS_DBSync
  2. {
  3. partial class frmSourceSetting
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSourceSetting));
  29. this.btnOK = new System.Windows.Forms.Button();
  30. this.pnlBottom = new System.Windows.Forms.Panel();
  31. this.pnlTop = new System.Windows.Forms.Panel();
  32. this.pnlCenter = new System.Windows.Forms.Panel();
  33. this.tabcDS = new System.Windows.Forms.TabControl();
  34. this.tabExcel = new System.Windows.Forms.TabPage();
  35. this.txtExcelAutoSql = new System.Windows.Forms.TextBox();
  36. this.txtExcelAutoSqlName = new System.Windows.Forms.TextBox();
  37. this.lbExcelDynQuery = new System.Windows.Forms.Label();
  38. this.cbxExcelReadFolder = new System.Windows.Forms.CheckBox();
  39. this.cbxExcelReadFile = new System.Windows.Forms.CheckBox();
  40. this.cbxExcelNewVersion = new System.Windows.Forms.CheckBox();
  41. this.label22 = new System.Windows.Forms.Label();
  42. this.lblExcelRemotePwd = new System.Windows.Forms.Label();
  43. this.lblExcelRemoteUser = new System.Windows.Forms.Label();
  44. this.txtExcelFileNameFormat = new System.Windows.Forms.TextBox();
  45. this.cbxExcelOldVersion = new System.Windows.Forms.CheckBox();
  46. this.lbExcelDateFormat = new System.Windows.Forms.Label();
  47. this.txtExcelSpecialDateColumnFormat = new System.Windows.Forms.TextBox();
  48. this.tabFoxPro = new System.Windows.Forms.TabPage();
  49. this.txtFoxProSpecialMethodName = new System.Windows.Forms.TextBox();
  50. this.txtFoxProSpecialMethod = new System.Windows.Forms.TextBox();
  51. this.label27 = new System.Windows.Forms.Label();
  52. this.label33 = new System.Windows.Forms.Label();
  53. this.txtFoxProAutoSqlName = new System.Windows.Forms.TextBox();
  54. this.cbxFoxProReadFolder = new System.Windows.Forms.CheckBox();
  55. this.txtFoxProAutoSql = new System.Windows.Forms.TextBox();
  56. this.cbxFoxProReadFile = new System.Windows.Forms.CheckBox();
  57. this.label35 = new System.Windows.Forms.Label();
  58. this.label38 = new System.Windows.Forms.Label();
  59. this.txtFoxProFileNameFormat = new System.Windows.Forms.TextBox();
  60. this.label39 = new System.Windows.Forms.Label();
  61. this.txtFoxProSpecialDateColumnFormat = new System.Windows.Forms.TextBox();
  62. this.tabAccess = new System.Windows.Forms.TabPage();
  63. this.label2 = new System.Windows.Forms.Label();
  64. this.txtAccessSuffix = new System.Windows.Forms.TextBox();
  65. this.cbxAccessReadFolder = new System.Windows.Forms.CheckBox();
  66. this.cbxAccessReadFile = new System.Windows.Forms.CheckBox();
  67. this.txtAccessAutoSql = new System.Windows.Forms.TextBox();
  68. this.txtAccessAutoSqlName = new System.Windows.Forms.TextBox();
  69. this.label11 = new System.Windows.Forms.Label();
  70. this.cbxAccessNewVersion = new System.Windows.Forms.CheckBox();
  71. this.label15 = new System.Windows.Forms.Label();
  72. this.label16 = new System.Windows.Forms.Label();
  73. this.label21 = new System.Windows.Forms.Label();
  74. this.txtAccessFileName = new System.Windows.Forms.TextBox();
  75. this.cbxAccessOldVersion = new System.Windows.Forms.CheckBox();
  76. this.label31 = new System.Windows.Forms.Label();
  77. this.txtAccessSpecialDateColumnFormat = new System.Windows.Forms.TextBox();
  78. this.tabSQLite = new System.Windows.Forms.TabPage();
  79. this.label5 = new System.Windows.Forms.Label();
  80. this.txtSqliteAutoSqlName = new System.Windows.Forms.TextBox();
  81. this.cbxSqliteReadFolder = new System.Windows.Forms.CheckBox();
  82. this.txtSqliteAutoSql = new System.Windows.Forms.TextBox();
  83. this.cbxSqliteReadFile = new System.Windows.Forms.CheckBox();
  84. this.label6 = new System.Windows.Forms.Label();
  85. this.label7 = new System.Windows.Forms.Label();
  86. this.txtSqliteFileNameFormat = new System.Windows.Forms.TextBox();
  87. this.label8 = new System.Windows.Forms.Label();
  88. this.txtSqliteSpecialDateColumnFormat = new System.Windows.Forms.TextBox();
  89. this.tabSQLServer = new System.Windows.Forms.TabPage();
  90. this.label9 = new System.Windows.Forms.Label();
  91. this.txtSqlServerAutoSqlName = new System.Windows.Forms.TextBox();
  92. this.txtSqlServerAutoSql = new System.Windows.Forms.TextBox();
  93. this.label12 = new System.Windows.Forms.Label();
  94. this.txtSqlServerConnection = new System.Windows.Forms.TextBox();
  95. this.label13 = new System.Windows.Forms.Label();
  96. this.txtSqlServerSpecialDateColumnFormat = new System.Windows.Forms.TextBox();
  97. this.tabMySql = new System.Windows.Forms.TabPage();
  98. this.label14 = new System.Windows.Forms.Label();
  99. this.txtMySqlAutoSqlName = new System.Windows.Forms.TextBox();
  100. this.txtMySqlAutoSql = new System.Windows.Forms.TextBox();
  101. this.label18 = new System.Windows.Forms.Label();
  102. this.txtMySqlSpecialDateColumnFormat = new System.Windows.Forms.TextBox();
  103. this.tabOracle = new System.Windows.Forms.TabPage();
  104. this.label4 = new System.Windows.Forms.Label();
  105. this.txtOracleAutoSqlName = new System.Windows.Forms.TextBox();
  106. this.txtOracleAutoSql = new System.Windows.Forms.TextBox();
  107. this.label10 = new System.Windows.Forms.Label();
  108. this.txtOracleSpecialDateColumnFormat = new System.Windows.Forms.TextBox();
  109. this.tabTxt = new System.Windows.Forms.TabPage();
  110. this.cbxNormalFileNoCustomDate = new System.Windows.Forms.CheckBox();
  111. this.cbxNormalFileCustomDate = new System.Windows.Forms.CheckBox();
  112. this.numNormalFileStartIndex = new System.Windows.Forms.NumericUpDown();
  113. this.label20 = new System.Windows.Forms.Label();
  114. this.label19 = new System.Windows.Forms.Label();
  115. this.label17 = new System.Windows.Forms.Label();
  116. this.txtNormalFileReadSplitMode = new System.Windows.Forms.TextBox();
  117. this.label30 = new System.Windows.Forms.Label();
  118. this.txtNormalFileReadDataMode = new System.Windows.Forms.TextBox();
  119. this.label29 = new System.Windows.Forms.Label();
  120. this.txtNormalFileSuffix = new System.Windows.Forms.TextBox();
  121. this.cbxNormalFileReadFolder = new System.Windows.Forms.CheckBox();
  122. this.cbxNormalFileReadFile = new System.Windows.Forms.CheckBox();
  123. this.label25 = new System.Windows.Forms.Label();
  124. this.label26 = new System.Windows.Forms.Label();
  125. this.txtNormalFileNameFormat = new System.Windows.Forms.TextBox();
  126. this.label28 = new System.Windows.Forms.Label();
  127. this.txtNormalFileSpecialDateColumnFormat = new System.Windows.Forms.TextBox();
  128. this.pnlAll = new System.Windows.Forms.Panel();
  129. this.tabPostgreSql = new System.Windows.Forms.TabPage();
  130. this.lblPostgreSql = new System.Windows.Forms.Label();
  131. this.txtPostgreSqlAutoSqlName = new System.Windows.Forms.TextBox();
  132. this.txtPostgreSqlAutoSql = new System.Windows.Forms.TextBox();
  133. this.lblPostgreSqlDateFormat = new System.Windows.Forms.Label();
  134. this.txtPostgreSqlSpecialDateColumnFormat = new System.Windows.Forms.TextBox();
  135. this.pnlBottom.SuspendLayout();
  136. this.pnlCenter.SuspendLayout();
  137. this.tabcDS.SuspendLayout();
  138. this.tabExcel.SuspendLayout();
  139. this.tabFoxPro.SuspendLayout();
  140. this.tabAccess.SuspendLayout();
  141. this.tabSQLite.SuspendLayout();
  142. this.tabSQLServer.SuspendLayout();
  143. this.tabMySql.SuspendLayout();
  144. this.tabOracle.SuspendLayout();
  145. this.tabTxt.SuspendLayout();
  146. this.tabPostgreSql.SuspendLayout();
  147. ((System.ComponentModel.ISupportInitialize)(this.numNormalFileStartIndex)).BeginInit();
  148. this.pnlAll.SuspendLayout();
  149. this.SuspendLayout();
  150. //
  151. // btnOK
  152. //
  153. this.btnOK.Location = new System.Drawing.Point(965, 9);
  154. this.btnOK.Name = "btnOK";
  155. this.btnOK.Size = new System.Drawing.Size(90, 30);
  156. this.btnOK.TabIndex = 0;
  157. this.btnOK.Text = "确认";
  158. this.btnOK.UseVisualStyleBackColor = true;
  159. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  160. //
  161. // pnlBottom
  162. //
  163. this.pnlBottom.Controls.Add(this.btnOK);
  164. this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
  165. this.pnlBottom.Location = new System.Drawing.Point(0, 501);
  166. this.pnlBottom.Name = "pnlBottom";
  167. this.pnlBottom.Size = new System.Drawing.Size(1182, 42);
  168. this.pnlBottom.TabIndex = 3;
  169. //
  170. // pnlTop
  171. //
  172. this.pnlTop.Dock = System.Windows.Forms.DockStyle.Top;
  173. this.pnlTop.Location = new System.Drawing.Point(0, 0);
  174. this.pnlTop.Name = "pnlTop";
  175. this.pnlTop.Size = new System.Drawing.Size(1182, 10);
  176. this.pnlTop.TabIndex = 2;
  177. //
  178. // pnlCenter
  179. //
  180. this.pnlCenter.Controls.Add(this.tabcDS);
  181. this.pnlCenter.Dock = System.Windows.Forms.DockStyle.Fill;
  182. this.pnlCenter.Location = new System.Drawing.Point(0, 10);
  183. this.pnlCenter.Name = "pnlCenter";
  184. this.pnlCenter.Size = new System.Drawing.Size(1182, 491);
  185. this.pnlCenter.TabIndex = 4;
  186. //
  187. // tabcDS
  188. //
  189. this.tabcDS.Controls.Add(this.tabExcel);
  190. this.tabcDS.Controls.Add(this.tabFoxPro);
  191. this.tabcDS.Controls.Add(this.tabAccess);
  192. this.tabcDS.Controls.Add(this.tabSQLite);
  193. this.tabcDS.Controls.Add(this.tabSQLServer);
  194. this.tabcDS.Controls.Add(this.tabMySql);
  195. this.tabcDS.Controls.Add(this.tabOracle);
  196. this.tabcDS.Controls.Add(this.tabTxt);
  197. this.tabcDS.Controls.Add(this.tabPostgreSql);
  198. this.tabcDS.Dock = System.Windows.Forms.DockStyle.Fill;
  199. this.tabcDS.Location = new System.Drawing.Point(0, 0);
  200. this.tabcDS.Name = "tabcDS";
  201. this.tabcDS.SelectedIndex = 0;
  202. this.tabcDS.Size = new System.Drawing.Size(1182, 491);
  203. this.tabcDS.TabIndex = 7;
  204. this.tabcDS.Selected += new System.Windows.Forms.TabControlEventHandler(this.tabcDS_Selected);
  205. //
  206. // tabExcel
  207. //
  208. this.tabExcel.Controls.Add(this.txtExcelAutoSql);
  209. this.tabExcel.Controls.Add(this.txtExcelAutoSqlName);
  210. this.tabExcel.Controls.Add(this.lbExcelDynQuery);
  211. this.tabExcel.Controls.Add(this.cbxExcelReadFolder);
  212. this.tabExcel.Controls.Add(this.cbxExcelReadFile);
  213. this.tabExcel.Controls.Add(this.cbxExcelNewVersion);
  214. this.tabExcel.Controls.Add(this.label22);
  215. this.tabExcel.Controls.Add(this.lblExcelRemotePwd);
  216. this.tabExcel.Controls.Add(this.lblExcelRemoteUser);
  217. this.tabExcel.Controls.Add(this.txtExcelFileNameFormat);
  218. this.tabExcel.Controls.Add(this.cbxExcelOldVersion);
  219. this.tabExcel.Controls.Add(this.lbExcelDateFormat);
  220. this.tabExcel.Controls.Add(this.txtExcelSpecialDateColumnFormat);
  221. this.tabExcel.Location = new System.Drawing.Point(4, 33);
  222. this.tabExcel.Name = "tabExcel";
  223. this.tabExcel.Padding = new System.Windows.Forms.Padding(3);
  224. this.tabExcel.Size = new System.Drawing.Size(1174, 454);
  225. this.tabExcel.TabIndex = 0;
  226. this.tabExcel.Text = "Excel";
  227. this.tabExcel.UseVisualStyleBackColor = true;
  228. //
  229. // txtExcelAutoSql
  230. //
  231. this.txtExcelAutoSql.Location = new System.Drawing.Point(232, 250);
  232. this.txtExcelAutoSql.Multiline = true;
  233. this.txtExcelAutoSql.Name = "txtExcelAutoSql";
  234. this.txtExcelAutoSql.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  235. this.txtExcelAutoSql.Size = new System.Drawing.Size(819, 186);
  236. this.txtExcelAutoSql.TabIndex = 48;
  237. this.txtExcelAutoSql.Enter += new System.EventHandler(this.txtExcelAutoSql_Enter);
  238. this.txtExcelAutoSql.Leave += new System.EventHandler(this.txtExcelAutoSql_Leave);
  239. //
  240. // txtExcelAutoSqlName
  241. //
  242. this.txtExcelAutoSqlName.Location = new System.Drawing.Point(232, 206);
  243. this.txtExcelAutoSqlName.Name = "txtExcelAutoSqlName";
  244. this.txtExcelAutoSqlName.Size = new System.Drawing.Size(230, 31);
  245. this.txtExcelAutoSqlName.TabIndex = 47;
  246. this.txtExcelAutoSqlName.Enter += new System.EventHandler(this.txtExcelAutoSqlName_Enter);
  247. this.txtExcelAutoSqlName.Leave += new System.EventHandler(this.txtExcelAutoSqlName_Leave);
  248. //
  249. // lbExcelDynQuery
  250. //
  251. this.lbExcelDynQuery.AutoSize = true;
  252. this.lbExcelDynQuery.Location = new System.Drawing.Point(97, 209);
  253. this.lbExcelDynQuery.Name = "lbExcelDynQuery";
  254. this.lbExcelDynQuery.Size = new System.Drawing.Size(154, 24);
  255. this.lbExcelDynQuery.TabIndex = 46;
  256. this.lbExcelDynQuery.Text = "自定义查询语句:";
  257. //
  258. // cbxExcelReadFolder
  259. //
  260. this.cbxExcelReadFolder.AutoSize = true;
  261. this.cbxExcelReadFolder.Location = new System.Drawing.Point(560, 150);
  262. this.cbxExcelReadFolder.Name = "cbxExcelReadFolder";
  263. this.cbxExcelReadFolder.Size = new System.Drawing.Size(126, 28);
  264. this.cbxExcelReadFolder.TabIndex = 32;
  265. this.cbxExcelReadFolder.Text = "读取文件夹";
  266. this.cbxExcelReadFolder.UseVisualStyleBackColor = true;
  267. this.cbxExcelReadFolder.CheckedChanged += new System.EventHandler(this.cbxExcelReadFolder_CheckedChanged);
  268. //
  269. // cbxExcelReadFile
  270. //
  271. this.cbxExcelReadFile.AutoSize = true;
  272. this.cbxExcelReadFile.Checked = true;
  273. this.cbxExcelReadFile.CheckState = System.Windows.Forms.CheckState.Checked;
  274. this.cbxExcelReadFile.Location = new System.Drawing.Point(311, 150);
  275. this.cbxExcelReadFile.Name = "cbxExcelReadFile";
  276. this.cbxExcelReadFile.Size = new System.Drawing.Size(108, 28);
  277. this.cbxExcelReadFile.TabIndex = 31;
  278. this.cbxExcelReadFile.Text = "读取文件";
  279. this.cbxExcelReadFile.UseVisualStyleBackColor = true;
  280. this.cbxExcelReadFile.CheckedChanged += new System.EventHandler(this.cbxExcelReadFile_CheckedChanged);
  281. //
  282. // cbxExcelNewVersion
  283. //
  284. this.cbxExcelNewVersion.AutoSize = true;
  285. this.cbxExcelNewVersion.Location = new System.Drawing.Point(561, 14);
  286. this.cbxExcelNewVersion.Name = "cbxExcelNewVersion";
  287. this.cbxExcelNewVersion.Size = new System.Drawing.Size(204, 28);
  288. this.cbxExcelNewVersion.TabIndex = 25;
  289. this.cbxExcelNewVersion.Text = "office 2007以后版本";
  290. this.cbxExcelNewVersion.UseVisualStyleBackColor = true;
  291. this.cbxExcelNewVersion.CheckedChanged += new System.EventHandler(this.cbxExcelNewVersion_CheckedChanged);
  292. //
  293. // label22
  294. //
  295. this.label22.AutoSize = true;
  296. this.label22.Location = new System.Drawing.Point(90, 15);
  297. this.label22.Name = "label22";
  298. this.label22.Size = new System.Drawing.Size(163, 24);
  299. this.label22.TabIndex = 24;
  300. this.label22.Text = "Office Excel版本:";
  301. //
  302. // lblExcelRemotePwd
  303. //
  304. this.lblExcelRemotePwd.AutoSize = true;
  305. this.lblExcelRemotePwd.Location = new System.Drawing.Point(59, 150);
  306. this.lblExcelRemotePwd.Name = "lblExcelRemotePwd";
  307. this.lblExcelRemotePwd.Size = new System.Drawing.Size(210, 24);
  308. this.lblExcelRemotePwd.TabIndex = 10;
  309. this.lblExcelRemotePwd.Text = "读取模式(文件/文件夹):";
  310. //
  311. // lblExcelRemoteUser
  312. //
  313. this.lblExcelRemoteUser.AutoSize = true;
  314. this.lblExcelRemoteUser.Location = new System.Drawing.Point(86, 97);
  315. this.lblExcelRemoteUser.Name = "lblExcelRemoteUser";
  316. this.lblExcelRemoteUser.Size = new System.Drawing.Size(172, 24);
  317. this.lblExcelRemoteUser.TabIndex = 8;
  318. this.lblExcelRemoteUser.Text = "自定义文件名格式:";
  319. //
  320. // txtExcelFileNameFormat
  321. //
  322. this.txtExcelFileNameFormat.Location = new System.Drawing.Point(236, 94);
  323. this.txtExcelFileNameFormat.Name = "txtExcelFileNameFormat";
  324. this.txtExcelFileNameFormat.Size = new System.Drawing.Size(230, 31);
  325. this.txtExcelFileNameFormat.TabIndex = 6;
  326. this.txtExcelFileNameFormat.Enter += new System.EventHandler(this.txtExcelFileNameFormat_Enter);
  327. this.txtExcelFileNameFormat.Leave += new System.EventHandler(this.txtExcelFileNameFormat_Leave);
  328. //
  329. // cbxExcelOldVersion
  330. //
  331. this.cbxExcelOldVersion.AutoSize = true;
  332. this.cbxExcelOldVersion.Checked = true;
  333. this.cbxExcelOldVersion.CheckState = System.Windows.Forms.CheckState.Checked;
  334. this.cbxExcelOldVersion.Location = new System.Drawing.Point(312, 14);
  335. this.cbxExcelOldVersion.Name = "cbxExcelOldVersion";
  336. this.cbxExcelOldVersion.Size = new System.Drawing.Size(204, 28);
  337. this.cbxExcelOldVersion.TabIndex = 4;
  338. this.cbxExcelOldVersion.Text = "office 2007以前版本";
  339. this.cbxExcelOldVersion.UseVisualStyleBackColor = true;
  340. this.cbxExcelOldVersion.CheckedChanged += new System.EventHandler(this.cbxExcelOldVersion_CheckedChanged);
  341. //
  342. // lbExcelDateFormat
  343. //
  344. this.lbExcelDateFormat.AutoSize = true;
  345. this.lbExcelDateFormat.Location = new System.Drawing.Point(97, 50);
  346. this.lbExcelDateFormat.Name = "lbExcelDateFormat";
  347. this.lbExcelDateFormat.Size = new System.Drawing.Size(154, 24);
  348. this.lbExcelDateFormat.TabIndex = 5;
  349. this.lbExcelDateFormat.Text = "日期列特殊格式:";
  350. //
  351. // txtExcelSpecialDateColumnFormat
  352. //
  353. this.txtExcelSpecialDateColumnFormat.Location = new System.Drawing.Point(235, 47);
  354. this.txtExcelSpecialDateColumnFormat.Name = "txtExcelSpecialDateColumnFormat";
  355. this.txtExcelSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 31);
  356. this.txtExcelSpecialDateColumnFormat.TabIndex = 5;
  357. this.txtExcelSpecialDateColumnFormat.Enter += new System.EventHandler(this.txtExcelSpecialDateColumnFormat_Enter);
  358. this.txtExcelSpecialDateColumnFormat.Leave += new System.EventHandler(this.txtExcelSpecialDateColumnFormat_Leave);
  359. //
  360. // tabFoxPro
  361. //
  362. this.tabFoxPro.Controls.Add(this.txtFoxProSpecialMethodName);
  363. this.tabFoxPro.Controls.Add(this.txtFoxProSpecialMethod);
  364. this.tabFoxPro.Controls.Add(this.label27);
  365. this.tabFoxPro.Controls.Add(this.label33);
  366. this.tabFoxPro.Controls.Add(this.txtFoxProAutoSqlName);
  367. this.tabFoxPro.Controls.Add(this.cbxFoxProReadFolder);
  368. this.tabFoxPro.Controls.Add(this.txtFoxProAutoSql);
  369. this.tabFoxPro.Controls.Add(this.cbxFoxProReadFile);
  370. this.tabFoxPro.Controls.Add(this.label35);
  371. this.tabFoxPro.Controls.Add(this.label38);
  372. this.tabFoxPro.Controls.Add(this.txtFoxProFileNameFormat);
  373. this.tabFoxPro.Controls.Add(this.label39);
  374. this.tabFoxPro.Controls.Add(this.txtFoxProSpecialDateColumnFormat);
  375. this.tabFoxPro.Location = new System.Drawing.Point(4, 33);
  376. this.tabFoxPro.Name = "tabFoxPro";
  377. this.tabFoxPro.Padding = new System.Windows.Forms.Padding(3);
  378. this.tabFoxPro.Size = new System.Drawing.Size(1174, 454);
  379. this.tabFoxPro.TabIndex = 6;
  380. this.tabFoxPro.Text = "FoxPro";
  381. this.tabFoxPro.UseVisualStyleBackColor = true;
  382. //
  383. // txtFoxProSpecialMethodName
  384. //
  385. this.txtFoxProSpecialMethodName.Location = new System.Drawing.Point(213, 221);
  386. this.txtFoxProSpecialMethodName.Name = "txtFoxProSpecialMethodName";
  387. this.txtFoxProSpecialMethodName.Size = new System.Drawing.Size(230, 31);
  388. this.txtFoxProSpecialMethodName.TabIndex = 65;
  389. this.txtFoxProSpecialMethodName.Enter += new System.EventHandler(this.txtFoxProSpecialMethodName_Enter);
  390. this.txtFoxProSpecialMethodName.Leave += new System.EventHandler(this.txtFoxProSpecialMethodName_Leave);
  391. //
  392. // txtFoxProSpecialMethod
  393. //
  394. this.txtFoxProSpecialMethod.Location = new System.Drawing.Point(213, 261);
  395. this.txtFoxProSpecialMethod.Multiline = true;
  396. this.txtFoxProSpecialMethod.Name = "txtFoxProSpecialMethod";
  397. this.txtFoxProSpecialMethod.Size = new System.Drawing.Size(230, 64);
  398. this.txtFoxProSpecialMethod.TabIndex = 66;
  399. this.txtFoxProSpecialMethod.Enter += new System.EventHandler(this.txtFoxProSpecialMethod_Enter);
  400. this.txtFoxProSpecialMethod.Leave += new System.EventHandler(this.txtFoxProSpecialMethod_Leave);
  401. //
  402. // label27
  403. //
  404. this.label27.AutoSize = true;
  405. this.label27.Location = new System.Drawing.Point(133, 224);
  406. this.label27.Name = "label27";
  407. this.label27.Size = new System.Drawing.Size(100, 24);
  408. this.label27.TabIndex = 64;
  409. this.label27.Text = "补充方法:";
  410. //
  411. // label33
  412. //
  413. this.label33.AutoSize = true;
  414. this.label33.Location = new System.Drawing.Point(97, 127);
  415. this.label33.Name = "label33";
  416. this.label33.Size = new System.Drawing.Size(154, 24);
  417. this.label33.TabIndex = 63;
  418. this.label33.Text = "自定义查询语句:";
  419. //
  420. // txtFoxProAutoSqlName
  421. //
  422. this.txtFoxProAutoSqlName.Location = new System.Drawing.Point(213, 124);
  423. this.txtFoxProAutoSqlName.Name = "txtFoxProAutoSqlName";
  424. this.txtFoxProAutoSqlName.Size = new System.Drawing.Size(230, 31);
  425. this.txtFoxProAutoSqlName.TabIndex = 58;
  426. this.txtFoxProAutoSqlName.Enter += new System.EventHandler(this.txtFoxProAutoSqlName_Enter);
  427. this.txtFoxProAutoSqlName.Leave += new System.EventHandler(this.txtFoxProAutoSqlName_Leave);
  428. //
  429. // cbxFoxProReadFolder
  430. //
  431. this.cbxFoxProReadFolder.AutoSize = true;
  432. this.cbxFoxProReadFolder.Location = new System.Drawing.Point(296, 14);
  433. this.cbxFoxProReadFolder.Name = "cbxFoxProReadFolder";
  434. this.cbxFoxProReadFolder.Size = new System.Drawing.Size(126, 28);
  435. this.cbxFoxProReadFolder.TabIndex = 62;
  436. this.cbxFoxProReadFolder.Text = "读取文件夹";
  437. this.cbxFoxProReadFolder.UseVisualStyleBackColor = true;
  438. this.cbxFoxProReadFolder.CheckedChanged += new System.EventHandler(this.cbxFoxProReadFolder_CheckedChanged);
  439. //
  440. // txtFoxProAutoSql
  441. //
  442. this.txtFoxProAutoSql.Location = new System.Drawing.Point(213, 153);
  443. this.txtFoxProAutoSql.Multiline = true;
  444. this.txtFoxProAutoSql.Name = "txtFoxProAutoSql";
  445. this.txtFoxProAutoSql.Size = new System.Drawing.Size(230, 56);
  446. this.txtFoxProAutoSql.TabIndex = 60;
  447. this.txtFoxProAutoSql.Enter += new System.EventHandler(this.txtFoxProAutoSql_Enter);
  448. this.txtFoxProAutoSql.Leave += new System.EventHandler(this.txtFoxProAutoSql_Leave);
  449. //
  450. // cbxFoxProReadFile
  451. //
  452. this.cbxFoxProReadFile.AutoSize = true;
  453. this.cbxFoxProReadFile.Checked = true;
  454. this.cbxFoxProReadFile.CheckState = System.Windows.Forms.CheckState.Checked;
  455. this.cbxFoxProReadFile.Location = new System.Drawing.Point(215, 14);
  456. this.cbxFoxProReadFile.Name = "cbxFoxProReadFile";
  457. this.cbxFoxProReadFile.Size = new System.Drawing.Size(108, 28);
  458. this.cbxFoxProReadFile.TabIndex = 61;
  459. this.cbxFoxProReadFile.Text = "读取文件";
  460. this.cbxFoxProReadFile.UseVisualStyleBackColor = true;
  461. this.cbxFoxProReadFile.CheckedChanged += new System.EventHandler(this.cbxFoxProReadFile_CheckedChanged);
  462. //
  463. // label35
  464. //
  465. this.label35.AutoSize = true;
  466. this.label35.Location = new System.Drawing.Point(60, 15);
  467. this.label35.Name = "label35";
  468. this.label35.Size = new System.Drawing.Size(210, 24);
  469. this.label35.TabIndex = 53;
  470. this.label35.Text = "读取模式(文件/文件夹):";
  471. //
  472. // label38
  473. //
  474. this.label38.AutoSize = true;
  475. this.label38.Location = new System.Drawing.Point(85, 90);
  476. this.label38.Name = "label38";
  477. this.label38.Size = new System.Drawing.Size(172, 24);
  478. this.label38.TabIndex = 52;
  479. this.label38.Text = "自定义文件名格式:";
  480. //
  481. // txtFoxProFileNameFormat
  482. //
  483. this.txtFoxProFileNameFormat.Location = new System.Drawing.Point(213, 87);
  484. this.txtFoxProFileNameFormat.Name = "txtFoxProFileNameFormat";
  485. this.txtFoxProFileNameFormat.Size = new System.Drawing.Size(230, 31);
  486. this.txtFoxProFileNameFormat.TabIndex = 51;
  487. this.txtFoxProFileNameFormat.Enter += new System.EventHandler(this.txtFoxProFileNameFormat_Enter);
  488. this.txtFoxProFileNameFormat.Leave += new System.EventHandler(this.txtFoxProFileNameFormat_Leave);
  489. //
  490. // label39
  491. //
  492. this.label39.AutoSize = true;
  493. this.label39.Location = new System.Drawing.Point(97, 53);
  494. this.label39.Name = "label39";
  495. this.label39.Size = new System.Drawing.Size(154, 24);
  496. this.label39.TabIndex = 49;
  497. this.label39.Text = "日期列特殊格式:";
  498. //
  499. // txtFoxProSpecialDateColumnFormat
  500. //
  501. this.txtFoxProSpecialDateColumnFormat.Location = new System.Drawing.Point(213, 50);
  502. this.txtFoxProSpecialDateColumnFormat.Name = "txtFoxProSpecialDateColumnFormat";
  503. this.txtFoxProSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 31);
  504. this.txtFoxProSpecialDateColumnFormat.TabIndex = 50;
  505. this.txtFoxProSpecialDateColumnFormat.Enter += new System.EventHandler(this.txtFoxProSpecialDateColumnFormat_Enter);
  506. this.txtFoxProSpecialDateColumnFormat.Leave += new System.EventHandler(this.txtFoxProSpecialDateColumnFormat_Leave);
  507. //
  508. // tabAccess
  509. //
  510. this.tabAccess.Controls.Add(this.label2);
  511. this.tabAccess.Controls.Add(this.txtAccessSuffix);
  512. this.tabAccess.Controls.Add(this.cbxAccessReadFolder);
  513. this.tabAccess.Controls.Add(this.cbxAccessReadFile);
  514. this.tabAccess.Controls.Add(this.txtAccessAutoSql);
  515. this.tabAccess.Controls.Add(this.txtAccessAutoSqlName);
  516. this.tabAccess.Controls.Add(this.label11);
  517. this.tabAccess.Controls.Add(this.cbxAccessNewVersion);
  518. this.tabAccess.Controls.Add(this.label15);
  519. this.tabAccess.Controls.Add(this.label16);
  520. this.tabAccess.Controls.Add(this.label21);
  521. this.tabAccess.Controls.Add(this.txtAccessFileName);
  522. this.tabAccess.Controls.Add(this.cbxAccessOldVersion);
  523. this.tabAccess.Controls.Add(this.label31);
  524. this.tabAccess.Controls.Add(this.txtAccessSpecialDateColumnFormat);
  525. this.tabAccess.Location = new System.Drawing.Point(4, 33);
  526. this.tabAccess.Name = "tabAccess";
  527. this.tabAccess.Padding = new System.Windows.Forms.Padding(3);
  528. this.tabAccess.Size = new System.Drawing.Size(1174, 454);
  529. this.tabAccess.TabIndex = 1;
  530. this.tabAccess.Text = "Access";
  531. this.tabAccess.UseVisualStyleBackColor = true;
  532. //
  533. // label2
  534. //
  535. this.label2.AutoSize = true;
  536. this.label2.Location = new System.Drawing.Point(106, 53);
  537. this.label2.Name = "label2";
  538. this.label2.Size = new System.Drawing.Size(139, 24);
  539. this.label2.TabIndex = 48;
  540. this.label2.Text = "Access后缀名:";
  541. //
  542. // txtAccessSuffix
  543. //
  544. this.txtAccessSuffix.Location = new System.Drawing.Point(205, 50);
  545. this.txtAccessSuffix.Name = "txtAccessSuffix";
  546. this.txtAccessSuffix.Size = new System.Drawing.Size(230, 31);
  547. this.txtAccessSuffix.TabIndex = 49;
  548. this.txtAccessSuffix.Enter += new System.EventHandler(this.txtAccessSuffix_Enter);
  549. this.txtAccessSuffix.Leave += new System.EventHandler(this.txtAccessSuffix_Leave);
  550. //
  551. // cbxAccessReadFolder
  552. //
  553. this.cbxAccessReadFolder.AutoSize = true;
  554. this.cbxAccessReadFolder.Location = new System.Drawing.Point(290, 161);
  555. this.cbxAccessReadFolder.Name = "cbxAccessReadFolder";
  556. this.cbxAccessReadFolder.Size = new System.Drawing.Size(126, 28);
  557. this.cbxAccessReadFolder.TabIndex = 47;
  558. this.cbxAccessReadFolder.Text = "读取文件夹";
  559. this.cbxAccessReadFolder.UseVisualStyleBackColor = true;
  560. this.cbxAccessReadFolder.CheckedChanged += new System.EventHandler(this.cbxAccessReadFolder_CheckedChanged);
  561. //
  562. // cbxAccessReadFile
  563. //
  564. this.cbxAccessReadFile.AutoSize = true;
  565. this.cbxAccessReadFile.Checked = true;
  566. this.cbxAccessReadFile.CheckState = System.Windows.Forms.CheckState.Checked;
  567. this.cbxAccessReadFile.Location = new System.Drawing.Point(208, 161);
  568. this.cbxAccessReadFile.Name = "cbxAccessReadFile";
  569. this.cbxAccessReadFile.Size = new System.Drawing.Size(108, 28);
  570. this.cbxAccessReadFile.TabIndex = 46;
  571. this.cbxAccessReadFile.Text = "读取文件";
  572. this.cbxAccessReadFile.UseVisualStyleBackColor = true;
  573. this.cbxAccessReadFile.CheckedChanged += new System.EventHandler(this.cbxAccessReadFile_CheckedChanged);
  574. //
  575. // txtAccessAutoSql
  576. //
  577. this.txtAccessAutoSql.Location = new System.Drawing.Point(205, 227);
  578. this.txtAccessAutoSql.Multiline = true;
  579. this.txtAccessAutoSql.Name = "txtAccessAutoSql";
  580. this.txtAccessAutoSql.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  581. this.txtAccessAutoSql.Size = new System.Drawing.Size(846, 203);
  582. this.txtAccessAutoSql.TabIndex = 45;
  583. this.txtAccessAutoSql.Enter += new System.EventHandler(this.txtAccessAutoSql_Enter);
  584. this.txtAccessAutoSql.Leave += new System.EventHandler(this.txtAccessAutoSql_Leave);
  585. //
  586. // txtAccessAutoSqlName
  587. //
  588. this.txtAccessAutoSqlName.Location = new System.Drawing.Point(205, 195);
  589. this.txtAccessAutoSqlName.Name = "txtAccessAutoSqlName";
  590. this.txtAccessAutoSqlName.Size = new System.Drawing.Size(230, 31);
  591. this.txtAccessAutoSqlName.TabIndex = 43;
  592. this.txtAccessAutoSqlName.Enter += new System.EventHandler(this.txtAccessAutoSqlName_Enter);
  593. this.txtAccessAutoSqlName.Leave += new System.EventHandler(this.txtAccessAutoSqlName_Leave);
  594. //
  595. // label11
  596. //
  597. this.label11.AutoSize = true;
  598. this.label11.Location = new System.Drawing.Point(97, 198);
  599. this.label11.Name = "label11";
  600. this.label11.Size = new System.Drawing.Size(154, 24);
  601. this.label11.TabIndex = 41;
  602. this.label11.Text = "自定义查询语句:";
  603. //
  604. // cbxAccessNewVersion
  605. //
  606. this.cbxAccessNewVersion.AutoSize = true;
  607. this.cbxAccessNewVersion.Location = new System.Drawing.Point(352, 14);
  608. this.cbxAccessNewVersion.Name = "cbxAccessNewVersion";
  609. this.cbxAccessNewVersion.Size = new System.Drawing.Size(204, 28);
  610. this.cbxAccessNewVersion.TabIndex = 40;
  611. this.cbxAccessNewVersion.Text = "office 2007以后版本";
  612. this.cbxAccessNewVersion.UseVisualStyleBackColor = true;
  613. this.cbxAccessNewVersion.CheckedChanged += new System.EventHandler(this.cbxAccessNewVersion_CheckedChanged);
  614. //
  615. // label15
  616. //
  617. this.label15.AutoSize = true;
  618. this.label15.Location = new System.Drawing.Point(80, 15);
  619. this.label15.Name = "label15";
  620. this.label15.Size = new System.Drawing.Size(177, 24);
  621. this.label15.TabIndex = 39;
  622. this.label15.Text = "Office Access版本:";
  623. //
  624. // label16
  625. //
  626. this.label16.AutoSize = true;
  627. this.label16.Location = new System.Drawing.Point(60, 161);
  628. this.label16.Name = "label16";
  629. this.label16.Size = new System.Drawing.Size(210, 24);
  630. this.label16.TabIndex = 38;
  631. this.label16.Text = "读取模式(文件/文件夹):";
  632. //
  633. // label21
  634. //
  635. this.label21.AutoSize = true;
  636. this.label21.Location = new System.Drawing.Point(85, 127);
  637. this.label21.Name = "label21";
  638. this.label21.Size = new System.Drawing.Size(172, 24);
  639. this.label21.TabIndex = 37;
  640. this.label21.Text = "自定义文件名格式:";
  641. //
  642. // txtAccessFileName
  643. //
  644. this.txtAccessFileName.Location = new System.Drawing.Point(205, 124);
  645. this.txtAccessFileName.Name = "txtAccessFileName";
  646. this.txtAccessFileName.Size = new System.Drawing.Size(230, 31);
  647. this.txtAccessFileName.TabIndex = 36;
  648. this.txtAccessFileName.Enter += new System.EventHandler(this.txtAccessFileName_Enter);
  649. this.txtAccessFileName.Leave += new System.EventHandler(this.txtAccessFileName_Leave);
  650. //
  651. // cbxAccessOldVersion
  652. //
  653. this.cbxAccessOldVersion.AutoSize = true;
  654. this.cbxAccessOldVersion.Checked = true;
  655. this.cbxAccessOldVersion.CheckState = System.Windows.Forms.CheckState.Checked;
  656. this.cbxAccessOldVersion.Location = new System.Drawing.Point(206, 14);
  657. this.cbxAccessOldVersion.Name = "cbxAccessOldVersion";
  658. this.cbxAccessOldVersion.Size = new System.Drawing.Size(204, 28);
  659. this.cbxAccessOldVersion.TabIndex = 33;
  660. this.cbxAccessOldVersion.Text = "office 2007以前版本";
  661. this.cbxAccessOldVersion.UseVisualStyleBackColor = true;
  662. this.cbxAccessOldVersion.CheckedChanged += new System.EventHandler(this.cbxAccessOldVersion_CheckedChanged);
  663. //
  664. // label31
  665. //
  666. this.label31.AutoSize = true;
  667. this.label31.Location = new System.Drawing.Point(97, 90);
  668. this.label31.Name = "label31";
  669. this.label31.Size = new System.Drawing.Size(154, 24);
  670. this.label31.TabIndex = 34;
  671. this.label31.Text = "日期列特殊格式:";
  672. //
  673. // txtAccessSpecialDateColumnFormat
  674. //
  675. this.txtAccessSpecialDateColumnFormat.Location = new System.Drawing.Point(205, 87);
  676. this.txtAccessSpecialDateColumnFormat.Name = "txtAccessSpecialDateColumnFormat";
  677. this.txtAccessSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 31);
  678. this.txtAccessSpecialDateColumnFormat.TabIndex = 35;
  679. this.txtAccessSpecialDateColumnFormat.Enter += new System.EventHandler(this.txtAccessSpecialDateColumnFormat_Enter);
  680. this.txtAccessSpecialDateColumnFormat.Leave += new System.EventHandler(this.txtAccessSpecialDateColumnFormat_Leave);
  681. //
  682. // tabSQLite
  683. //
  684. this.tabSQLite.Controls.Add(this.label5);
  685. this.tabSQLite.Controls.Add(this.txtSqliteAutoSqlName);
  686. this.tabSQLite.Controls.Add(this.cbxSqliteReadFolder);
  687. this.tabSQLite.Controls.Add(this.txtSqliteAutoSql);
  688. this.tabSQLite.Controls.Add(this.cbxSqliteReadFile);
  689. this.tabSQLite.Controls.Add(this.label6);
  690. this.tabSQLite.Controls.Add(this.label7);
  691. this.tabSQLite.Controls.Add(this.txtSqliteFileNameFormat);
  692. this.tabSQLite.Controls.Add(this.label8);
  693. this.tabSQLite.Controls.Add(this.txtSqliteSpecialDateColumnFormat);
  694. this.tabSQLite.Location = new System.Drawing.Point(4, 33);
  695. this.tabSQLite.Name = "tabSQLite";
  696. this.tabSQLite.Size = new System.Drawing.Size(1174, 454);
  697. this.tabSQLite.TabIndex = 2;
  698. this.tabSQLite.Text = "SQLLite";
  699. this.tabSQLite.UseVisualStyleBackColor = true;
  700. //
  701. // label5
  702. //
  703. this.label5.AutoSize = true;
  704. this.label5.Location = new System.Drawing.Point(97, 123);
  705. this.label5.Name = "label5";
  706. this.label5.Size = new System.Drawing.Size(154, 24);
  707. this.label5.TabIndex = 76;
  708. this.label5.Text = "自定义查询语句:";
  709. //
  710. // txtSqliteAutoSqlName
  711. //
  712. this.txtSqliteAutoSqlName.Location = new System.Drawing.Point(206, 120);
  713. this.txtSqliteAutoSqlName.Name = "txtSqliteAutoSqlName";
  714. this.txtSqliteAutoSqlName.Size = new System.Drawing.Size(230, 31);
  715. this.txtSqliteAutoSqlName.TabIndex = 72;
  716. this.txtSqliteAutoSqlName.Enter += new System.EventHandler(this.txtSqliteAutoSqlName_Enter);
  717. this.txtSqliteAutoSqlName.Leave += new System.EventHandler(this.txtSqliteAutoSqlName_Leave);
  718. //
  719. // cbxSqliteReadFolder
  720. //
  721. this.cbxSqliteReadFolder.AutoSize = true;
  722. this.cbxSqliteReadFolder.Location = new System.Drawing.Point(288, 15);
  723. this.cbxSqliteReadFolder.Name = "cbxSqliteReadFolder";
  724. this.cbxSqliteReadFolder.Size = new System.Drawing.Size(126, 28);
  725. this.cbxSqliteReadFolder.TabIndex = 75;
  726. this.cbxSqliteReadFolder.Text = "读取文件夹";
  727. this.cbxSqliteReadFolder.UseVisualStyleBackColor = true;
  728. this.cbxSqliteReadFolder.CheckedChanged += new System.EventHandler(this.cbxSqliteReadFolder_CheckedChanged);
  729. //
  730. // txtSqliteAutoSql
  731. //
  732. this.txtSqliteAutoSql.Location = new System.Drawing.Point(206, 151);
  733. this.txtSqliteAutoSql.Multiline = true;
  734. this.txtSqliteAutoSql.Name = "txtSqliteAutoSql";
  735. this.txtSqliteAutoSql.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  736. this.txtSqliteAutoSql.Size = new System.Drawing.Size(845, 260);
  737. this.txtSqliteAutoSql.TabIndex = 73;
  738. this.txtSqliteAutoSql.Enter += new System.EventHandler(this.txtSqliteAutoSql_Enter);
  739. this.txtSqliteAutoSql.Leave += new System.EventHandler(this.txtSqliteAutoSql_Leave);
  740. //
  741. // cbxSqliteReadFile
  742. //
  743. this.cbxSqliteReadFile.AutoSize = true;
  744. this.cbxSqliteReadFile.Checked = true;
  745. this.cbxSqliteReadFile.CheckState = System.Windows.Forms.CheckState.Checked;
  746. this.cbxSqliteReadFile.Location = new System.Drawing.Point(206, 15);
  747. this.cbxSqliteReadFile.Name = "cbxSqliteReadFile";
  748. this.cbxSqliteReadFile.Size = new System.Drawing.Size(108, 28);
  749. this.cbxSqliteReadFile.TabIndex = 74;
  750. this.cbxSqliteReadFile.Text = "读取文件";
  751. this.cbxSqliteReadFile.UseVisualStyleBackColor = true;
  752. this.cbxSqliteReadFile.CheckedChanged += new System.EventHandler(this.cbxSqliteReadFile_CheckedChanged);
  753. //
  754. // label6
  755. //
  756. this.label6.AutoSize = true;
  757. this.label6.Location = new System.Drawing.Point(60, 16);
  758. this.label6.Name = "label6";
  759. this.label6.Size = new System.Drawing.Size(210, 24);
  760. this.label6.TabIndex = 71;
  761. this.label6.Text = "读取模式(文件/文件夹):";
  762. //
  763. // label7
  764. //
  765. this.label7.AutoSize = true;
  766. this.label7.Location = new System.Drawing.Point(85, 88);
  767. this.label7.Name = "label7";
  768. this.label7.Size = new System.Drawing.Size(172, 24);
  769. this.label7.TabIndex = 70;
  770. this.label7.Text = "自定义文件名格式:";
  771. //
  772. // txtSqliteFileNameFormat
  773. //
  774. this.txtSqliteFileNameFormat.Location = new System.Drawing.Point(206, 85);
  775. this.txtSqliteFileNameFormat.Name = "txtSqliteFileNameFormat";
  776. this.txtSqliteFileNameFormat.Size = new System.Drawing.Size(230, 31);
  777. this.txtSqliteFileNameFormat.TabIndex = 69;
  778. this.txtSqliteFileNameFormat.Enter += new System.EventHandler(this.txtSqliteFileNameFormat_Enter);
  779. this.txtSqliteFileNameFormat.Leave += new System.EventHandler(this.txtSqliteFileNameFormat_Leave);
  780. //
  781. // label8
  782. //
  783. this.label8.AutoSize = true;
  784. this.label8.Location = new System.Drawing.Point(97, 53);
  785. this.label8.Name = "label8";
  786. this.label8.Size = new System.Drawing.Size(154, 24);
  787. this.label8.TabIndex = 67;
  788. this.label8.Text = "日期列特殊格式:";
  789. //
  790. // txtSqliteSpecialDateColumnFormat
  791. //
  792. this.txtSqliteSpecialDateColumnFormat.Location = new System.Drawing.Point(206, 50);
  793. this.txtSqliteSpecialDateColumnFormat.Name = "txtSqliteSpecialDateColumnFormat";
  794. this.txtSqliteSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 31);
  795. this.txtSqliteSpecialDateColumnFormat.TabIndex = 68;
  796. this.txtSqliteSpecialDateColumnFormat.Enter += new System.EventHandler(this.txtSqliteSpecialDateColumnFormat_Enter);
  797. this.txtSqliteSpecialDateColumnFormat.Leave += new System.EventHandler(this.txtSqliteSpecialDateColumnFormat_Leave);
  798. //
  799. // tabSQLServer
  800. //
  801. this.tabSQLServer.Controls.Add(this.label9);
  802. this.tabSQLServer.Controls.Add(this.txtSqlServerAutoSqlName);
  803. this.tabSQLServer.Controls.Add(this.txtSqlServerAutoSql);
  804. this.tabSQLServer.Controls.Add(this.label12);
  805. this.tabSQLServer.Controls.Add(this.txtSqlServerConnection);
  806. this.tabSQLServer.Controls.Add(this.label13);
  807. this.tabSQLServer.Controls.Add(this.txtSqlServerSpecialDateColumnFormat);
  808. this.tabSQLServer.Location = new System.Drawing.Point(4, 33);
  809. this.tabSQLServer.Name = "tabSQLServer";
  810. this.tabSQLServer.Size = new System.Drawing.Size(1174, 454);
  811. this.tabSQLServer.TabIndex = 3;
  812. this.tabSQLServer.Text = "SQL Server";
  813. this.tabSQLServer.UseVisualStyleBackColor = true;
  814. //
  815. // label9
  816. //
  817. this.label9.AutoSize = true;
  818. this.label9.Location = new System.Drawing.Point(98, 116);
  819. this.label9.Name = "label9";
  820. this.label9.Size = new System.Drawing.Size(154, 24);
  821. this.label9.TabIndex = 76;
  822. this.label9.Text = "自定义查询语句:";
  823. //
  824. // txtSqlServerAutoSqlName
  825. //
  826. this.txtSqlServerAutoSqlName.Location = new System.Drawing.Point(208, 113);
  827. this.txtSqlServerAutoSqlName.Name = "txtSqlServerAutoSqlName";
  828. this.txtSqlServerAutoSqlName.Size = new System.Drawing.Size(230, 31);
  829. this.txtSqlServerAutoSqlName.TabIndex = 72;
  830. this.txtSqlServerAutoSqlName.Enter += new System.EventHandler(this.txtSqlServerAutoSqlName_Enter);
  831. this.txtSqlServerAutoSqlName.Leave += new System.EventHandler(this.txtSqlServerAutoSqlName_Leave);
  832. //
  833. // txtSqlServerAutoSql
  834. //
  835. this.txtSqlServerAutoSql.Location = new System.Drawing.Point(208, 145);
  836. this.txtSqlServerAutoSql.Multiline = true;
  837. this.txtSqlServerAutoSql.Name = "txtSqlServerAutoSql";
  838. this.txtSqlServerAutoSql.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  839. this.txtSqlServerAutoSql.Size = new System.Drawing.Size(843, 279);
  840. this.txtSqlServerAutoSql.TabIndex = 73;
  841. this.txtSqlServerAutoSql.Enter += new System.EventHandler(this.txtSqlServerAutoSql_Enter);
  842. this.txtSqlServerAutoSql.Leave += new System.EventHandler(this.txtSqlServerAutoSql_Leave);
  843. //
  844. // label12
  845. //
  846. this.label12.AutoSize = true;
  847. this.label12.Location = new System.Drawing.Point(86, 53);
  848. this.label12.Name = "label12";
  849. this.label12.Size = new System.Drawing.Size(172, 24);
  850. this.label12.TabIndex = 70;
  851. this.label12.Text = "自定义连接字符串:";
  852. //
  853. // txtSqlServerConnection
  854. //
  855. this.txtSqlServerConnection.Location = new System.Drawing.Point(208, 50);
  856. this.txtSqlServerConnection.Multiline = true;
  857. this.txtSqlServerConnection.Name = "txtSqlServerConnection";
  858. this.txtSqlServerConnection.Size = new System.Drawing.Size(230, 51);
  859. this.txtSqlServerConnection.TabIndex = 69;
  860. this.txtSqlServerConnection.Enter += new System.EventHandler(this.txtSqlServerConnection_Enter);
  861. this.txtSqlServerConnection.Leave += new System.EventHandler(this.txtSqlServerConnection_Leave);
  862. //
  863. // label13
  864. //
  865. this.label13.AutoSize = true;
  866. this.label13.Location = new System.Drawing.Point(98, 18);
  867. this.label13.Name = "label13";
  868. this.label13.Size = new System.Drawing.Size(154, 24);
  869. this.label13.TabIndex = 67;
  870. this.label13.Text = "日期列特殊格式:";
  871. //
  872. // txtSqlServerSpecialDateColumnFormat
  873. //
  874. this.txtSqlServerSpecialDateColumnFormat.Location = new System.Drawing.Point(208, 15);
  875. this.txtSqlServerSpecialDateColumnFormat.Name = "txtSqlServerSpecialDateColumnFormat";
  876. this.txtSqlServerSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 31);
  877. this.txtSqlServerSpecialDateColumnFormat.TabIndex = 68;
  878. this.txtSqlServerSpecialDateColumnFormat.Enter += new System.EventHandler(this.txtSqlServerSpecialDateColumnFormat_Enter);
  879. this.txtSqlServerSpecialDateColumnFormat.Leave += new System.EventHandler(this.txtSqlServerSpecialDateColumnFormat_Leave);
  880. //
  881. // tabMySql
  882. //
  883. this.tabMySql.Controls.Add(this.label14);
  884. this.tabMySql.Controls.Add(this.txtMySqlAutoSqlName);
  885. this.tabMySql.Controls.Add(this.txtMySqlAutoSql);
  886. this.tabMySql.Controls.Add(this.label18);
  887. this.tabMySql.Controls.Add(this.txtMySqlSpecialDateColumnFormat);
  888. this.tabMySql.Location = new System.Drawing.Point(4, 33);
  889. this.tabMySql.Name = "tabMySql";
  890. this.tabMySql.Size = new System.Drawing.Size(1174, 454);
  891. this.tabMySql.TabIndex = 4;
  892. this.tabMySql.Text = "MySql";
  893. this.tabMySql.UseVisualStyleBackColor = true;
  894. //
  895. // label14
  896. //
  897. this.label14.AutoSize = true;
  898. this.label14.Location = new System.Drawing.Point(99, 60);
  899. this.label14.Name = "label14";
  900. this.label14.Size = new System.Drawing.Size(154, 24);
  901. this.label14.TabIndex = 86;
  902. this.label14.Text = "自定义查询语句:";
  903. //
  904. // txtMySqlAutoSqlName
  905. //
  906. this.txtMySqlAutoSqlName.Location = new System.Drawing.Point(207, 57);
  907. this.txtMySqlAutoSqlName.Name = "txtMySqlAutoSqlName";
  908. this.txtMySqlAutoSqlName.Size = new System.Drawing.Size(230, 31);
  909. this.txtMySqlAutoSqlName.TabIndex = 84;
  910. this.txtMySqlAutoSqlName.Enter += new System.EventHandler(this.txtMySqlAutoSqlName_Enter);
  911. this.txtMySqlAutoSqlName.Leave += new System.EventHandler(this.txtMySqlAutoSqlName_Leave);
  912. //
  913. // txtMySqlAutoSql
  914. //
  915. this.txtMySqlAutoSql.Location = new System.Drawing.Point(207, 89);
  916. this.txtMySqlAutoSql.Multiline = true;
  917. this.txtMySqlAutoSql.Name = "txtMySqlAutoSql";
  918. this.txtMySqlAutoSql.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  919. this.txtMySqlAutoSql.Size = new System.Drawing.Size(844, 339);
  920. this.txtMySqlAutoSql.TabIndex = 85;
  921. this.txtMySqlAutoSql.Enter += new System.EventHandler(this.txtMySqlAutoSql_Enter);
  922. this.txtMySqlAutoSql.Leave += new System.EventHandler(this.txtMySqlAutoSql_Leave);
  923. //
  924. // label18
  925. //
  926. this.label18.AutoSize = true;
  927. this.label18.Location = new System.Drawing.Point(97, 25);
  928. this.label18.Name = "label18";
  929. this.label18.Size = new System.Drawing.Size(154, 24);
  930. this.label18.TabIndex = 80;
  931. this.label18.Text = "日期列特殊格式:";
  932. //
  933. // txtMySqlSpecialDateColumnFormat
  934. //
  935. this.txtMySqlSpecialDateColumnFormat.Location = new System.Drawing.Point(207, 22);
  936. this.txtMySqlSpecialDateColumnFormat.Name = "txtMySqlSpecialDateColumnFormat";
  937. this.txtMySqlSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 31);
  938. this.txtMySqlSpecialDateColumnFormat.TabIndex = 81;
  939. this.txtMySqlSpecialDateColumnFormat.Enter += new System.EventHandler(this.txtMySqlSpecialDateColumnFormat_Enter);
  940. this.txtMySqlSpecialDateColumnFormat.Leave += new System.EventHandler(this.txtMySqlSpecialDateColumnFormat_Leave);
  941. //
  942. // tabOracle
  943. //
  944. this.tabOracle.Controls.Add(this.label4);
  945. this.tabOracle.Controls.Add(this.txtOracleAutoSqlName);
  946. this.tabOracle.Controls.Add(this.txtOracleAutoSql);
  947. this.tabOracle.Controls.Add(this.label10);
  948. this.tabOracle.Controls.Add(this.txtOracleSpecialDateColumnFormat);
  949. this.tabOracle.Location = new System.Drawing.Point(4, 33);
  950. this.tabOracle.Name = "tabOracle";
  951. this.tabOracle.Padding = new System.Windows.Forms.Padding(3);
  952. this.tabOracle.Size = new System.Drawing.Size(1174, 454);
  953. this.tabOracle.TabIndex = 5;
  954. this.tabOracle.Text = "Oracle";
  955. this.tabOracle.UseVisualStyleBackColor = true;
  956. //
  957. // label4
  958. //
  959. this.label4.AutoSize = true;
  960. this.label4.Location = new System.Drawing.Point(102, 65);
  961. this.label4.Name = "label4";
  962. this.label4.Size = new System.Drawing.Size(154, 24);
  963. this.label4.TabIndex = 91;
  964. this.label4.Text = "自定义查询语句:";
  965. //
  966. // txtOracleAutoSqlName
  967. //
  968. this.txtOracleAutoSqlName.Location = new System.Drawing.Point(210, 62);
  969. this.txtOracleAutoSqlName.Name = "txtOracleAutoSqlName";
  970. this.txtOracleAutoSqlName.Size = new System.Drawing.Size(230, 31);
  971. this.txtOracleAutoSqlName.TabIndex = 89;
  972. this.txtOracleAutoSqlName.Enter += new System.EventHandler(this.txtOracleAutoSqlName_Enter);
  973. this.txtOracleAutoSqlName.Leave += new System.EventHandler(this.txtOracleAutoSqlName_Leave);
  974. //
  975. // txtOracleAutoSql
  976. //
  977. this.txtOracleAutoSql.Location = new System.Drawing.Point(210, 94);
  978. this.txtOracleAutoSql.Multiline = true;
  979. this.txtOracleAutoSql.Name = "txtOracleAutoSql";
  980. this.txtOracleAutoSql.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  981. this.txtOracleAutoSql.Size = new System.Drawing.Size(841, 339);
  982. this.txtOracleAutoSql.TabIndex = 90;
  983. this.txtOracleAutoSql.Enter += new System.EventHandler(this.txtOracleAutoSql_Enter);
  984. this.txtOracleAutoSql.Leave += new System.EventHandler(this.txtOracleAutoSql_Leave);
  985. //
  986. // label10
  987. //
  988. this.label10.AutoSize = true;
  989. this.label10.Location = new System.Drawing.Point(97, 30);
  990. this.label10.Name = "label10";
  991. this.label10.Size = new System.Drawing.Size(154, 24);
  992. this.label10.TabIndex = 87;
  993. this.label10.Text = "日期列特殊格式:";
  994. //
  995. // txtOracleSpecialDateColumnFormat
  996. //
  997. this.txtOracleSpecialDateColumnFormat.Location = new System.Drawing.Point(210, 27);
  998. this.txtOracleSpecialDateColumnFormat.Name = "txtOracleSpecialDateColumnFormat";
  999. this.txtOracleSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 31);
  1000. this.txtOracleSpecialDateColumnFormat.TabIndex = 88;
  1001. this.txtOracleSpecialDateColumnFormat.Enter += new System.EventHandler(this.txtOracleSpecialDateColumnFormat_Enter);
  1002. this.txtOracleSpecialDateColumnFormat.Leave += new System.EventHandler(this.txtOracleSpecialDateColumnFormat_Leave);
  1003. //
  1004. // tabTxt
  1005. //
  1006. this.tabTxt.Controls.Add(this.cbxNormalFileNoCustomDate);
  1007. this.tabTxt.Controls.Add(this.cbxNormalFileCustomDate);
  1008. this.tabTxt.Controls.Add(this.numNormalFileStartIndex);
  1009. this.tabTxt.Controls.Add(this.label20);
  1010. this.tabTxt.Controls.Add(this.label19);
  1011. this.tabTxt.Controls.Add(this.label17);
  1012. this.tabTxt.Controls.Add(this.txtNormalFileReadSplitMode);
  1013. this.tabTxt.Controls.Add(this.label30);
  1014. this.tabTxt.Controls.Add(this.txtNormalFileReadDataMode);
  1015. this.tabTxt.Controls.Add(this.label29);
  1016. this.tabTxt.Controls.Add(this.txtNormalFileSuffix);
  1017. this.tabTxt.Controls.Add(this.cbxNormalFileReadFolder);
  1018. this.tabTxt.Controls.Add(this.cbxNormalFileReadFile);
  1019. this.tabTxt.Controls.Add(this.label25);
  1020. this.tabTxt.Controls.Add(this.label26);
  1021. this.tabTxt.Controls.Add(this.txtNormalFileNameFormat);
  1022. this.tabTxt.Controls.Add(this.label28);
  1023. this.tabTxt.Controls.Add(this.txtNormalFileSpecialDateColumnFormat);
  1024. this.tabTxt.Location = new System.Drawing.Point(4, 33);
  1025. this.tabTxt.Name = "tabTxt";
  1026. this.tabTxt.Padding = new System.Windows.Forms.Padding(3);
  1027. this.tabTxt.Size = new System.Drawing.Size(1174, 454);
  1028. this.tabTxt.TabIndex = 7;
  1029. this.tabTxt.Text = "TXT";
  1030. this.tabTxt.UseVisualStyleBackColor = true;
  1031. //
  1032. // cbxNormalFileNoCustomDate
  1033. //
  1034. this.cbxNormalFileNoCustomDate.AutoSize = true;
  1035. this.cbxNormalFileNoCustomDate.Checked = true;
  1036. this.cbxNormalFileNoCustomDate.CheckState = System.Windows.Forms.CheckState.Checked;
  1037. this.cbxNormalFileNoCustomDate.Location = new System.Drawing.Point(270, 283);
  1038. this.cbxNormalFileNoCustomDate.Name = "cbxNormalFileNoCustomDate";
  1039. this.cbxNormalFileNoCustomDate.Size = new System.Drawing.Size(54, 28);
  1040. this.cbxNormalFileNoCustomDate.TabIndex = 67;
  1041. this.cbxNormalFileNoCustomDate.Text = "否";
  1042. this.cbxNormalFileNoCustomDate.UseVisualStyleBackColor = true;
  1043. this.cbxNormalFileNoCustomDate.CheckedChanged += new System.EventHandler(this.cbxNormalFileNoCustomDate_CheckedChanged);
  1044. //
  1045. // cbxNormalFileCustomDate
  1046. //
  1047. this.cbxNormalFileCustomDate.AutoSize = true;
  1048. this.cbxNormalFileCustomDate.Location = new System.Drawing.Point(208, 283);
  1049. this.cbxNormalFileCustomDate.Name = "cbxNormalFileCustomDate";
  1050. this.cbxNormalFileCustomDate.Size = new System.Drawing.Size(54, 28);
  1051. this.cbxNormalFileCustomDate.TabIndex = 66;
  1052. this.cbxNormalFileCustomDate.Text = "是";
  1053. this.cbxNormalFileCustomDate.UseVisualStyleBackColor = true;
  1054. this.cbxNormalFileCustomDate.CheckedChanged += new System.EventHandler(this.cbxNormalFileCustomDate_CheckedChanged);
  1055. //
  1056. // numNormalFileStartIndex
  1057. //
  1058. this.numNormalFileStartIndex.Location = new System.Drawing.Point(208, 248);
  1059. this.numNormalFileStartIndex.Minimum = new decimal(new int[] {
  1060. 1,
  1061. 0,
  1062. 0,
  1063. 0});
  1064. this.numNormalFileStartIndex.Name = "numNormalFileStartIndex";
  1065. this.numNormalFileStartIndex.Size = new System.Drawing.Size(120, 31);
  1066. this.numNormalFileStartIndex.TabIndex = 65;
  1067. this.numNormalFileStartIndex.Value = new decimal(new int[] {
  1068. 1,
  1069. 0,
  1070. 0,
  1071. 0});
  1072. //
  1073. // label20
  1074. //
  1075. this.label20.AutoSize = true;
  1076. this.label20.Location = new System.Drawing.Point(61, 283);
  1077. this.label20.Name = "label20";
  1078. this.label20.Size = new System.Drawing.Size(208, 24);
  1079. this.label20.TabIndex = 64;
  1080. this.label20.Text = "是否由系统创建日期列:";
  1081. //
  1082. // label19
  1083. //
  1084. this.label19.AutoSize = true;
  1085. this.label19.Location = new System.Drawing.Point(97, 248);
  1086. this.label19.Name = "label19";
  1087. this.label19.Size = new System.Drawing.Size(154, 24);
  1088. this.label19.TabIndex = 62;
  1089. this.label19.Text = "数据行起始行号:";
  1090. //
  1091. // label17
  1092. //
  1093. this.label17.AutoSize = true;
  1094. this.label17.Location = new System.Drawing.Point(97, 209);
  1095. this.label17.Name = "label17";
  1096. this.label17.Size = new System.Drawing.Size(154, 24);
  1097. this.label17.TabIndex = 60;
  1098. this.label17.Text = "分割数据行选型:";
  1099. //
  1100. // txtNormalFileReadSplitMode
  1101. //
  1102. this.txtNormalFileReadSplitMode.Location = new System.Drawing.Point(207, 206);
  1103. this.txtNormalFileReadSplitMode.Name = "txtNormalFileReadSplitMode";
  1104. this.txtNormalFileReadSplitMode.Size = new System.Drawing.Size(230, 31);
  1105. this.txtNormalFileReadSplitMode.TabIndex = 59;
  1106. this.txtNormalFileReadSplitMode.Enter += new System.EventHandler(this.txtNormalFileReadSplitMode_Enter);
  1107. this.txtNormalFileReadSplitMode.Leave += new System.EventHandler(this.txtNormalFileReadSplitMode_Leave);
  1108. //
  1109. // label30
  1110. //
  1111. this.label30.AutoSize = true;
  1112. this.label30.Location = new System.Drawing.Point(109, 170);
  1113. this.label30.Name = "label30";
  1114. this.label30.Size = new System.Drawing.Size(136, 24);
  1115. this.label30.TabIndex = 58;
  1116. this.label30.Text = "读取方法选型:";
  1117. //
  1118. // txtNormalFileReadDataMode
  1119. //
  1120. this.txtNormalFileReadDataMode.Location = new System.Drawing.Point(207, 167);
  1121. this.txtNormalFileReadDataMode.Name = "txtNormalFileReadDataMode";
  1122. this.txtNormalFileReadDataMode.Size = new System.Drawing.Size(230, 31);
  1123. this.txtNormalFileReadDataMode.TabIndex = 57;
  1124. this.txtNormalFileReadDataMode.Enter += new System.EventHandler(this.txtNormalFileReadDataMode_Enter);
  1125. this.txtNormalFileReadDataMode.Leave += new System.EventHandler(this.txtNormalFileReadDataMode_Leave);
  1126. //
  1127. // label29
  1128. //
  1129. this.label29.AutoSize = true;
  1130. this.label29.Location = new System.Drawing.Point(85, 132);
  1131. this.label29.Name = "label29";
  1132. this.label29.Size = new System.Drawing.Size(172, 24);
  1133. this.label29.TabIndex = 56;
  1134. this.label29.Text = "自定义文件后缀名:";
  1135. //
  1136. // txtNormalFileSuffix
  1137. //
  1138. this.txtNormalFileSuffix.Location = new System.Drawing.Point(207, 129);
  1139. this.txtNormalFileSuffix.Name = "txtNormalFileSuffix";
  1140. this.txtNormalFileSuffix.Size = new System.Drawing.Size(230, 31);
  1141. this.txtNormalFileSuffix.TabIndex = 55;
  1142. this.txtNormalFileSuffix.Enter += new System.EventHandler(this.txtNormalFileSuffix_Enter);
  1143. this.txtNormalFileSuffix.Leave += new System.EventHandler(this.txtNormalFileSuffix_Leave);
  1144. //
  1145. // cbxNormalFileReadFolder
  1146. //
  1147. this.cbxNormalFileReadFolder.AutoSize = true;
  1148. this.cbxNormalFileReadFolder.Location = new System.Drawing.Point(288, 20);
  1149. this.cbxNormalFileReadFolder.Name = "cbxNormalFileReadFolder";
  1150. this.cbxNormalFileReadFolder.Size = new System.Drawing.Size(126, 28);
  1151. this.cbxNormalFileReadFolder.TabIndex = 54;
  1152. this.cbxNormalFileReadFolder.Text = "读取文件夹";
  1153. this.cbxNormalFileReadFolder.UseVisualStyleBackColor = true;
  1154. this.cbxNormalFileReadFolder.CheckedChanged += new System.EventHandler(this.cbxNormalFileReadFolder_CheckedChanged);
  1155. //
  1156. // cbxNormalFileReadFile
  1157. //
  1158. this.cbxNormalFileReadFile.AutoSize = true;
  1159. this.cbxNormalFileReadFile.Checked = true;
  1160. this.cbxNormalFileReadFile.CheckState = System.Windows.Forms.CheckState.Checked;
  1161. this.cbxNormalFileReadFile.Location = new System.Drawing.Point(207, 20);
  1162. this.cbxNormalFileReadFile.Name = "cbxNormalFileReadFile";
  1163. this.cbxNormalFileReadFile.Size = new System.Drawing.Size(108, 28);
  1164. this.cbxNormalFileReadFile.TabIndex = 53;
  1165. this.cbxNormalFileReadFile.Text = "读取文件";
  1166. this.cbxNormalFileReadFile.UseVisualStyleBackColor = true;
  1167. this.cbxNormalFileReadFile.CheckedChanged += new System.EventHandler(this.cbxNormalFileReadFile_CheckedChanged);
  1168. //
  1169. // label25
  1170. //
  1171. this.label25.AutoSize = true;
  1172. this.label25.Location = new System.Drawing.Point(60, 20);
  1173. this.label25.Name = "label25";
  1174. this.label25.Size = new System.Drawing.Size(210, 24);
  1175. this.label25.TabIndex = 52;
  1176. this.label25.Text = "读取模式(文件/文件夹):";
  1177. //
  1178. // label26
  1179. //
  1180. this.label26.AutoSize = true;
  1181. this.label26.Location = new System.Drawing.Point(85, 93);
  1182. this.label26.Name = "label26";
  1183. this.label26.Size = new System.Drawing.Size(172, 24);
  1184. this.label26.TabIndex = 51;
  1185. this.label26.Text = "自定义文件名格式:";
  1186. //
  1187. // txtNormalFileNameFormat
  1188. //
  1189. this.txtNormalFileNameFormat.Location = new System.Drawing.Point(207, 90);
  1190. this.txtNormalFileNameFormat.Name = "txtNormalFileNameFormat";
  1191. this.txtNormalFileNameFormat.Size = new System.Drawing.Size(230, 31);
  1192. this.txtNormalFileNameFormat.TabIndex = 50;
  1193. this.txtNormalFileNameFormat.Enter += new System.EventHandler(this.txtNormalFileNameFormat_Enter);
  1194. this.txtNormalFileNameFormat.Leave += new System.EventHandler(this.txtNormalFileNameFormat_Leave);
  1195. //
  1196. // label28
  1197. //
  1198. this.label28.AutoSize = true;
  1199. this.label28.Location = new System.Drawing.Point(97, 56);
  1200. this.label28.Name = "label28";
  1201. this.label28.Size = new System.Drawing.Size(154, 24);
  1202. this.label28.TabIndex = 48;
  1203. this.label28.Text = "日期列特殊格式:";
  1204. //
  1205. // txtNormalFileSpecialDateColumnFormat
  1206. //
  1207. this.txtNormalFileSpecialDateColumnFormat.Location = new System.Drawing.Point(207, 53);
  1208. this.txtNormalFileSpecialDateColumnFormat.Name = "txtNormalFileSpecialDateColumnFormat";
  1209. this.txtNormalFileSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 31);
  1210. this.txtNormalFileSpecialDateColumnFormat.TabIndex = 49;
  1211. this.txtNormalFileSpecialDateColumnFormat.Enter += new System.EventHandler(this.txtNormalFileSpecialDateColumnFormat_Enter);
  1212. this.txtNormalFileSpecialDateColumnFormat.Leave += new System.EventHandler(this.txtNormalFileSpecialDateColumnFormat_Leave);
  1213. //
  1214. // pnlAll
  1215. //
  1216. this.pnlAll.Controls.Add(this.pnlCenter);
  1217. this.pnlAll.Controls.Add(this.pnlBottom);
  1218. this.pnlAll.Controls.Add(this.pnlTop);
  1219. this.pnlAll.Dock = System.Windows.Forms.DockStyle.Fill;
  1220. this.pnlAll.Location = new System.Drawing.Point(0, 0);
  1221. this.pnlAll.Name = "pnlAll";
  1222. this.pnlAll.Size = new System.Drawing.Size(1182, 543);
  1223. this.pnlAll.TabIndex = 1;
  1224. //
  1225. // tabPostgreSql
  1226. //
  1227. this.tabPostgreSql.Controls.Add(this.lblPostgreSql);
  1228. this.tabPostgreSql.Controls.Add(this.txtPostgreSqlAutoSqlName);
  1229. this.tabPostgreSql.Controls.Add(this.txtPostgreSqlAutoSql);
  1230. this.tabPostgreSql.Controls.Add(this.lblPostgreSqlDateFormat);
  1231. this.tabPostgreSql.Controls.Add(this.txtPostgreSqlSpecialDateColumnFormat);
  1232. this.tabPostgreSql.Location = new System.Drawing.Point(4, 33);
  1233. this.tabPostgreSql.Name = "tabPostgreSql";
  1234. this.tabPostgreSql.Size = new System.Drawing.Size(1174, 454);
  1235. this.tabPostgreSql.TabIndex = 8;
  1236. this.tabPostgreSql.Text = "PostgreSQL";
  1237. this.tabPostgreSql.UseVisualStyleBackColor = true;
  1238. //
  1239. // lblPostgreSql
  1240. //
  1241. this.lblPostgreSql.AutoSize = true;
  1242. this.lblPostgreSql.Location = new System.Drawing.Point(99, 60);
  1243. this.lblPostgreSql.Name = "lblPostgreSql";
  1244. this.lblPostgreSql.Size = new System.Drawing.Size(154, 24);
  1245. this.lblPostgreSql.TabIndex = 86;
  1246. this.lblPostgreSql.Text = "自定义查询语句:";
  1247. //
  1248. // txtPostgreSqlAutoSqlName
  1249. //
  1250. this.txtPostgreSqlAutoSqlName.Location = new System.Drawing.Point(207, 57);
  1251. this.txtPostgreSqlAutoSqlName.Name = "txtPostgreSqlAutoSqlName";
  1252. this.txtPostgreSqlAutoSqlName.Size = new System.Drawing.Size(230, 31);
  1253. this.txtPostgreSqlAutoSqlName.TabIndex = 84;
  1254. this.txtPostgreSqlAutoSqlName.Enter += new System.EventHandler(this.txtPostgreSqlAutoSqlName_Enter);
  1255. this.txtPostgreSqlAutoSqlName.Leave += new System.EventHandler(this.txtPostgreSqlAutoSqlName_Leave);
  1256. //
  1257. // txtPostgreSqlAutoSql
  1258. //
  1259. this.txtPostgreSqlAutoSql.Location = new System.Drawing.Point(207, 89);
  1260. this.txtPostgreSqlAutoSql.Multiline = true;
  1261. this.txtPostgreSqlAutoSql.Name = "txtPostgreSqlAutoSql";
  1262. this.txtPostgreSqlAutoSql.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  1263. this.txtPostgreSqlAutoSql.Size = new System.Drawing.Size(844, 339);
  1264. this.txtPostgreSqlAutoSql.TabIndex = 85;
  1265. this.txtPostgreSqlAutoSql.Enter += new System.EventHandler(this.txtPostgreSqlAutoSql_Enter);
  1266. this.txtPostgreSqlAutoSql.Leave += new System.EventHandler(this.txtPostgreSqlAutoSql_Leave);
  1267. //
  1268. // lblPostgreSqlDateFormat
  1269. //
  1270. this.lblPostgreSqlDateFormat.AutoSize = true;
  1271. this.lblPostgreSqlDateFormat.Location = new System.Drawing.Point(97, 25);
  1272. this.lblPostgreSqlDateFormat.Name = "lblPostgreSqlDateFormat";
  1273. this.lblPostgreSqlDateFormat.Size = new System.Drawing.Size(154, 24);
  1274. this.lblPostgreSqlDateFormat.TabIndex = 80;
  1275. this.lblPostgreSqlDateFormat.Text = "日期列特殊格式:";
  1276. //
  1277. // txtPostgreSqlSpecialDateColumnFormat
  1278. //
  1279. this.txtPostgreSqlSpecialDateColumnFormat.Location = new System.Drawing.Point(207, 22);
  1280. this.txtPostgreSqlSpecialDateColumnFormat.Name = "txtPostgreSqlSpecialDateColumnFormat";
  1281. this.txtPostgreSqlSpecialDateColumnFormat.Size = new System.Drawing.Size(230, 31);
  1282. this.txtPostgreSqlSpecialDateColumnFormat.TabIndex = 81;
  1283. this.txtPostgreSqlSpecialDateColumnFormat.Enter += new System.EventHandler(this.txtPostgreSqlSpecialDateColumnFormat_Enter);
  1284. this.txtPostgreSqlSpecialDateColumnFormat.Leave += new System.EventHandler(this.txtPostgreSqlSpecialDateColumnFormat_Leave);
  1285. //
  1286. // frmSourceSetting
  1287. //
  1288. this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 24F);
  1289. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1290. this.ClientSize = new System.Drawing.Size(1182, 543);
  1291. this.Controls.Add(this.pnlAll);
  1292. this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1293. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  1294. this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  1295. this.MaximizeBox = false;
  1296. this.Name = "frmSourceSetting";
  1297. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  1298. this.Text = "数据来源设置";
  1299. this.Load += new System.EventHandler(this.frmSourceSetting_Load);
  1300. this.Shown += new System.EventHandler(this.frmSourceSetting_Shown);
  1301. this.Resize += new System.EventHandler(this.frmSourceSetting_Resize);
  1302. this.pnlBottom.ResumeLayout(false);
  1303. this.pnlCenter.ResumeLayout(false);
  1304. this.tabcDS.ResumeLayout(false);
  1305. this.tabExcel.ResumeLayout(false);
  1306. this.tabExcel.PerformLayout();
  1307. this.tabFoxPro.ResumeLayout(false);
  1308. this.tabFoxPro.PerformLayout();
  1309. this.tabAccess.ResumeLayout(false);
  1310. this.tabAccess.PerformLayout();
  1311. this.tabSQLite.ResumeLayout(false);
  1312. this.tabSQLite.PerformLayout();
  1313. this.tabSQLServer.ResumeLayout(false);
  1314. this.tabSQLServer.PerformLayout();
  1315. this.tabMySql.ResumeLayout(false);
  1316. this.tabMySql.PerformLayout();
  1317. this.tabOracle.ResumeLayout(false);
  1318. this.tabOracle.PerformLayout();
  1319. this.tabTxt.ResumeLayout(false);
  1320. this.tabTxt.PerformLayout();
  1321. this.tabPostgreSql.ResumeLayout(false);
  1322. this.tabPostgreSql.PerformLayout();
  1323. ((System.ComponentModel.ISupportInitialize)(this.numNormalFileStartIndex)).EndInit();
  1324. this.pnlAll.ResumeLayout(false);
  1325. this.ResumeLayout(false);
  1326. }
  1327. #endregion
  1328. private System.Windows.Forms.Button btnOK;
  1329. private System.Windows.Forms.Panel pnlBottom;
  1330. private System.Windows.Forms.Panel pnlTop;
  1331. private System.Windows.Forms.Panel pnlCenter;
  1332. private System.Windows.Forms.TabControl tabcDS;
  1333. private System.Windows.Forms.TabPage tabExcel;
  1334. private System.Windows.Forms.Label label22;
  1335. private System.Windows.Forms.Label lblExcelRemotePwd;
  1336. private System.Windows.Forms.Label lblExcelRemoteUser;
  1337. private System.Windows.Forms.TextBox txtExcelFileNameFormat;
  1338. private System.Windows.Forms.CheckBox cbxExcelOldVersion;
  1339. private System.Windows.Forms.Label lbExcelDateFormat;
  1340. private System.Windows.Forms.TextBox txtExcelSpecialDateColumnFormat;
  1341. private System.Windows.Forms.TabPage tabFoxPro;
  1342. private System.Windows.Forms.TabPage tabAccess;
  1343. private System.Windows.Forms.TabPage tabSQLite;
  1344. private System.Windows.Forms.TabPage tabSQLServer;
  1345. private System.Windows.Forms.TabPage tabMySql;
  1346. private System.Windows.Forms.TabPage tabOracle;
  1347. private System.Windows.Forms.TabPage tabTxt;
  1348. private System.Windows.Forms.CheckBox cbxExcelReadFolder;
  1349. private System.Windows.Forms.CheckBox cbxExcelReadFile;
  1350. private System.Windows.Forms.CheckBox cbxExcelNewVersion;
  1351. private System.Windows.Forms.CheckBox cbxAccessReadFolder;
  1352. private System.Windows.Forms.CheckBox cbxAccessReadFile;
  1353. private System.Windows.Forms.TextBox txtAccessAutoSql;
  1354. private System.Windows.Forms.TextBox txtAccessAutoSqlName;
  1355. private System.Windows.Forms.Label label11;
  1356. private System.Windows.Forms.CheckBox cbxAccessNewVersion;
  1357. private System.Windows.Forms.Label label15;
  1358. private System.Windows.Forms.Label label16;
  1359. private System.Windows.Forms.Label label21;
  1360. private System.Windows.Forms.TextBox txtAccessFileName;
  1361. private System.Windows.Forms.CheckBox cbxAccessOldVersion;
  1362. private System.Windows.Forms.Label label31;
  1363. private System.Windows.Forms.TextBox txtAccessSpecialDateColumnFormat;
  1364. private System.Windows.Forms.Label label33;
  1365. private System.Windows.Forms.TextBox txtFoxProAutoSqlName;
  1366. private System.Windows.Forms.CheckBox cbxFoxProReadFolder;
  1367. private System.Windows.Forms.TextBox txtFoxProAutoSql;
  1368. private System.Windows.Forms.CheckBox cbxFoxProReadFile;
  1369. private System.Windows.Forms.Label label35;
  1370. private System.Windows.Forms.Label label38;
  1371. private System.Windows.Forms.TextBox txtFoxProFileNameFormat;
  1372. private System.Windows.Forms.Label label39;
  1373. private System.Windows.Forms.TextBox txtFoxProSpecialDateColumnFormat;
  1374. private System.Windows.Forms.TextBox txtFoxProSpecialMethodName;
  1375. private System.Windows.Forms.TextBox txtFoxProSpecialMethod;
  1376. private System.Windows.Forms.Label label27;
  1377. private System.Windows.Forms.TextBox txtExcelAutoSql;
  1378. private System.Windows.Forms.TextBox txtExcelAutoSqlName;
  1379. private System.Windows.Forms.Label lbExcelDynQuery;
  1380. private System.Windows.Forms.Label label5;
  1381. private System.Windows.Forms.TextBox txtSqliteAutoSqlName;
  1382. private System.Windows.Forms.CheckBox cbxSqliteReadFolder;
  1383. private System.Windows.Forms.TextBox txtSqliteAutoSql;
  1384. private System.Windows.Forms.CheckBox cbxSqliteReadFile;
  1385. private System.Windows.Forms.Label label6;
  1386. private System.Windows.Forms.Label label7;
  1387. private System.Windows.Forms.TextBox txtSqliteFileNameFormat;
  1388. private System.Windows.Forms.Label label8;
  1389. private System.Windows.Forms.TextBox txtSqliteSpecialDateColumnFormat;
  1390. private System.Windows.Forms.Label label9;
  1391. private System.Windows.Forms.TextBox txtSqlServerAutoSqlName;
  1392. private System.Windows.Forms.TextBox txtSqlServerAutoSql;
  1393. private System.Windows.Forms.Label label12;
  1394. private System.Windows.Forms.TextBox txtSqlServerConnection;
  1395. private System.Windows.Forms.Label label13;
  1396. private System.Windows.Forms.TextBox txtSqlServerSpecialDateColumnFormat;
  1397. private System.Windows.Forms.Label label14;
  1398. private System.Windows.Forms.TextBox txtMySqlAutoSqlName;
  1399. private System.Windows.Forms.TextBox txtMySqlAutoSql;
  1400. private System.Windows.Forms.Label label18;
  1401. private System.Windows.Forms.TextBox txtMySqlSpecialDateColumnFormat;
  1402. private System.Windows.Forms.Label label4;
  1403. private System.Windows.Forms.TextBox txtOracleAutoSqlName;
  1404. private System.Windows.Forms.TextBox txtOracleAutoSql;
  1405. private System.Windows.Forms.Label label10;
  1406. private System.Windows.Forms.TextBox txtOracleSpecialDateColumnFormat;
  1407. private System.Windows.Forms.Label label20;
  1408. private System.Windows.Forms.Label label19;
  1409. private System.Windows.Forms.Label label17;
  1410. private System.Windows.Forms.TextBox txtNormalFileReadSplitMode;
  1411. private System.Windows.Forms.Label label30;
  1412. private System.Windows.Forms.TextBox txtNormalFileReadDataMode;
  1413. private System.Windows.Forms.Label label29;
  1414. private System.Windows.Forms.TextBox txtNormalFileSuffix;
  1415. private System.Windows.Forms.CheckBox cbxNormalFileReadFolder;
  1416. private System.Windows.Forms.CheckBox cbxNormalFileReadFile;
  1417. private System.Windows.Forms.Label label25;
  1418. private System.Windows.Forms.Label label26;
  1419. private System.Windows.Forms.TextBox txtNormalFileNameFormat;
  1420. private System.Windows.Forms.Label label28;
  1421. private System.Windows.Forms.TextBox txtNormalFileSpecialDateColumnFormat;
  1422. private System.Windows.Forms.Label label2;
  1423. private System.Windows.Forms.TextBox txtAccessSuffix;
  1424. private System.Windows.Forms.Panel pnlAll;
  1425. private System.Windows.Forms.TabPage tabPostgreSql;
  1426. private System.Windows.Forms.Label lblPostgreSql;
  1427. private System.Windows.Forms.TextBox txtPostgreSqlAutoSqlName;
  1428. private System.Windows.Forms.TextBox txtPostgreSqlAutoSql;
  1429. private System.Windows.Forms.Label lblPostgreSqlDateFormat;
  1430. private System.Windows.Forms.TextBox txtPostgreSqlSpecialDateColumnFormat;
  1431. private System.Windows.Forms.NumericUpDown numNormalFileStartIndex;
  1432. private System.Windows.Forms.CheckBox cbxNormalFileCustomDate;
  1433. private System.Windows.Forms.CheckBox cbxNormalFileNoCustomDate;
  1434. }
  1435. }