Main.Designer.cs 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434
  1. /*
  2. * Copyright (c) Contributors, http://opensimulator.org/
  3. * See CONTRIBUTORS.TXT for a full list of copyright holders.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * * Neither the name of the OpenSim Project nor the
  13. * names of its contributors may be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
  20. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. namespace OpenSim.GUI
  28. {
  29. partial class Main
  30. {
  31. /// <summary>
  32. /// Required designer variable.
  33. /// </summary>
  34. private System.ComponentModel.IContainer components = null;
  35. /// <summary>
  36. /// Clean up any resources being used.
  37. /// </summary>
  38. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  39. protected override void Dispose(bool disposing)
  40. {
  41. if (disposing && (components != null))
  42. {
  43. components.Dispose();
  44. }
  45. base.Dispose(disposing);
  46. }
  47. #region Windows Form Designer generated code
  48. /// <summary>
  49. /// Required method for Designer support - do not modify
  50. /// the contents of this method with the code editor.
  51. /// </summary>
  52. private void InitializeComponent()
  53. {
  54. this.components = new System.ComponentModel.Container();
  55. this.menuStrip1 = new System.Windows.Forms.MenuStrip();
  56. this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  57. this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  58. this.timer1 = new System.Windows.Forms.Timer(this.components);
  59. this.clientBox1 = new System.Windows.Forms.TextBox();
  60. this.btnStart = new System.Windows.Forms.Button();
  61. this.btnStop = new System.Windows.Forms.Button();
  62. this.rbGridRegionMode = new System.Windows.Forms.RadioButton();
  63. this.rbStandAloneMode = new System.Windows.Forms.RadioButton();
  64. this.rbGridServer = new System.Windows.Forms.RadioButton();
  65. this.Launch1 = new System.Windows.Forms.Button();
  66. this.gbLog = new System.Windows.Forms.GroupBox();
  67. this.tabLogs = new System.Windows.Forms.TabControl();
  68. this.tabMainLog = new System.Windows.Forms.TabPage();
  69. this.txtMainLog = new System.Windows.Forms.TextBox();
  70. this.tabRegionServer = new System.Windows.Forms.TabPage();
  71. this.txtInputRegionServer = new OpenSim.GUI.InputTextBoxControl();
  72. this.label1 = new System.Windows.Forms.Label();
  73. this.txtOpenSim = new System.Windows.Forms.TextBox();
  74. this.tabUserServer = new System.Windows.Forms.TabPage();
  75. this.txtInputUserServer = new OpenSim.GUI.InputTextBoxControl();
  76. this.label2 = new System.Windows.Forms.Label();
  77. this.txtUserServer = new System.Windows.Forms.TextBox();
  78. this.tabAssetServer = new System.Windows.Forms.TabPage();
  79. this.txtInputAssetServer = new OpenSim.GUI.InputTextBoxControl();
  80. this.label3 = new System.Windows.Forms.Label();
  81. this.txtAssetServer = new System.Windows.Forms.TextBox();
  82. this.tabGridServer = new System.Windows.Forms.TabPage();
  83. this.txtInputGridServer = new OpenSim.GUI.InputTextBoxControl();
  84. this.label4 = new System.Windows.Forms.Label();
  85. this.txtGridServer = new System.Windows.Forms.TextBox();
  86. this.label5 = new System.Windows.Forms.Label();
  87. this.noProbe1 = new System.Windows.Forms.CheckBox();
  88. this.label6 = new System.Windows.Forms.Label();
  89. this.multiple1 = new System.Windows.Forms.CheckBox();
  90. this.label7 = new System.Windows.Forms.Label();
  91. this.noMultiple1 = new System.Windows.Forms.CheckBox();
  92. this.ignorepixeldepth1 = new System.Windows.Forms.CheckBox();
  93. this.nothread1 = new System.Windows.Forms.CheckBox();
  94. this.safe1 = new System.Windows.Forms.CheckBox();
  95. this.noconsole1 = new System.Windows.Forms.CheckBox();
  96. this.log1 = new System.Windows.Forms.CheckBox();
  97. this.helperuri1 = new System.Windows.Forms.CheckBox();
  98. this.autologin1 = new System.Windows.Forms.CheckBox();
  99. this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
  100. this.dialog1 = new System.Windows.Forms.CheckBox();
  101. this.previous1 = new System.Windows.Forms.CheckBox();
  102. this.simple1 = new System.Windows.Forms.CheckBox();
  103. this.noinvlib1 = new System.Windows.Forms.CheckBox();
  104. this.debugst1 = new System.Windows.Forms.CheckBox();
  105. this.spanish1 = new System.Windows.Forms.CheckBox();
  106. this.korean1 = new System.Windows.Forms.CheckBox();
  107. this.local1 = new System.Windows.Forms.CheckBox();
  108. this.purge1 = new System.Windows.Forms.CheckBox();
  109. this.nofmod1 = new System.Windows.Forms.CheckBox();
  110. this.noaudio1 = new System.Windows.Forms.CheckBox();
  111. this.nosound1 = new System.Windows.Forms.CheckBox();
  112. this.url1 = new System.Windows.Forms.CheckBox();
  113. this.port1 = new System.Windows.Forms.CheckBox();
  114. this.simBox1 = new System.Windows.Forms.TextBox();
  115. this.portBox1 = new System.Windows.Forms.TextBox();
  116. this.user1 = new System.Windows.Forms.CheckBox();
  117. this.quitAfter1 = new System.Windows.Forms.CheckBox();
  118. this.techTag1 = new System.Windows.Forms.CheckBox();
  119. this.yield1 = new System.Windows.Forms.CheckBox();
  120. this.logfile1 = new System.Windows.Forms.CheckBox();
  121. this.settings1 = new System.Windows.Forms.CheckBox();
  122. this.outbw1 = new System.Windows.Forms.CheckBox();
  123. this.inbw1 = new System.Windows.Forms.CheckBox();
  124. this.drop1 = new System.Windows.Forms.CheckBox();
  125. this.dropBox1 = new System.Windows.Forms.TextBox();
  126. this.inbwBox1 = new System.Windows.Forms.TextBox();
  127. this.outbwBox1 = new System.Windows.Forms.TextBox();
  128. this.settingsBox1 = new System.Windows.Forms.TextBox();
  129. this.logfileBox1 = new System.Windows.Forms.TextBox();
  130. this.yieldBox1 = new System.Windows.Forms.TextBox();
  131. this.techtagBox1 = new System.Windows.Forms.TextBox();
  132. this.quitafterBox1 = new System.Windows.Forms.TextBox();
  133. this.comboBox1 = new System.Windows.Forms.ComboBox();
  134. this.loginuri1 = new System.Windows.Forms.CheckBox();
  135. this.loginuriBox1 = new System.Windows.Forms.TextBox();
  136. this.set1 = new System.Windows.Forms.CheckBox();
  137. this.setBox1 = new System.Windows.Forms.TextBox();
  138. this.errmask1 = new System.Windows.Forms.CheckBox();
  139. this.skin1 = new System.Windows.Forms.CheckBox();
  140. this.login1 = new System.Windows.Forms.CheckBox();
  141. this.errmaskBox1 = new System.Windows.Forms.TextBox();
  142. this.skinBox1 = new System.Windows.Forms.TextBox();
  143. this.firstBox1 = new System.Windows.Forms.TextBox();
  144. this.lastBox1 = new System.Windows.Forms.TextBox();
  145. this.noutc1 = new System.Windows.Forms.CheckBox();
  146. this.passBox1 = new System.Windows.Forms.TextBox();
  147. this.raw1 = new System.Windows.Forms.CheckBox();
  148. this.rawBox1 = new System.Windows.Forms.TextBox();
  149. this.clear1 = new System.Windows.Forms.Button();
  150. this.nataddress1 = new System.Windows.Forms.TextBox();
  151. this.label8 = new System.Windows.Forms.Label();
  152. this.label9 = new System.Windows.Forms.Label();
  153. this.exeBox1 = new System.Windows.Forms.TextBox();
  154. this.label10 = new System.Windows.Forms.Label();
  155. this.label11 = new System.Windows.Forms.Label();
  156. this.label12 = new System.Windows.Forms.Label();
  157. this.label13 = new System.Windows.Forms.Label();
  158. this.menuStrip1.SuspendLayout();
  159. this.gbLog.SuspendLayout();
  160. this.tabLogs.SuspendLayout();
  161. this.tabMainLog.SuspendLayout();
  162. this.tabRegionServer.SuspendLayout();
  163. this.tabUserServer.SuspendLayout();
  164. this.tabAssetServer.SuspendLayout();
  165. this.tabGridServer.SuspendLayout();
  166. this.SuspendLayout();
  167. //
  168. // menuStrip1
  169. //
  170. this.menuStrip1.AutoSize = false;
  171. this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  172. this.fileToolStripMenuItem});
  173. this.menuStrip1.Location = new System.Drawing.Point(0, 0);
  174. this.menuStrip1.Name = "menuStrip1";
  175. this.menuStrip1.Size = new System.Drawing.Size(900, 20);
  176. this.menuStrip1.TabIndex = 7;
  177. this.menuStrip1.Text = "menuStrip1";
  178. //
  179. // fileToolStripMenuItem
  180. //
  181. this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  182. this.exitToolStripMenuItem});
  183. this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
  184. this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 16);
  185. this.fileToolStripMenuItem.Text = "File";
  186. //
  187. // exitToolStripMenuItem
  188. //
  189. this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
  190. this.exitToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
  191. this.exitToolStripMenuItem.Text = "Exit Cleanly";
  192. this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
  193. //
  194. // timer1
  195. //
  196. this.timer1.Enabled = true;
  197. //
  198. // clientBox1
  199. //
  200. this.clientBox1.Location = new System.Drawing.Point(680, 27);
  201. this.clientBox1.Name = "clientBox1";
  202. this.clientBox1.Size = new System.Drawing.Size(213, 20);
  203. this.clientBox1.TabIndex = 8;
  204. this.clientBox1.Text = "C://Secondlife//";
  205. //
  206. // btnStart
  207. //
  208. this.btnStart.Location = new System.Drawing.Point(7, 366);
  209. this.btnStart.Name = "btnStart";
  210. this.btnStart.Size = new System.Drawing.Size(80, 23);
  211. this.btnStart.TabIndex = 2;
  212. this.btnStart.Text = "Start";
  213. this.btnStart.UseVisualStyleBackColor = true;
  214. this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
  215. //
  216. // btnStop
  217. //
  218. this.btnStop.Location = new System.Drawing.Point(92, 366);
  219. this.btnStop.Name = "btnStop";
  220. this.btnStop.Size = new System.Drawing.Size(80, 23);
  221. this.btnStop.TabIndex = 3;
  222. this.btnStop.Text = "Stop";
  223. this.btnStop.UseVisualStyleBackColor = true;
  224. this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
  225. //
  226. // rbGridRegionMode
  227. //
  228. this.rbGridRegionMode.AutoSize = true;
  229. this.rbGridRegionMode.Location = new System.Drawing.Point(96, 27);
  230. this.rbGridRegionMode.Name = "rbGridRegionMode";
  231. this.rbGridRegionMode.Size = new System.Drawing.Size(76, 17);
  232. this.rbGridRegionMode.TabIndex = 4;
  233. this.rbGridRegionMode.Text = "Grid region";
  234. this.rbGridRegionMode.UseVisualStyleBackColor = true;
  235. this.rbGridRegionMode.CheckedChanged += new System.EventHandler(this.rbGridRegionMode_CheckedChanged);
  236. //
  237. // rbStandAloneMode
  238. //
  239. this.rbStandAloneMode.AutoSize = true;
  240. this.rbStandAloneMode.Checked = true;
  241. this.rbStandAloneMode.Location = new System.Drawing.Point(8, 27);
  242. this.rbStandAloneMode.Name = "rbStandAloneMode";
  243. this.rbStandAloneMode.Size = new System.Drawing.Size(82, 17);
  244. this.rbStandAloneMode.TabIndex = 5;
  245. this.rbStandAloneMode.TabStop = true;
  246. this.rbStandAloneMode.Text = "Stand alone";
  247. this.rbStandAloneMode.UseVisualStyleBackColor = true;
  248. this.rbStandAloneMode.CheckedChanged += new System.EventHandler(this.rbStandAloneMode_CheckedChanged);
  249. //
  250. // rbGridServer
  251. //
  252. this.rbGridServer.AutoSize = true;
  253. this.rbGridServer.Location = new System.Drawing.Point(178, 27);
  254. this.rbGridServer.Name = "rbGridServer";
  255. this.rbGridServer.Size = new System.Drawing.Size(76, 17);
  256. this.rbGridServer.TabIndex = 6;
  257. this.rbGridServer.Text = "Grid server";
  258. this.rbGridServer.UseVisualStyleBackColor = true;
  259. this.rbGridServer.CheckedChanged += new System.EventHandler(this.rbGridServer_CheckedChanged);
  260. //
  261. // Launch1
  262. //
  263. this.Launch1.Location = new System.Drawing.Point(264, 366);
  264. this.Launch1.Name = "Launch1";
  265. this.Launch1.Size = new System.Drawing.Size(80, 23);
  266. this.Launch1.TabIndex = 9;
  267. this.Launch1.Text = "Client Launch";
  268. this.Launch1.UseVisualStyleBackColor = true;
  269. this.Launch1.Click += new System.EventHandler(this.Launch1_Click);
  270. //
  271. // gbLog
  272. //
  273. this.gbLog.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  274. | System.Windows.Forms.AnchorStyles.Left)
  275. | System.Windows.Forms.AnchorStyles.Right)));
  276. this.gbLog.Controls.Add(this.tabLogs);
  277. this.gbLog.Location = new System.Drawing.Point(8, 50);
  278. this.gbLog.Name = "gbLog";
  279. this.gbLog.Size = new System.Drawing.Size(345, 310);
  280. this.gbLog.TabIndex = 1;
  281. this.gbLog.TabStop = false;
  282. this.gbLog.Text = "Logs";
  283. //
  284. // tabLogs
  285. //
  286. this.tabLogs.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  287. | System.Windows.Forms.AnchorStyles.Left)
  288. | System.Windows.Forms.AnchorStyles.Right)));
  289. this.tabLogs.Controls.Add(this.tabMainLog);
  290. this.tabLogs.Controls.Add(this.tabRegionServer);
  291. this.tabLogs.Controls.Add(this.tabUserServer);
  292. this.tabLogs.Controls.Add(this.tabAssetServer);
  293. this.tabLogs.Controls.Add(this.tabGridServer);
  294. this.tabLogs.Location = new System.Drawing.Point(6, 19);
  295. this.tabLogs.Name = "tabLogs";
  296. this.tabLogs.SelectedIndex = 0;
  297. this.tabLogs.Size = new System.Drawing.Size(333, 285);
  298. this.tabLogs.TabIndex = 0;
  299. //
  300. // tabMainLog
  301. //
  302. this.tabMainLog.Controls.Add(this.txtMainLog);
  303. this.tabMainLog.Location = new System.Drawing.Point(4, 22);
  304. this.tabMainLog.Name = "tabMainLog";
  305. this.tabMainLog.Size = new System.Drawing.Size(325, 259);
  306. this.tabMainLog.TabIndex = 4;
  307. this.tabMainLog.Text = "Main log";
  308. this.tabMainLog.UseVisualStyleBackColor = true;
  309. //
  310. // txtMainLog
  311. //
  312. this.txtMainLog.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  313. | System.Windows.Forms.AnchorStyles.Left)
  314. | System.Windows.Forms.AnchorStyles.Right)));
  315. this.txtMainLog.Location = new System.Drawing.Point(0, 0);
  316. this.txtMainLog.Multiline = true;
  317. this.txtMainLog.Name = "txtMainLog";
  318. this.txtMainLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  319. this.txtMainLog.Size = new System.Drawing.Size(325, 259);
  320. this.txtMainLog.TabIndex = 1;
  321. //
  322. // tabRegionServer
  323. //
  324. this.tabRegionServer.Controls.Add(this.txtInputRegionServer);
  325. this.tabRegionServer.Controls.Add(this.label1);
  326. this.tabRegionServer.Controls.Add(this.txtOpenSim);
  327. this.tabRegionServer.Location = new System.Drawing.Point(4, 22);
  328. this.tabRegionServer.Name = "tabRegionServer";
  329. this.tabRegionServer.Padding = new System.Windows.Forms.Padding(3);
  330. this.tabRegionServer.Size = new System.Drawing.Size(325, 259);
  331. this.tabRegionServer.TabIndex = 0;
  332. this.tabRegionServer.Text = "Region server";
  333. this.tabRegionServer.UseVisualStyleBackColor = true;
  334. //
  335. // txtInputRegionServer
  336. //
  337. this.txtInputRegionServer.Location = new System.Drawing.Point(53, 239);
  338. this.txtInputRegionServer.Name = "txtInputRegionServer";
  339. this.txtInputRegionServer.Size = new System.Drawing.Size(272, 20);
  340. this.txtInputRegionServer.TabIndex = 5;
  341. //
  342. // label1
  343. //
  344. this.label1.AutoSize = true;
  345. this.label1.Location = new System.Drawing.Point(0, 242);
  346. this.label1.Name = "label1";
  347. this.label1.Size = new System.Drawing.Size(57, 13);
  348. this.label1.TabIndex = 4;
  349. this.label1.Text = "Command:";
  350. //
  351. // txtOpenSim
  352. //
  353. this.txtOpenSim.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  354. | System.Windows.Forms.AnchorStyles.Left)
  355. | System.Windows.Forms.AnchorStyles.Right)));
  356. this.txtOpenSim.Location = new System.Drawing.Point(0, 0);
  357. this.txtOpenSim.Multiline = true;
  358. this.txtOpenSim.Name = "txtOpenSim";
  359. this.txtOpenSim.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  360. this.txtOpenSim.Size = new System.Drawing.Size(325, 236);
  361. this.txtOpenSim.TabIndex = 0;
  362. //
  363. // tabUserServer
  364. //
  365. this.tabUserServer.Controls.Add(this.txtInputUserServer);
  366. this.tabUserServer.Controls.Add(this.label2);
  367. this.tabUserServer.Controls.Add(this.txtUserServer);
  368. this.tabUserServer.Location = new System.Drawing.Point(4, 22);
  369. this.tabUserServer.Name = "tabUserServer";
  370. this.tabUserServer.Padding = new System.Windows.Forms.Padding(3);
  371. this.tabUserServer.Size = new System.Drawing.Size(325, 259);
  372. this.tabUserServer.TabIndex = 1;
  373. this.tabUserServer.Text = "User server";
  374. this.tabUserServer.UseVisualStyleBackColor = true;
  375. //
  376. // txtInputUserServer
  377. //
  378. this.txtInputUserServer.Location = new System.Drawing.Point(53, 239);
  379. this.txtInputUserServer.Name = "txtInputUserServer";
  380. this.txtInputUserServer.Size = new System.Drawing.Size(272, 20);
  381. this.txtInputUserServer.TabIndex = 7;
  382. //
  383. // label2
  384. //
  385. this.label2.AutoSize = true;
  386. this.label2.Location = new System.Drawing.Point(0, 242);
  387. this.label2.Name = "label2";
  388. this.label2.Size = new System.Drawing.Size(57, 13);
  389. this.label2.TabIndex = 6;
  390. this.label2.Text = "Command:";
  391. //
  392. // txtUserServer
  393. //
  394. this.txtUserServer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  395. | System.Windows.Forms.AnchorStyles.Left)
  396. | System.Windows.Forms.AnchorStyles.Right)));
  397. this.txtUserServer.Location = new System.Drawing.Point(0, 0);
  398. this.txtUserServer.Multiline = true;
  399. this.txtUserServer.Name = "txtUserServer";
  400. this.txtUserServer.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  401. this.txtUserServer.Size = new System.Drawing.Size(325, 236);
  402. this.txtUserServer.TabIndex = 1;
  403. //
  404. // tabAssetServer
  405. //
  406. this.tabAssetServer.Controls.Add(this.txtInputAssetServer);
  407. this.tabAssetServer.Controls.Add(this.label3);
  408. this.tabAssetServer.Controls.Add(this.txtAssetServer);
  409. this.tabAssetServer.Location = new System.Drawing.Point(4, 22);
  410. this.tabAssetServer.Name = "tabAssetServer";
  411. this.tabAssetServer.Size = new System.Drawing.Size(325, 259);
  412. this.tabAssetServer.TabIndex = 2;
  413. this.tabAssetServer.Text = "Asset server";
  414. this.tabAssetServer.UseVisualStyleBackColor = true;
  415. //
  416. // txtInputAssetServer
  417. //
  418. this.txtInputAssetServer.Location = new System.Drawing.Point(53, 239);
  419. this.txtInputAssetServer.Name = "txtInputAssetServer";
  420. this.txtInputAssetServer.Size = new System.Drawing.Size(272, 20);
  421. this.txtInputAssetServer.TabIndex = 7;
  422. //
  423. // label3
  424. //
  425. this.label3.AutoSize = true;
  426. this.label3.Location = new System.Drawing.Point(0, 242);
  427. this.label3.Name = "label3";
  428. this.label3.Size = new System.Drawing.Size(57, 13);
  429. this.label3.TabIndex = 6;
  430. this.label3.Text = "Command:";
  431. //
  432. // txtAssetServer
  433. //
  434. this.txtAssetServer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  435. | System.Windows.Forms.AnchorStyles.Left)
  436. | System.Windows.Forms.AnchorStyles.Right)));
  437. this.txtAssetServer.Location = new System.Drawing.Point(0, 0);
  438. this.txtAssetServer.Multiline = true;
  439. this.txtAssetServer.Name = "txtAssetServer";
  440. this.txtAssetServer.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  441. this.txtAssetServer.Size = new System.Drawing.Size(325, 236);
  442. this.txtAssetServer.TabIndex = 1;
  443. //
  444. // tabGridServer
  445. //
  446. this.tabGridServer.Controls.Add(this.txtInputGridServer);
  447. this.tabGridServer.Controls.Add(this.label4);
  448. this.tabGridServer.Controls.Add(this.txtGridServer);
  449. this.tabGridServer.Location = new System.Drawing.Point(4, 22);
  450. this.tabGridServer.Name = "tabGridServer";
  451. this.tabGridServer.Size = new System.Drawing.Size(325, 259);
  452. this.tabGridServer.TabIndex = 3;
  453. this.tabGridServer.Text = "Grid server";
  454. this.tabGridServer.UseVisualStyleBackColor = true;
  455. //
  456. // txtInputGridServer
  457. //
  458. this.txtInputGridServer.Location = new System.Drawing.Point(53, 239);
  459. this.txtInputGridServer.Name = "txtInputGridServer";
  460. this.txtInputGridServer.Size = new System.Drawing.Size(272, 20);
  461. this.txtInputGridServer.TabIndex = 7;
  462. //
  463. // label4
  464. //
  465. this.label4.AutoSize = true;
  466. this.label4.Location = new System.Drawing.Point(0, 242);
  467. this.label4.Name = "label4";
  468. this.label4.Size = new System.Drawing.Size(57, 13);
  469. this.label4.TabIndex = 6;
  470. this.label4.Text = "Command:";
  471. //
  472. // txtGridServer
  473. //
  474. this.txtGridServer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  475. | System.Windows.Forms.AnchorStyles.Left)
  476. | System.Windows.Forms.AnchorStyles.Right)));
  477. this.txtGridServer.Location = new System.Drawing.Point(0, 0);
  478. this.txtGridServer.Multiline = true;
  479. this.txtGridServer.Name = "txtGridServer";
  480. this.txtGridServer.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  481. this.txtGridServer.Size = new System.Drawing.Size(325, 236);
  482. this.txtGridServer.TabIndex = 1;
  483. //
  484. // label5
  485. //
  486. this.label5.AutoSize = true;
  487. this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  488. this.label5.Location = new System.Drawing.Point(460, 55);
  489. this.label5.Name = "label5";
  490. this.label5.Size = new System.Drawing.Size(205, 20);
  491. this.label5.TabIndex = 11;
  492. this.label5.Text = "Command Line Switches";
  493. //
  494. // noProbe1
  495. //
  496. this.noProbe1.AutoSize = true;
  497. this.noProbe1.Location = new System.Drawing.Point(359, 275);
  498. this.noProbe1.Name = "noProbe1";
  499. this.noProbe1.Size = new System.Drawing.Size(68, 17);
  500. this.noProbe1.TabIndex = 12;
  501. this.noProbe1.Text = "-noprobe";
  502. this.toolTip1.SetToolTip(this.noProbe1, "disable hardware probe");
  503. this.noProbe1.UseVisualStyleBackColor = true;
  504. //
  505. // label6
  506. //
  507. this.label6.AutoSize = true;
  508. this.label6.Location = new System.Drawing.Point(8, 415);
  509. this.label6.Name = "label6";
  510. this.label6.Size = new System.Drawing.Size(0, 13);
  511. this.label6.TabIndex = 14;
  512. this.label6.Click += new System.EventHandler(this.label6_Click);
  513. //
  514. // multiple1
  515. //
  516. this.multiple1.AutoSize = true;
  517. this.multiple1.Location = new System.Drawing.Point(359, 185);
  518. this.multiple1.Name = "multiple1";
  519. this.multiple1.Size = new System.Drawing.Size(64, 17);
  520. this.multiple1.TabIndex = 15;
  521. this.multiple1.Text = "-multiple";
  522. this.toolTip1.SetToolTip(this.multiple1, "allow multiple viewers");
  523. this.multiple1.UseVisualStyleBackColor = true;
  524. //
  525. // label7
  526. //
  527. this.label7.AutoSize = true;
  528. this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  529. this.label7.Location = new System.Drawing.Point(8, 396);
  530. this.label7.Name = "label7";
  531. this.label7.Size = new System.Drawing.Size(338, 13);
  532. this.label7.TabIndex = 16;
  533. this.label7.Text = "Client Command Line String Used and Program Messages :";
  534. //
  535. // noMultiple1
  536. //
  537. this.noMultiple1.AutoSize = true;
  538. this.noMultiple1.Location = new System.Drawing.Point(359, 260);
  539. this.noMultiple1.Name = "noMultiple1";
  540. this.noMultiple1.Size = new System.Drawing.Size(76, 17);
  541. this.noMultiple1.TabIndex = 17;
  542. this.noMultiple1.Text = "-nomultiple";
  543. this.toolTip1.SetToolTip(this.noMultiple1, "block multiple viewers (secondlife.exe instances)");
  544. this.noMultiple1.UseVisualStyleBackColor = true;
  545. //
  546. // ignorepixeldepth1
  547. //
  548. this.ignorepixeldepth1.AutoSize = true;
  549. this.ignorepixeldepth1.Location = new System.Drawing.Point(359, 125);
  550. this.ignorepixeldepth1.Name = "ignorepixeldepth1";
  551. this.ignorepixeldepth1.Size = new System.Drawing.Size(106, 17);
  552. this.ignorepixeldepth1.TabIndex = 18;
  553. this.ignorepixeldepth1.Text = "-ignorepixeldepth";
  554. this.toolTip1.SetToolTip(this.ignorepixeldepth1, "ignore pixel depth settings");
  555. this.ignorepixeldepth1.UseVisualStyleBackColor = true;
  556. //
  557. // nothread1
  558. //
  559. this.nothread1.AutoSize = true;
  560. this.nothread1.Location = new System.Drawing.Point(359, 305);
  561. this.nothread1.Name = "nothread1";
  562. this.nothread1.Size = new System.Drawing.Size(71, 17);
  563. this.nothread1.TabIndex = 19;
  564. this.nothread1.Text = "-nothread";
  565. this.toolTip1.SetToolTip(this.nothread1, "run VFS (Virtual File System) in single thread");
  566. this.nothread1.UseVisualStyleBackColor = true;
  567. //
  568. // safe1
  569. //
  570. this.safe1.AutoSize = true;
  571. this.safe1.Location = new System.Drawing.Point(359, 365);
  572. this.safe1.Name = "safe1";
  573. this.safe1.Size = new System.Drawing.Size(49, 17);
  574. this.safe1.TabIndex = 20;
  575. this.safe1.Text = "-safe";
  576. this.toolTip1.SetToolTip(this.safe1, "reset preferences, run in safe mode");
  577. this.safe1.UseVisualStyleBackColor = true;
  578. //
  579. // noconsole1
  580. //
  581. this.noconsole1.AutoSize = true;
  582. this.noconsole1.Location = new System.Drawing.Point(359, 215);
  583. this.noconsole1.Name = "noconsole1";
  584. this.noconsole1.Size = new System.Drawing.Size(78, 17);
  585. this.noconsole1.TabIndex = 21;
  586. this.noconsole1.Text = "-noconsole";
  587. this.toolTip1.SetToolTip(this.noconsole1, "hide the console if not already hidden");
  588. this.noconsole1.UseVisualStyleBackColor = true;
  589. //
  590. // log1
  591. //
  592. this.log1.AutoSize = true;
  593. this.log1.Location = new System.Drawing.Point(359, 170);
  594. this.log1.Name = "log1";
  595. this.log1.Size = new System.Drawing.Size(43, 17);
  596. this.log1.TabIndex = 22;
  597. this.log1.Text = "-log";
  598. this.toolTip1.SetToolTip(this.log1, "--no info avail--");
  599. this.log1.UseVisualStyleBackColor = true;
  600. //
  601. // helperuri1
  602. //
  603. this.helperuri1.AutoSize = true;
  604. this.helperuri1.Location = new System.Drawing.Point(359, 110);
  605. this.helperuri1.Name = "helperuri1";
  606. this.helperuri1.Size = new System.Drawing.Size(69, 17);
  607. this.helperuri1.TabIndex = 23;
  608. this.helperuri1.Text = "-helperuri";
  609. this.toolTip1.SetToolTip(this.helperuri1, "--no info avail--");
  610. this.helperuri1.UseVisualStyleBackColor = true;
  611. //
  612. // autologin1
  613. //
  614. this.autologin1.AutoSize = true;
  615. this.autologin1.Location = new System.Drawing.Point(359, 65);
  616. this.autologin1.Name = "autologin1";
  617. this.autologin1.Size = new System.Drawing.Size(75, 17);
  618. this.autologin1.TabIndex = 24;
  619. this.autologin1.Text = "--autologin";
  620. this.toolTip1.SetToolTip(this.autologin1, "--no info avail--");
  621. this.autologin1.UseVisualStyleBackColor = true;
  622. //
  623. // dialog1
  624. //
  625. this.dialog1.AutoSize = true;
  626. this.dialog1.Location = new System.Drawing.Point(359, 95);
  627. this.dialog1.Name = "dialog1";
  628. this.dialog1.Size = new System.Drawing.Size(57, 17);
  629. this.dialog1.TabIndex = 25;
  630. this.dialog1.Text = "-dialog";
  631. this.toolTip1.SetToolTip(this.dialog1, "some arcane dialog box that is impossible to raise");
  632. this.dialog1.UseVisualStyleBackColor = true;
  633. //
  634. // previous1
  635. //
  636. this.previous1.AutoSize = true;
  637. this.previous1.Location = new System.Drawing.Point(359, 335);
  638. this.previous1.Name = "previous1";
  639. this.previous1.Size = new System.Drawing.Size(69, 17);
  640. this.previous1.TabIndex = 26;
  641. this.previous1.Text = "-previous";
  642. this.toolTip1.SetToolTip(this.previous1, "--no info avail--");
  643. this.previous1.UseVisualStyleBackColor = true;
  644. //
  645. // simple1
  646. //
  647. this.simple1.AutoSize = true;
  648. this.simple1.Location = new System.Drawing.Point(359, 380);
  649. this.simple1.Name = "simple1";
  650. this.simple1.Size = new System.Drawing.Size(58, 17);
  651. this.simple1.TabIndex = 27;
  652. this.simple1.Text = "-simple";
  653. this.toolTip1.SetToolTip(this.simple1, "--no info avail--");
  654. this.simple1.UseVisualStyleBackColor = true;
  655. //
  656. // noinvlib1
  657. //
  658. this.noinvlib1.AutoSize = true;
  659. this.noinvlib1.Location = new System.Drawing.Point(359, 245);
  660. this.noinvlib1.Name = "noinvlib1";
  661. this.noinvlib1.Size = new System.Drawing.Size(65, 17);
  662. this.noinvlib1.TabIndex = 28;
  663. this.noinvlib1.Text = "-noinvlib";
  664. this.toolTip1.SetToolTip(this.noinvlib1, "do not request inventory library");
  665. this.noinvlib1.UseVisualStyleBackColor = true;
  666. //
  667. // debugst1
  668. //
  669. this.debugst1.AutoSize = true;
  670. this.debugst1.Location = new System.Drawing.Point(359, 80);
  671. this.debugst1.Name = "debugst1";
  672. this.debugst1.Size = new System.Drawing.Size(67, 17);
  673. this.debugst1.TabIndex = 30;
  674. this.debugst1.Text = "-debugst";
  675. this.toolTip1.SetToolTip(this.debugst1, "debug mask");
  676. this.debugst1.UseVisualStyleBackColor = true;
  677. //
  678. // spanish1
  679. //
  680. this.spanish1.AutoSize = true;
  681. this.spanish1.Location = new System.Drawing.Point(359, 395);
  682. this.spanish1.Name = "spanish1";
  683. this.spanish1.Size = new System.Drawing.Size(65, 17);
  684. this.spanish1.TabIndex = 31;
  685. this.spanish1.Text = "-spanish";
  686. this.toolTip1.SetToolTip(this.spanish1, "activate (incomplete) Spanish UI translation");
  687. this.spanish1.UseVisualStyleBackColor = true;
  688. //
  689. // korean1
  690. //
  691. this.korean1.AutoSize = true;
  692. this.korean1.Location = new System.Drawing.Point(359, 140);
  693. this.korean1.Name = "korean1";
  694. this.korean1.Size = new System.Drawing.Size(62, 17);
  695. this.korean1.TabIndex = 32;
  696. this.korean1.Text = "-korean";
  697. this.toolTip1.SetToolTip(this.korean1, "activate (incomplete) Korean UI translation");
  698. this.korean1.UseVisualStyleBackColor = true;
  699. //
  700. // local1
  701. //
  702. this.local1.AutoSize = true;
  703. this.local1.Location = new System.Drawing.Point(359, 155);
  704. this.local1.Name = "local1";
  705. this.local1.Size = new System.Drawing.Size(51, 17);
  706. this.local1.TabIndex = 46;
  707. this.local1.Text = "-local";
  708. this.toolTip1.SetToolTip(this.local1, "run without simulator");
  709. this.local1.UseVisualStyleBackColor = true;
  710. //
  711. // purge1
  712. //
  713. this.purge1.AutoSize = true;
  714. this.purge1.Location = new System.Drawing.Point(359, 350);
  715. this.purge1.Name = "purge1";
  716. this.purge1.Size = new System.Drawing.Size(56, 17);
  717. this.purge1.TabIndex = 56;
  718. this.purge1.Text = "-purge";
  719. this.toolTip1.SetToolTip(this.purge1, "delete files in cache");
  720. this.purge1.UseVisualStyleBackColor = true;
  721. //
  722. // nofmod1
  723. //
  724. this.nofmod1.AutoSize = true;
  725. this.nofmod1.Location = new System.Drawing.Point(359, 230);
  726. this.nofmod1.Name = "nofmod1";
  727. this.nofmod1.Size = new System.Drawing.Size(64, 17);
  728. this.nofmod1.TabIndex = 45;
  729. this.nofmod1.Text = "-nofmod";
  730. this.toolTip1.SetToolTip(this.nofmod1, "FMOD is the API used to distort sound while moving");
  731. this.nofmod1.UseVisualStyleBackColor = true;
  732. //
  733. // noaudio1
  734. //
  735. this.noaudio1.AutoSize = true;
  736. this.noaudio1.Location = new System.Drawing.Point(359, 200);
  737. this.noaudio1.Name = "noaudio1";
  738. this.noaudio1.Size = new System.Drawing.Size(67, 17);
  739. this.noaudio1.TabIndex = 44;
  740. this.noaudio1.Text = "-noaudio";
  741. this.toolTip1.SetToolTip(this.noaudio1, "no audio, different from -nosound?");
  742. this.noaudio1.UseVisualStyleBackColor = true;
  743. //
  744. // nosound1
  745. //
  746. this.nosound1.AutoSize = true;
  747. this.nosound1.Location = new System.Drawing.Point(359, 290);
  748. this.nosound1.Name = "nosound1";
  749. this.nosound1.Size = new System.Drawing.Size(70, 17);
  750. this.nosound1.TabIndex = 55;
  751. this.nosound1.Text = "-nosound";
  752. this.toolTip1.SetToolTip(this.nosound1, "no sound, different from -noaudio?");
  753. this.nosound1.UseVisualStyleBackColor = true;
  754. //
  755. // url1
  756. //
  757. this.url1.AutoSize = true;
  758. this.url1.Location = new System.Drawing.Point(488, 245);
  759. this.url1.Name = "url1";
  760. this.url1.Size = new System.Drawing.Size(40, 17);
  761. this.url1.TabIndex = 43;
  762. this.url1.Text = "-url";
  763. this.toolTip1.SetToolTip(this.url1, "handles secondlife://sim/x/y/z URLs");
  764. this.url1.UseVisualStyleBackColor = true;
  765. //
  766. // port1
  767. //
  768. this.port1.AutoSize = true;
  769. this.port1.Location = new System.Drawing.Point(488, 171);
  770. this.port1.Name = "port1";
  771. this.port1.Size = new System.Drawing.Size(47, 17);
  772. this.port1.TabIndex = 49;
  773. this.port1.Text = "-port";
  774. this.toolTip1.SetToolTip(this.port1, "Set the TCP port for the client; useful to run multiple instances of SL on the sa" +
  775. "me local home network. Values that may work: 13000 and 13001 (Valid numbers are " +
  776. "13000 to 13050)");
  777. this.port1.UseVisualStyleBackColor = true;
  778. //
  779. // simBox1
  780. //
  781. this.simBox1.Location = new System.Drawing.Point(549, 243);
  782. this.simBox1.Name = "simBox1";
  783. this.simBox1.Size = new System.Drawing.Size(344, 20);
  784. this.simBox1.TabIndex = 66;
  785. this.simBox1.Text = "secondlife://lutra/127/128/60";
  786. this.toolTip1.SetToolTip(this.simBox1, "type URL here");
  787. //
  788. // portBox1
  789. //
  790. this.portBox1.Location = new System.Drawing.Point(549, 169);
  791. this.portBox1.Name = "portBox1";
  792. this.portBox1.Size = new System.Drawing.Size(58, 20);
  793. this.portBox1.TabIndex = 67;
  794. this.portBox1.Text = "13000";
  795. this.toolTip1.SetToolTip(this.portBox1, "enter port number here");
  796. //
  797. // user1
  798. //
  799. this.user1.AutoSize = true;
  800. this.user1.Location = new System.Drawing.Point(488, 191);
  801. this.user1.Name = "user1";
  802. this.user1.Size = new System.Drawing.Size(49, 17);
  803. this.user1.TabIndex = 42;
  804. this.user1.Text = "-user";
  805. this.user1.ThreeState = true;
  806. this.toolTip1.SetToolTip(this.user1, "specify user server in dotted quad");
  807. this.user1.UseVisualStyleBackColor = true;
  808. //
  809. // quitAfter1
  810. //
  811. this.quitAfter1.AutoSize = true;
  812. this.quitAfter1.Location = new System.Drawing.Point(680, 65);
  813. this.quitAfter1.Name = "quitAfter1";
  814. this.quitAfter1.Size = new System.Drawing.Size(67, 17);
  815. this.quitAfter1.TabIndex = 41;
  816. this.quitAfter1.Text = "-quitafter";
  817. this.toolTip1.SetToolTip(this.quitAfter1, "SL quits after elapsed time in seconds");
  818. this.quitAfter1.UseVisualStyleBackColor = true;
  819. //
  820. // techTag1
  821. //
  822. this.techTag1.AutoSize = true;
  823. this.techTag1.Location = new System.Drawing.Point(488, 211);
  824. this.techTag1.Name = "techTag1";
  825. this.techTag1.Size = new System.Drawing.Size(65, 17);
  826. this.techTag1.TabIndex = 47;
  827. this.techTag1.Text = "-techtag";
  828. this.toolTip1.SetToolTip(this.techTag1, "unknown (but requires a parameter)");
  829. this.techTag1.UseVisualStyleBackColor = true;
  830. //
  831. // yield1
  832. //
  833. this.yield1.AutoSize = true;
  834. this.yield1.Location = new System.Drawing.Point(488, 91);
  835. this.yield1.Name = "yield1";
  836. this.yield1.Size = new System.Drawing.Size(50, 17);
  837. this.yield1.TabIndex = 48;
  838. this.yield1.Text = "-yield";
  839. this.toolTip1.SetToolTip(this.yield1, "yield some idle time to local host (changed from - cooperative)");
  840. this.yield1.UseVisualStyleBackColor = true;
  841. //
  842. // logfile1
  843. //
  844. this.logfile1.AutoSize = true;
  845. this.logfile1.Location = new System.Drawing.Point(680, 125);
  846. this.logfile1.Name = "logfile1";
  847. this.logfile1.Size = new System.Drawing.Size(56, 17);
  848. this.logfile1.TabIndex = 54;
  849. this.logfile1.Text = "-logfile";
  850. this.toolTip1.SetToolTip(this.logfile1, "change the log filename");
  851. this.logfile1.UseVisualStyleBackColor = true;
  852. //
  853. // settings1
  854. //
  855. this.settings1.AutoSize = true;
  856. this.settings1.Location = new System.Drawing.Point(680, 95);
  857. this.settings1.Name = "settings1";
  858. this.settings1.Size = new System.Drawing.Size(65, 17);
  859. this.settings1.TabIndex = 53;
  860. this.settings1.Text = "-settings";
  861. this.toolTip1.SetToolTip(this.settings1, "specify configuration filename; default is \"settings.ini\"");
  862. this.settings1.UseVisualStyleBackColor = true;
  863. //
  864. // outbw1
  865. //
  866. this.outbw1.AutoSize = true;
  867. this.outbw1.Location = new System.Drawing.Point(488, 111);
  868. this.outbw1.Name = "outbw1";
  869. this.outbw1.Size = new System.Drawing.Size(58, 17);
  870. this.outbw1.TabIndex = 52;
  871. this.outbw1.Text = "-outbw";
  872. this.toolTip1.SetToolTip(this.outbw1, "set outgoing bandwidth");
  873. this.outbw1.UseVisualStyleBackColor = true;
  874. //
  875. // inbw1
  876. //
  877. this.inbw1.AutoSize = true;
  878. this.inbw1.Location = new System.Drawing.Point(488, 131);
  879. this.inbw1.Name = "inbw1";
  880. this.inbw1.Size = new System.Drawing.Size(51, 17);
  881. this.inbw1.TabIndex = 51;
  882. this.inbw1.Text = "-inbw";
  883. this.toolTip1.SetToolTip(this.inbw1, "set incoming bandwidth");
  884. this.inbw1.UseVisualStyleBackColor = true;
  885. //
  886. // drop1
  887. //
  888. this.drop1.AutoSize = true;
  889. this.drop1.Location = new System.Drawing.Point(488, 151);
  890. this.drop1.Name = "drop1";
  891. this.drop1.Size = new System.Drawing.Size(50, 17);
  892. this.drop1.TabIndex = 50;
  893. this.drop1.Text = "-drop";
  894. this.toolTip1.SetToolTip(this.drop1, "drop number% of incoming network packets");
  895. this.drop1.UseVisualStyleBackColor = true;
  896. //
  897. // dropBox1
  898. //
  899. this.dropBox1.Location = new System.Drawing.Point(549, 149);
  900. this.dropBox1.Name = "dropBox1";
  901. this.dropBox1.Size = new System.Drawing.Size(58, 20);
  902. this.dropBox1.TabIndex = 68;
  903. this.dropBox1.Text = "0";
  904. this.toolTip1.SetToolTip(this.dropBox1, "enter percent of packets to drop");
  905. //
  906. // inbwBox1
  907. //
  908. this.inbwBox1.Location = new System.Drawing.Point(549, 129);
  909. this.inbwBox1.Name = "inbwBox1";
  910. this.inbwBox1.Size = new System.Drawing.Size(57, 20);
  911. this.inbwBox1.TabIndex = 69;
  912. this.toolTip1.SetToolTip(this.inbwBox1, "enter incoming cap");
  913. //
  914. // outbwBox1
  915. //
  916. this.outbwBox1.Location = new System.Drawing.Point(549, 109);
  917. this.outbwBox1.Name = "outbwBox1";
  918. this.outbwBox1.Size = new System.Drawing.Size(58, 20);
  919. this.outbwBox1.TabIndex = 70;
  920. this.toolTip1.SetToolTip(this.outbwBox1, "enter outgoing cap");
  921. //
  922. // settingsBox1
  923. //
  924. this.settingsBox1.Location = new System.Drawing.Point(741, 93);
  925. this.settingsBox1.Name = "settingsBox1";
  926. this.settingsBox1.Size = new System.Drawing.Size(152, 20);
  927. this.settingsBox1.TabIndex = 71;
  928. this.settingsBox1.Text = "settings.ini";
  929. this.toolTip1.SetToolTip(this.settingsBox1, "enter settings file name");
  930. //
  931. // logfileBox1
  932. //
  933. this.logfileBox1.Location = new System.Drawing.Point(733, 123);
  934. this.logfileBox1.Name = "logfileBox1";
  935. this.logfileBox1.Size = new System.Drawing.Size(160, 20);
  936. this.logfileBox1.TabIndex = 72;
  937. this.logfileBox1.Text = "mylogfile.txt";
  938. this.toolTip1.SetToolTip(this.logfileBox1, "enter log file name here");
  939. //
  940. // yieldBox1
  941. //
  942. this.yieldBox1.Location = new System.Drawing.Point(549, 89);
  943. this.yieldBox1.Name = "yieldBox1";
  944. this.yieldBox1.Size = new System.Drawing.Size(58, 20);
  945. this.yieldBox1.TabIndex = 73;
  946. this.toolTip1.SetToolTip(this.yieldBox1, "enter time to yield in <ms>");
  947. //
  948. // techtagBox1
  949. //
  950. this.techtagBox1.Location = new System.Drawing.Point(549, 209);
  951. this.techtagBox1.Name = "techtagBox1";
  952. this.techtagBox1.Size = new System.Drawing.Size(58, 20);
  953. this.techtagBox1.TabIndex = 74;
  954. this.toolTip1.SetToolTip(this.techtagBox1, "enter unknown param here");
  955. //
  956. // quitafterBox1
  957. //
  958. this.quitafterBox1.Location = new System.Drawing.Point(745, 63);
  959. this.quitafterBox1.Name = "quitafterBox1";
  960. this.quitafterBox1.Size = new System.Drawing.Size(148, 20);
  961. this.quitafterBox1.TabIndex = 75;
  962. this.toolTip1.SetToolTip(this.quitafterBox1, "enter time in seconds");
  963. //
  964. // comboBox1
  965. //
  966. this.comboBox1.FormattingEnabled = true;
  967. this.comboBox1.Items.AddRange(new object[] {
  968. "agni",
  969. "colo",
  970. "dmz",
  971. "durga",
  972. "siva"});
  973. this.comboBox1.Location = new System.Drawing.Point(549, 189);
  974. this.comboBox1.Name = "comboBox1";
  975. this.comboBox1.Size = new System.Drawing.Size(58, 21);
  976. this.comboBox1.TabIndex = 76;
  977. this.comboBox1.Text = "agni";
  978. this.toolTip1.SetToolTip(this.comboBox1, "select LL user server");
  979. //
  980. // loginuri1
  981. //
  982. this.loginuri1.AutoSize = true;
  983. this.loginuri1.Location = new System.Drawing.Point(488, 275);
  984. this.loginuri1.Name = "loginuri1";
  985. this.loginuri1.Size = new System.Drawing.Size(62, 17);
  986. this.loginuri1.TabIndex = 77;
  987. this.loginuri1.Text = "-loginuri";
  988. this.toolTip1.SetToolTip(this.loginuri1, "login server and CGI script to use");
  989. this.loginuri1.UseVisualStyleBackColor = true;
  990. //
  991. // loginuriBox1
  992. //
  993. this.loginuriBox1.Location = new System.Drawing.Point(549, 273);
  994. this.loginuriBox1.Name = "loginuriBox1";
  995. this.loginuriBox1.Size = new System.Drawing.Size(344, 20);
  996. this.loginuriBox1.TabIndex = 78;
  997. this.loginuriBox1.Text = "localhost:9000";
  998. this.toolTip1.SetToolTip(this.loginuriBox1, "enter login url here");
  999. //
  1000. // set1
  1001. //
  1002. this.set1.AutoSize = true;
  1003. this.set1.Location = new System.Drawing.Point(636, 185);
  1004. this.set1.Name = "set1";
  1005. this.set1.Size = new System.Drawing.Size(43, 17);
  1006. this.set1.TabIndex = 79;
  1007. this.set1.Text = "-set";
  1008. this.toolTip1.SetToolTip(this.set1, "specify value of a particular configuration variable; can be used multiple times " +
  1009. "in a single command-line");
  1010. this.set1.UseVisualStyleBackColor = true;
  1011. //
  1012. // setBox1
  1013. //
  1014. this.setBox1.Location = new System.Drawing.Point(680, 183);
  1015. this.setBox1.Name = "setBox1";
  1016. this.setBox1.Size = new System.Drawing.Size(213, 20);
  1017. this.setBox1.TabIndex = 80;
  1018. this.setBox1.Text = "SystemLanguage en-us";
  1019. this.toolTip1.SetToolTip(this.setBox1, "enter params");
  1020. //
  1021. // errmask1
  1022. //
  1023. this.errmask1.AutoSize = true;
  1024. this.errmask1.Location = new System.Drawing.Point(636, 154);
  1025. this.errmask1.Name = "errmask1";
  1026. this.errmask1.Size = new System.Drawing.Size(66, 17);
  1027. this.errmask1.TabIndex = 81;
  1028. this.errmask1.Text = "-errmask";
  1029. this.toolTip1.SetToolTip(this.errmask1, "32-bit bitmask for error type mask");
  1030. this.errmask1.UseVisualStyleBackColor = true;
  1031. //
  1032. // skin1
  1033. //
  1034. this.skin1.AutoSize = true;
  1035. this.skin1.Location = new System.Drawing.Point(635, 215);
  1036. this.skin1.Name = "skin1";
  1037. this.skin1.Size = new System.Drawing.Size(48, 17);
  1038. this.skin1.TabIndex = 82;
  1039. this.skin1.Text = "-skin";
  1040. this.toolTip1.SetToolTip(this.skin1, "load skins/<directory>/skin.xml as the default UI appearance (incomplete)");
  1041. this.skin1.UseVisualStyleBackColor = true;
  1042. //
  1043. // login1
  1044. //
  1045. this.login1.AutoSize = true;
  1046. this.login1.Location = new System.Drawing.Point(457, 304);
  1047. this.login1.Name = "login1";
  1048. this.login1.Size = new System.Drawing.Size(51, 17);
  1049. this.login1.TabIndex = 83;
  1050. this.login1.Text = "-login";
  1051. this.toolTip1.SetToolTip(this.login1, "log in as a user");
  1052. this.login1.UseVisualStyleBackColor = true;
  1053. //
  1054. // errmaskBox1
  1055. //
  1056. this.errmaskBox1.Location = new System.Drawing.Point(704, 153);
  1057. this.errmaskBox1.Name = "errmaskBox1";
  1058. this.errmaskBox1.Size = new System.Drawing.Size(189, 20);
  1059. this.errmaskBox1.TabIndex = 84;
  1060. this.toolTip1.SetToolTip(this.errmaskBox1, "32-bit bitmask for error type mask");
  1061. //
  1062. // skinBox1
  1063. //
  1064. this.skinBox1.Location = new System.Drawing.Point(679, 213);
  1065. this.skinBox1.Name = "skinBox1";
  1066. this.skinBox1.Size = new System.Drawing.Size(214, 20);
  1067. this.skinBox1.TabIndex = 85;
  1068. this.skinBox1.Text = "C://Secondlife//";
  1069. this.toolTip1.SetToolTip(this.skinBox1, "enter directory where skin.xml is");
  1070. //
  1071. // firstBox1
  1072. //
  1073. this.firstBox1.Location = new System.Drawing.Point(549, 303);
  1074. this.firstBox1.Name = "firstBox1";
  1075. this.firstBox1.Size = new System.Drawing.Size(80, 20);
  1076. this.firstBox1.TabIndex = 86;
  1077. this.firstBox1.Text = "Test";
  1078. this.toolTip1.SetToolTip(this.firstBox1, "firstname");
  1079. //
  1080. // lastBox1
  1081. //
  1082. this.lastBox1.Location = new System.Drawing.Point(668, 303);
  1083. this.lastBox1.Name = "lastBox1";
  1084. this.lastBox1.Size = new System.Drawing.Size(80, 20);
  1085. this.lastBox1.TabIndex = 92;
  1086. this.lastBox1.Text = "User";
  1087. this.toolTip1.SetToolTip(this.lastBox1, "lastname");
  1088. //
  1089. // noutc1
  1090. //
  1091. this.noutc1.AutoSize = true;
  1092. this.noutc1.Location = new System.Drawing.Point(359, 320);
  1093. this.noutc1.Name = "noutc1";
  1094. this.noutc1.Size = new System.Drawing.Size(56, 17);
  1095. this.noutc1.TabIndex = 29;
  1096. this.noutc1.Text = "-noutc";
  1097. this.toolTip1.SetToolTip(this.noutc1, "logs in local time, not UTC");
  1098. this.noutc1.UseVisualStyleBackColor = true;
  1099. //
  1100. // passBox1
  1101. //
  1102. this.passBox1.Location = new System.Drawing.Point(790, 303);
  1103. this.passBox1.Name = "passBox1";
  1104. this.passBox1.Size = new System.Drawing.Size(103, 20);
  1105. this.passBox1.TabIndex = 93;
  1106. this.passBox1.Text = "test";
  1107. this.toolTip1.SetToolTip(this.passBox1, "password");
  1108. //
  1109. // raw1
  1110. //
  1111. this.raw1.AutoSize = true;
  1112. this.raw1.Location = new System.Drawing.Point(457, 336);
  1113. this.raw1.Name = "raw1";
  1114. this.raw1.Size = new System.Drawing.Size(81, 17);
  1115. this.raw1.TabIndex = 94;
  1116. this.raw1.Text = "Raw CMD :";
  1117. this.toolTip1.SetToolTip(this.raw1, "Raw CMD options, may crash everything");
  1118. this.raw1.UseVisualStyleBackColor = true;
  1119. //
  1120. // rawBox1
  1121. //
  1122. this.rawBox1.Location = new System.Drawing.Point(549, 333);
  1123. this.rawBox1.Name = "rawBox1";
  1124. this.rawBox1.Size = new System.Drawing.Size(344, 20);
  1125. this.rawBox1.TabIndex = 95;
  1126. this.toolTip1.SetToolTip(this.rawBox1, "Raw CMD options, may crash everything");
  1127. //
  1128. // clear1
  1129. //
  1130. this.clear1.Location = new System.Drawing.Point(178, 366);
  1131. this.clear1.Name = "clear1";
  1132. this.clear1.Size = new System.Drawing.Size(80, 23);
  1133. this.clear1.TabIndex = 96;
  1134. this.clear1.Text = "Clear";
  1135. this.toolTip1.SetToolTip(this.clear1, "clear all switch boxes");
  1136. this.clear1.UseVisualStyleBackColor = true;
  1137. this.clear1.Click += new System.EventHandler(this.clear1_Click);
  1138. //
  1139. // nataddress1
  1140. //
  1141. this.nataddress1.Location = new System.Drawing.Point(457, 389);
  1142. this.nataddress1.Name = "nataddress1";
  1143. this.nataddress1.Size = new System.Drawing.Size(436, 20);
  1144. this.nataddress1.TabIndex = 58;
  1145. this.nataddress1.Text = "UNUSED ATM";
  1146. this.nataddress1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  1147. //
  1148. // label8
  1149. //
  1150. this.label8.AutoSize = true;
  1151. this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1152. this.label8.Location = new System.Drawing.Point(588, 360);
  1153. this.label8.Name = "label8";
  1154. this.label8.Size = new System.Drawing.Size(175, 20);
  1155. this.label8.TabIndex = 59;
  1156. this.label8.Text = "World/NAT Address :";
  1157. //
  1158. // label9
  1159. //
  1160. this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1161. this.label9.Location = new System.Drawing.Point(633, 27);
  1162. this.label9.Name = "label9";
  1163. this.label9.Size = new System.Drawing.Size(47, 20);
  1164. this.label9.TabIndex = 60;
  1165. this.label9.Text = "Path :";
  1166. this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1167. //
  1168. // exeBox1
  1169. //
  1170. this.exeBox1.Location = new System.Drawing.Point(530, 27);
  1171. this.exeBox1.Name = "exeBox1";
  1172. this.exeBox1.Size = new System.Drawing.Size(100, 20);
  1173. this.exeBox1.TabIndex = 61;
  1174. this.exeBox1.Text = "Secondlife.exe";
  1175. //
  1176. // label10
  1177. //
  1178. this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  1179. this.label10.Location = new System.Drawing.Point(392, 27);
  1180. this.label10.Name = "label10";
  1181. this.label10.Size = new System.Drawing.Size(138, 20);
  1182. this.label10.TabIndex = 62;
  1183. this.label10.Text = "Executable Name :";
  1184. this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  1185. //
  1186. // label11
  1187. //
  1188. this.label11.AutoSize = true;
  1189. this.label11.Location = new System.Drawing.Point(514, 306);
  1190. this.label11.Name = "label11";
  1191. this.label11.Size = new System.Drawing.Size(32, 13);
  1192. this.label11.TabIndex = 89;
  1193. this.label11.Text = "First :";
  1194. //
  1195. // label12
  1196. //
  1197. this.label12.AutoSize = true;
  1198. this.label12.Location = new System.Drawing.Point(632, 306);
  1199. this.label12.Name = "label12";
  1200. this.label12.Size = new System.Drawing.Size(33, 13);
  1201. this.label12.TabIndex = 90;
  1202. this.label12.Text = "Last :";
  1203. //
  1204. // label13
  1205. //
  1206. this.label13.AutoSize = true;
  1207. this.label13.Location = new System.Drawing.Point(751, 306);
  1208. this.label13.Name = "label13";
  1209. this.label13.Size = new System.Drawing.Size(36, 13);
  1210. this.label13.TabIndex = 91;
  1211. this.label13.Text = "Pass :";
  1212. //
  1213. // Main
  1214. //
  1215. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  1216. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1217. this.ClientSize = new System.Drawing.Size(900, 431);
  1218. this.Controls.Add(this.clear1);
  1219. this.Controls.Add(this.rawBox1);
  1220. this.Controls.Add(this.raw1);
  1221. this.Controls.Add(this.passBox1);
  1222. this.Controls.Add(this.lastBox1);
  1223. this.Controls.Add(this.label13);
  1224. this.Controls.Add(this.label12);
  1225. this.Controls.Add(this.label11);
  1226. this.Controls.Add(this.firstBox1);
  1227. this.Controls.Add(this.skinBox1);
  1228. this.Controls.Add(this.errmaskBox1);
  1229. this.Controls.Add(this.login1);
  1230. this.Controls.Add(this.skin1);
  1231. this.Controls.Add(this.errmask1);
  1232. this.Controls.Add(this.setBox1);
  1233. this.Controls.Add(this.set1);
  1234. this.Controls.Add(this.loginuriBox1);
  1235. this.Controls.Add(this.loginuri1);
  1236. this.Controls.Add(this.comboBox1);
  1237. this.Controls.Add(this.quitafterBox1);
  1238. this.Controls.Add(this.techtagBox1);
  1239. this.Controls.Add(this.yieldBox1);
  1240. this.Controls.Add(this.logfileBox1);
  1241. this.Controls.Add(this.settingsBox1);
  1242. this.Controls.Add(this.outbwBox1);
  1243. this.Controls.Add(this.inbwBox1);
  1244. this.Controls.Add(this.dropBox1);
  1245. this.Controls.Add(this.portBox1);
  1246. this.Controls.Add(this.simBox1);
  1247. this.Controls.Add(this.label10);
  1248. this.Controls.Add(this.exeBox1);
  1249. this.Controls.Add(this.label9);
  1250. this.Controls.Add(this.label8);
  1251. this.Controls.Add(this.nataddress1);
  1252. this.Controls.Add(this.purge1);
  1253. this.Controls.Add(this.nosound1);
  1254. this.Controls.Add(this.logfile1);
  1255. this.Controls.Add(this.settings1);
  1256. this.Controls.Add(this.outbw1);
  1257. this.Controls.Add(this.inbw1);
  1258. this.Controls.Add(this.drop1);
  1259. this.Controls.Add(this.port1);
  1260. this.Controls.Add(this.yield1);
  1261. this.Controls.Add(this.techTag1);
  1262. this.Controls.Add(this.local1);
  1263. this.Controls.Add(this.nofmod1);
  1264. this.Controls.Add(this.noaudio1);
  1265. this.Controls.Add(this.url1);
  1266. this.Controls.Add(this.user1);
  1267. this.Controls.Add(this.quitAfter1);
  1268. this.Controls.Add(this.korean1);
  1269. this.Controls.Add(this.spanish1);
  1270. this.Controls.Add(this.debugst1);
  1271. this.Controls.Add(this.noutc1);
  1272. this.Controls.Add(this.noinvlib1);
  1273. this.Controls.Add(this.simple1);
  1274. this.Controls.Add(this.previous1);
  1275. this.Controls.Add(this.dialog1);
  1276. this.Controls.Add(this.autologin1);
  1277. this.Controls.Add(this.helperuri1);
  1278. this.Controls.Add(this.log1);
  1279. this.Controls.Add(this.noconsole1);
  1280. this.Controls.Add(this.safe1);
  1281. this.Controls.Add(this.nothread1);
  1282. this.Controls.Add(this.ignorepixeldepth1);
  1283. this.Controls.Add(this.noMultiple1);
  1284. this.Controls.Add(this.label7);
  1285. this.Controls.Add(this.multiple1);
  1286. this.Controls.Add(this.label6);
  1287. this.Controls.Add(this.noProbe1);
  1288. this.Controls.Add(this.label5);
  1289. this.Controls.Add(this.Launch1);
  1290. this.Controls.Add(this.clientBox1);
  1291. this.Controls.Add(this.rbGridServer);
  1292. this.Controls.Add(this.rbStandAloneMode);
  1293. this.Controls.Add(this.rbGridRegionMode);
  1294. this.Controls.Add(this.btnStop);
  1295. this.Controls.Add(this.btnStart);
  1296. this.Controls.Add(this.gbLog);
  1297. this.Controls.Add(this.menuStrip1);
  1298. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
  1299. this.MainMenuStrip = this.menuStrip1;
  1300. this.MaximizeBox = false;
  1301. this.Name = "Main";
  1302. this.Text = "OpenSim";
  1303. this.toolTip1.SetToolTip(this, "logs in local time, not UTC");
  1304. this.Load += new System.EventHandler(this.Main_Load);
  1305. this.menuStrip1.ResumeLayout(false);
  1306. this.menuStrip1.PerformLayout();
  1307. this.gbLog.ResumeLayout(false);
  1308. this.tabLogs.ResumeLayout(false);
  1309. this.tabMainLog.ResumeLayout(false);
  1310. this.tabMainLog.PerformLayout();
  1311. this.tabRegionServer.ResumeLayout(false);
  1312. this.tabRegionServer.PerformLayout();
  1313. this.tabUserServer.ResumeLayout(false);
  1314. this.tabUserServer.PerformLayout();
  1315. this.tabAssetServer.ResumeLayout(false);
  1316. this.tabAssetServer.PerformLayout();
  1317. this.tabGridServer.ResumeLayout(false);
  1318. this.tabGridServer.PerformLayout();
  1319. this.ResumeLayout(false);
  1320. this.PerformLayout();
  1321. }
  1322. #endregion
  1323. private System.Windows.Forms.MenuStrip menuStrip1;
  1324. private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
  1325. private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
  1326. private System.Windows.Forms.Timer timer1;
  1327. private System.Windows.Forms.TextBox clientBox1;
  1328. private System.Windows.Forms.Button btnStart;
  1329. private System.Windows.Forms.Button btnStop;
  1330. private System.Windows.Forms.RadioButton rbGridRegionMode;
  1331. private System.Windows.Forms.RadioButton rbStandAloneMode;
  1332. private System.Windows.Forms.RadioButton rbGridServer;
  1333. private System.Windows.Forms.Button Launch1;
  1334. private System.Windows.Forms.GroupBox gbLog;
  1335. private System.Windows.Forms.TabControl tabLogs;
  1336. private System.Windows.Forms.TabPage tabMainLog;
  1337. private System.Windows.Forms.TabPage tabRegionServer;
  1338. private System.Windows.Forms.Label label1;
  1339. private System.Windows.Forms.TextBox txtOpenSim;
  1340. private System.Windows.Forms.TabPage tabUserServer;
  1341. private System.Windows.Forms.Label label2;
  1342. private System.Windows.Forms.TextBox txtUserServer;
  1343. private System.Windows.Forms.TabPage tabAssetServer;
  1344. private System.Windows.Forms.Label label3;
  1345. private System.Windows.Forms.TextBox txtAssetServer;
  1346. private System.Windows.Forms.TabPage tabGridServer;
  1347. private System.Windows.Forms.Label label4;
  1348. private System.Windows.Forms.TextBox txtGridServer;
  1349. private System.Windows.Forms.TextBox txtMainLog;
  1350. private System.Windows.Forms.Label label5;
  1351. private System.Windows.Forms.CheckBox noProbe1;
  1352. private System.Windows.Forms.Label label6;
  1353. private System.Windows.Forms.CheckBox multiple1;
  1354. private System.Windows.Forms.Label label7;
  1355. private System.Windows.Forms.CheckBox noMultiple1;
  1356. private System.Windows.Forms.CheckBox ignorepixeldepth1;
  1357. private System.Windows.Forms.CheckBox nothread1;
  1358. private System.Windows.Forms.CheckBox safe1;
  1359. private System.Windows.Forms.CheckBox noconsole1;
  1360. private System.Windows.Forms.CheckBox log1;
  1361. private System.Windows.Forms.CheckBox helperuri1;
  1362. private System.Windows.Forms.CheckBox autologin1;
  1363. private System.Windows.Forms.ToolTip toolTip1;
  1364. private System.Windows.Forms.CheckBox dialog1;
  1365. private System.Windows.Forms.CheckBox previous1;
  1366. private System.Windows.Forms.CheckBox simple1;
  1367. private System.Windows.Forms.CheckBox noinvlib1;
  1368. private System.Windows.Forms.CheckBox noutc1;
  1369. private System.Windows.Forms.CheckBox debugst1;
  1370. private System.Windows.Forms.CheckBox spanish1;
  1371. private System.Windows.Forms.CheckBox korean1;
  1372. private System.Windows.Forms.CheckBox local1;
  1373. private System.Windows.Forms.CheckBox nofmod1;
  1374. private System.Windows.Forms.CheckBox noaudio1;
  1375. private System.Windows.Forms.CheckBox url1;
  1376. private System.Windows.Forms.CheckBox user1;
  1377. private System.Windows.Forms.CheckBox quitAfter1;
  1378. private System.Windows.Forms.CheckBox techTag1;
  1379. private System.Windows.Forms.CheckBox yield1;
  1380. private System.Windows.Forms.CheckBox purge1;
  1381. private System.Windows.Forms.CheckBox nosound1;
  1382. private System.Windows.Forms.CheckBox logfile1;
  1383. private System.Windows.Forms.CheckBox settings1;
  1384. private System.Windows.Forms.CheckBox outbw1;
  1385. private System.Windows.Forms.CheckBox inbw1;
  1386. private System.Windows.Forms.CheckBox drop1;
  1387. private System.Windows.Forms.CheckBox port1;
  1388. private System.Windows.Forms.TextBox nataddress1;
  1389. private System.Windows.Forms.Label label8;
  1390. private System.Windows.Forms.Label label9;
  1391. private System.Windows.Forms.TextBox exeBox1;
  1392. private System.Windows.Forms.Label label10;
  1393. private System.Windows.Forms.TextBox simBox1;
  1394. private System.Windows.Forms.TextBox portBox1;
  1395. private System.Windows.Forms.TextBox dropBox1;
  1396. private System.Windows.Forms.TextBox inbwBox1;
  1397. private System.Windows.Forms.TextBox outbwBox1;
  1398. private System.Windows.Forms.TextBox settingsBox1;
  1399. private System.Windows.Forms.TextBox logfileBox1;
  1400. private System.Windows.Forms.TextBox yieldBox1;
  1401. private System.Windows.Forms.TextBox techtagBox1;
  1402. private System.Windows.Forms.TextBox quitafterBox1;
  1403. private System.Windows.Forms.ComboBox comboBox1;
  1404. private System.Windows.Forms.CheckBox loginuri1;
  1405. private System.Windows.Forms.TextBox loginuriBox1;
  1406. private System.Windows.Forms.CheckBox set1;
  1407. private System.Windows.Forms.TextBox setBox1;
  1408. private System.Windows.Forms.CheckBox errmask1;
  1409. private System.Windows.Forms.CheckBox skin1;
  1410. private System.Windows.Forms.CheckBox login1;
  1411. private System.Windows.Forms.TextBox errmaskBox1;
  1412. private System.Windows.Forms.TextBox skinBox1;
  1413. private System.Windows.Forms.TextBox firstBox1;
  1414. private System.Windows.Forms.Label label11;
  1415. private System.Windows.Forms.Label label12;
  1416. private System.Windows.Forms.Label label13;
  1417. private System.Windows.Forms.TextBox lastBox1;
  1418. private System.Windows.Forms.TextBox passBox1;
  1419. private InputTextBoxControl txtInputUserServer;
  1420. private InputTextBoxControl txtInputAssetServer;
  1421. private InputTextBoxControl txtInputRegionServer;
  1422. private InputTextBoxControl txtInputGridServer;
  1423. private System.Windows.Forms.CheckBox raw1;
  1424. private System.Windows.Forms.TextBox rawBox1;
  1425. private System.Windows.Forms.Button clear1;
  1426. }
  1427. }