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

frmSourceSetting.Designer.cs 87KB

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