annotate FrmHelp.cs @ 0:a70d6ce73a0e default tip

Initial commit under GPLv3
author IBBoard <dev@ibboard.co.uk>
date Sat, 06 Oct 2018 20:07:03 +0100
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
1 // This file is a part of the Pattern Switcher app and is copyright 2006-2018 IBBoard.
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
2 //
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
3 // The file and the library/program it is in are licensed under the GNU GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license.
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
4 using System;
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
5 using System.Drawing;
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
6 using System.Collections;
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
7 using System.ComponentModel;
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
8 using System.Windows.Forms;
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
9
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
10 namespace IBBoard.Relic.PatternSwitcher
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
11 {
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
12 /// <summary>
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
13 /// Summary description for FrmHelp.
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
14 /// </summary>
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
15 public class FrmHelp : System.Windows.Forms.Form
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
16 {
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
17 private System.Windows.Forms.TextBox textBox1;
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
18 /// <summary>
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
19 /// Required designer variable.
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
20 /// </summary>
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
21 private System.ComponentModel.Container components = null;
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
22 private System.Windows.Forms.RichTextBox richTextBox1;
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
23 private string helpText = @"{\rtf1\ansi\ansicpg1252\deff0\deftab709{\fonttbl{\f0\fswiss\fprq2\fcharset0 Arial;}}
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
24 {\*\generator Msftedit 5.41.15.1507;}\viewkind4\uc1\pard\lang1033\f0\fs20 Dawn of War Pattern Switcher\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
25 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
26 \ul Using Pattern Switcher\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
27 \ulnone\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
28 Once the program is running, select a tab for a race, select a pattern for that race and click 'Import'.\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
29 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
30 If you have several different patterns that you want to run at the same time for one race (e.g. a modified default Space Marine plus a modified Marine Captain with special cloak) then click instead 'Import and Merge'.\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
31 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
32 If you want to revert back to the original patterns for a race, click 'Remove Imported' with the race's tab selected. Please note that this will remove _all_ .WTP\lang2057 and .RSH\lang1033 files in that race's folder, so be caseful when using \lang2057 SGA extractors \lang1033 to extract and work on your own \lang2057 texture\lang1033 files!\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
33 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
34 To save the current combination for the selected race, click 'Save loaded patterns' and choose a file name (with or without the extension).\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
35 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
36 To load a previously saved combination of patterns, click 'File'>'Load Patterns' and select the .dwp file. Note: you must still have the .wtp files in the folders they were in, otherwise the load will fail.\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
37 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
38 To refresh the list of existing patterns (if you have just downloaded a new \lang2057 texture set\lang1033 and added a new folder) click 'File'>'Refresh List'.\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
39 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
40 To start a game with the currently installed patter\lang2057 n\lang1033 s, click the \lang2057 appropriate game's button in the 'Launch' area.\lang1033\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
41 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
42 To edit your configuration (so that you can change game or pattern storage directories) click '\lang2057 Edit\lang1033 '>'Configuration'. Deleting or editing folder mappings without knowing what you're doing can cause the Pattern Switcher to fail to be able to load textures for that race.\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
43 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
44 \lang2057\ul Hints\ulnone\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
45 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
46 * If you have Dawn of War and Dark Crusade or Soulstorm installed then use the 'Save As' and 'Load' buttons to load multiple profiles. You can also create specific shortcuts with '--pref /path/to/preferences/file' to load a specific set of preferences. \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
47 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
48 * Any combination of Dawn of War, Dark Crusade and Soulstorm can share a common patterns path (generally '[game path]\\Patterns' by default) so that you don't have to duplicate patterns to import them in to both games then set the Dawn of War and Dark Crusade pattern paths to the same folder in the Configuration editor. Each game will keep its own list of loaded patterns. \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
49 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
50 Note: If you do share the path between multiple games, the Pattern Switcher will load the patterns into whichever game folder is specified. It will not stop you loading, for example, Tau/Necron textures into the original Dawn of War.\lang1033\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
51 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
52 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
53 \ul Troubleshooting\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
54 \ulnone\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
55 Known errors:\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
56 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
57 'file already exists' message when saving, even though a file can't be seen - this is a known error, and is a limitation of .Net. The saving dialog only shows .dwp files, but it doesn't stop you adding an extension of another type (e.g. .txt). A .dwp extension is then forcefully added if it doesn't exists, so the 'phantom file' will not be overwritten as the dialog warned.\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
58 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
59 \lang2057 'The application failed to initialize properly (0xc0000135). Click OK to termintate the application' - This error only occurs if you do not have the .Net Framework (v1.1) installed on your computer. Please go to http://msdn.microsoft.com/netframework/downloads/framework1_1/ for instructions on how to download and install the framework.\lang1033\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
60 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
61 If you have any problems, please email me at dowtools@ibboard.co.uk with as much information as you can about the error and what you were doing, and I will look into it.\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
62 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
63 Please note that you need a .Net compatable framework to run this application. Later builds may be created that include the required framework code within the build, but it requires a special type of compiler that I do not have access to.\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
64 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
65 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
66 \ul Distribution\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
67 \ulnone\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
68 Feel free to use this utility with your Dawn of War installation - thats what it is there for!\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
69 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
70 Don't redistribute this file in any way - either in part or in whole. Only IBBoard, Hive World Terra (www.hiveworldterra.co.uk) and Skins@HWT (skins.hiveworldterra.co.uk) have that right. The author retains the right to add other sites to the list of allowed hosts, and any new 'official' hosts will be listed on Skins@HWT.\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
71 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
72 If you feel that the tool is good enough, please feel free to link to the site (not directly to the download) and email me about your link.\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
73 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
74 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
75 \ul Legal\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
76 \ulnone\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
77 I don't have a copy of a legal disclaimed available to copy at the moment, but all of the usual applies. In summary (for all those who haven't read a software disclaimer before):\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
78 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
79 You're using this program of your own free will, it may not do what you expect, it might not work at all, it might break your Dawn of War install and none of it is my fault.\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
80 \par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
81 The application shouldn't really break anything (it's too simple) but legal disclaimers are legal disclaimers!\par
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
82 }";
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
83 public FrmHelp()
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
84 {
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
85 //
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
86 // Required for Windows Form Designer support
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
87 //
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
88 InitializeComponent();
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
89
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
90 richTextBox1.Rtf = helpText;
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
91 }
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
92
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
93 /// <summary>
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
94 /// Clean up any resources being used.
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
95 /// </summary>
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
96 protected override void Dispose( bool disposing )
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
97 {
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
98 if( disposing )
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
99 {
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
100 if(components != null)
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
101 {
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
102 components.Dispose();
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
103 }
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
104 }
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
105 base.Dispose( disposing );
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
106 }
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
107
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
108 #region Windows Form Designer generated code
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
109 /// <summary>
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
110 /// Required method for Designer support - do not modify
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
111 /// the contents of this method with the code editor.
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
112 /// </summary>
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
113 private void InitializeComponent()
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
114 {
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
115 System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(FrmHelp));
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
116 this.textBox1 = new System.Windows.Forms.TextBox();
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
117 this.richTextBox1 = new System.Windows.Forms.RichTextBox();
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
118 this.SuspendLayout();
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
119 //
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
120 // textBox1
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
121 //
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
122 this.textBox1.BackColor = System.Drawing.SystemColors.Control;
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
123 this.textBox1.Location = new System.Drawing.Point(0, 0);
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
124 this.textBox1.Multiline = true;
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
125 this.textBox1.Name = "textBox1";
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
126 this.textBox1.Size = new System.Drawing.Size(272, 256);
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
127 this.textBox1.TabIndex = 0;
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
128 this.textBox1.Text = "";
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
129 //
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
130 // richTextBox1
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
131 //
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
132 this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
133 | System.Windows.Forms.AnchorStyles.Left)
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
134 | System.Windows.Forms.AnchorStyles.Right)));
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
135 this.richTextBox1.Location = new System.Drawing.Point(0, 0);
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
136 this.richTextBox1.Name = "richTextBox1";
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
137 this.richTextBox1.ReadOnly = true;
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
138 this.richTextBox1.Size = new System.Drawing.Size(446, 272);
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
139 this.richTextBox1.TabIndex = 1;
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
140 this.richTextBox1.Text = "";
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
141 //
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
142 // FrmHelp
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
143 //
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
144 this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
145 this.ClientSize = new System.Drawing.Size(442, 270);
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
146 this.Controls.Add(this.richTextBox1);
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
147 this.Controls.Add(this.textBox1);
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
148 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
149 this.Name = "FrmHelp";
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
150 this.ShowInTaskbar = false;
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
151 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
152 this.Text = "Help";
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
153 this.ResumeLayout(false);
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
154
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
155 }
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
156 #endregion
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
157 }
a70d6ce73a0e Initial commit under GPLv3
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
158 }