-
Notifications
You must be signed in to change notification settings - Fork 0
/
frmMain.Designer.vb
584 lines (583 loc) · 27.3 KB
/
frmMain.Designer.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> Partial Class frmMain
#Region "Windows Form Designer generated code "
<System.Diagnostics.DebuggerNonUserCode()> Public Sub New()
MyBase.New()
'This call is required by the Windows Form Designer.
InitializeComponent()
End Sub
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> Protected Overloads Overrides Sub Dispose(ByVal Disposing As Boolean)
If Disposing Then
If Not components Is Nothing Then
components.Dispose()
End If
End If
MyBase.Dispose(Disposing)
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
Public ToolTip1 As System.Windows.Forms.ToolTip
Public WithEvents txtFind As System.Windows.Forms.TextBox
Public WithEvents txtReplace As System.Windows.Forms.TextBox
Public WithEvents cmdFind As System.Windows.Forms.Button
Public WithEvents cmdReplace As System.Windows.Forms.Button
Public WithEvents fraFind As System.Windows.Forms.Panel
Public WithEvents txtMain As System.Windows.Forms.RichTextBox
Public cdlgOpen As System.Windows.Forms.OpenFileDialog
Public cdlgSave As System.Windows.Forms.SaveFileDialog
Public cdlgImageOpen As System.Windows.Forms.OpenFileDialog
Public WithEvents mnuTop As System.Windows.Forms.ToolStrip
Public WithEvents mnuOpenProject As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuSaveProject As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuNewProject As System.Windows.Forms.ToolStripMenuItem
Public WithEvents sep1 As System.Windows.Forms.ToolStripSeparator
Public WithEvents mnuNewSection As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuSaveFile As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuRevert As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuAutoSave As System.Windows.Forms.ToolStripMenuItem
Public WithEvents sep2 As System.Windows.Forms.ToolStripSeparator
Public WithEvents mnuConvert As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuRecentSeparator As System.Windows.Forms.ToolStripSeparator
Public WithEvents sep3 As System.Windows.Forms.ToolStripSeparator
Public WithEvents mnuExit As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuFile As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuCut As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuCopy As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuPaste As System.Windows.Forms.ToolStripMenuItem
Public WithEvents sep5 As System.Windows.Forms.ToolStripSeparator
Public WithEvents mnuFindSelection As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuFind As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuEdit As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuUnderline As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuBold As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuItalic As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuLink As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuLinkSection As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuImage As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuIndexword As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuKeyword As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuOL As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuUL As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuPRE As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuFigure As System.Windows.Forms.ToolStripMenuItem
Public WithEvents sep4 As System.Windows.Forms.ToolStripSeparator
Public WithEvents mnuAutoParagraph As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuTags As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuFormatting As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuFormatWhileTyping As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuOptions As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuTextImage As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuView As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuHelpContents As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuHelpAbout As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuHelpWebsite As System.Windows.Forms.ToolStripMenuItem
Public WithEvents mnuTopHelp As System.Windows.Forms.ToolStripMenuItem
Public WithEvents MainMenu1 As System.Windows.Forms.MenuStrip
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmMain))
Me.ToolTip1 = New System.Windows.Forms.ToolTip(Me.components)
Me.fraFind = New System.Windows.Forms.Panel()
Me.txtFind = New System.Windows.Forms.TextBox()
Me.txtReplace = New System.Windows.Forms.TextBox()
Me.cmdFind = New System.Windows.Forms.Button()
Me.cmdReplace = New System.Windows.Forms.Button()
Me.txtMain = New System.Windows.Forms.RichTextBox()
Me.cdlgOpen = New System.Windows.Forms.OpenFileDialog()
Me.cdlgSave = New System.Windows.Forms.SaveFileDialog()
Me.cdlgImageOpen = New System.Windows.Forms.OpenFileDialog()
Me.mnuTop = New System.Windows.Forms.ToolStrip()
Me.mnuFile = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuOpenProject = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuSaveProject = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuNewProject = New System.Windows.Forms.ToolStripMenuItem()
Me.sep1 = New System.Windows.Forms.ToolStripSeparator()
Me.mnuNewSection = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuSaveFile = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuRevert = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuAutoSave = New System.Windows.Forms.ToolStripMenuItem()
Me.sep2 = New System.Windows.Forms.ToolStripSeparator()
Me.mnuConvert = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuRecentSeparator = New System.Windows.Forms.ToolStripSeparator()
Me.sep3 = New System.Windows.Forms.ToolStripSeparator()
Me.mnuExit = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuEdit = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuCut = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuCopy = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuPaste = New System.Windows.Forms.ToolStripMenuItem()
Me.sep5 = New System.Windows.Forms.ToolStripSeparator()
Me.mnuFindSelection = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuFind = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuTags = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuUnderline = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuBold = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuItalic = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuLink = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuLinkSection = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuImage = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuIndexword = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuKeyword = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuOL = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuUL = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuPRE = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuFigure = New System.Windows.Forms.ToolStripMenuItem()
Me.sep4 = New System.Windows.Forms.ToolStripSeparator()
Me.mnuAutoParagraph = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuView = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuFormatting = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuFormatWhileTyping = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuOptions = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuTextImage = New System.Windows.Forms.ToolStripMenuItem()
Me.MainMenu1 = New System.Windows.Forms.MenuStrip()
Me.mnuTopHelp = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuHelpContents = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuHelpAbout = New System.Windows.Forms.ToolStripMenuItem()
Me.mnuHelpWebsite = New System.Windows.Forms.ToolStripMenuItem()
Me.tree1 = New System.Windows.Forms.TreeView()
Me.SplitContainer1 = New System.Windows.Forms.SplitContainer()
Me.fraFind.SuspendLayout()
Me.MainMenu1.SuspendLayout()
Me.SplitContainer1.Panel1.SuspendLayout()
Me.SplitContainer1.Panel2.SuspendLayout()
Me.SplitContainer1.SuspendLayout()
Me.SuspendLayout()
'
'fraFind
'
Me.fraFind.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.fraFind.BackColor = System.Drawing.Color.Transparent
Me.fraFind.Controls.Add(Me.txtFind)
Me.fraFind.Controls.Add(Me.txtReplace)
Me.fraFind.Controls.Add(Me.cmdFind)
Me.fraFind.Controls.Add(Me.cmdReplace)
Me.fraFind.Cursor = System.Windows.Forms.Cursors.Default
Me.fraFind.Font = New System.Drawing.Font("Arial", 8.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.fraFind.ForeColor = System.Drawing.SystemColors.ControlText
Me.fraFind.Location = New System.Drawing.Point(348, 0)
Me.fraFind.Name = "fraFind"
Me.fraFind.RightToLeft = System.Windows.Forms.RightToLeft.No
Me.fraFind.Size = New System.Drawing.Size(391, 27)
Me.fraFind.TabIndex = 3
Me.fraFind.Text = "Frame1"
'
'txtFind
'
Me.txtFind.AcceptsReturn = True
Me.txtFind.BackColor = System.Drawing.SystemColors.Window
Me.txtFind.Cursor = System.Windows.Forms.Cursors.IBeam
Me.txtFind.Font = New System.Drawing.Font("Arial", 8.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.txtFind.ForeColor = System.Drawing.SystemColors.WindowText
Me.txtFind.Location = New System.Drawing.Point(67, 3)
Me.txtFind.MaxLength = 0
Me.txtFind.Name = "txtFind"
Me.txtFind.RightToLeft = System.Windows.Forms.RightToLeft.No
Me.txtFind.Size = New System.Drawing.Size(111, 20)
Me.txtFind.TabIndex = 7
'
'txtReplace
'
Me.txtReplace.AcceptsReturn = True
Me.txtReplace.BackColor = System.Drawing.SystemColors.Window
Me.txtReplace.Cursor = System.Windows.Forms.Cursors.IBeam
Me.txtReplace.Font = New System.Drawing.Font("Arial", 8.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.txtReplace.ForeColor = System.Drawing.SystemColors.WindowText
Me.txtReplace.Location = New System.Drawing.Point(271, 3)
Me.txtReplace.MaxLength = 0
Me.txtReplace.Name = "txtReplace"
Me.txtReplace.RightToLeft = System.Windows.Forms.RightToLeft.No
Me.txtReplace.Size = New System.Drawing.Size(111, 20)
Me.txtReplace.TabIndex = 6
'
'cmdFind
'
Me.cmdFind.BackColor = System.Drawing.SystemColors.Control
Me.cmdFind.Cursor = System.Windows.Forms.Cursors.Default
Me.cmdFind.Font = New System.Drawing.Font("Arial", 8.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.cmdFind.ForeColor = System.Drawing.SystemColors.ControlText
Me.cmdFind.Location = New System.Drawing.Point(0, 3)
Me.cmdFind.Name = "cmdFind"
Me.cmdFind.RightToLeft = System.Windows.Forms.RightToLeft.No
Me.cmdFind.Size = New System.Drawing.Size(61, 21)
Me.cmdFind.TabIndex = 5
Me.cmdFind.Text = "Find:"
Me.cmdFind.UseVisualStyleBackColor = False
'
'cmdReplace
'
Me.cmdReplace.BackColor = System.Drawing.SystemColors.Control
Me.cmdReplace.Cursor = System.Windows.Forms.Cursors.Default
Me.cmdReplace.Font = New System.Drawing.Font("Arial", 8.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.cmdReplace.ForeColor = System.Drawing.SystemColors.ControlText
Me.cmdReplace.Location = New System.Drawing.Point(184, 3)
Me.cmdReplace.Name = "cmdReplace"
Me.cmdReplace.RightToLeft = System.Windows.Forms.RightToLeft.No
Me.cmdReplace.Size = New System.Drawing.Size(81, 21)
Me.cmdReplace.TabIndex = 4
Me.cmdReplace.Text = "Replace:"
Me.cmdReplace.UseVisualStyleBackColor = False
'
'txtMain
'
Me.txtMain.Dock = System.Windows.Forms.DockStyle.Fill
Me.txtMain.Font = New System.Drawing.Font("Courier New", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.txtMain.HideSelection = False
Me.txtMain.Location = New System.Drawing.Point(0, 0)
Me.txtMain.Name = "txtMain"
Me.txtMain.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical
Me.txtMain.Size = New System.Drawing.Size(552, 451)
Me.txtMain.TabIndex = 2
Me.txtMain.Text = "txtMain"
'
'mnuTop
'
Me.mnuTop.Location = New System.Drawing.Point(0, 0)
Me.mnuTop.Name = "mnuTop"
Me.mnuTop.Size = New System.Drawing.Size(100, 25)
Me.mnuTop.TabIndex = 0
'
'mnuFile
'
Me.mnuFile.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.mnuOpenProject, Me.mnuSaveProject, Me.mnuNewProject, Me.sep1, Me.mnuNewSection, Me.mnuSaveFile, Me.mnuRevert, Me.mnuAutoSave, Me.sep2, Me.mnuConvert, Me.mnuRecentSeparator, Me.sep3, Me.mnuExit})
Me.mnuFile.Name = "mnuFile"
Me.mnuFile.Size = New System.Drawing.Size(35, 20)
Me.mnuFile.Text = "&File"
'
'mnuOpenProject
'
Me.mnuOpenProject.Name = "mnuOpenProject"
Me.mnuOpenProject.Size = New System.Drawing.Size(153, 22)
Me.mnuOpenProject.Text = "&Open Project"
'
'mnuSaveProject
'
Me.mnuSaveProject.Name = "mnuSaveProject"
Me.mnuSaveProject.Size = New System.Drawing.Size(153, 22)
Me.mnuSaveProject.Text = "Save Project As"
'
'mnuNewProject
'
Me.mnuNewProject.Name = "mnuNewProject"
Me.mnuNewProject.Size = New System.Drawing.Size(153, 22)
Me.mnuNewProject.Text = "New Project"
'
'sep1
'
Me.sep1.Name = "sep1"
Me.sep1.Size = New System.Drawing.Size(150, 6)
'
'mnuNewSection
'
Me.mnuNewSection.Name = "mnuNewSection"
Me.mnuNewSection.Size = New System.Drawing.Size(153, 22)
Me.mnuNewSection.Text = "&New Section"
'
'mnuSaveFile
'
Me.mnuSaveFile.Enabled = False
Me.mnuSaveFile.Name = "mnuSaveFile"
Me.mnuSaveFile.Size = New System.Drawing.Size(153, 22)
Me.mnuSaveFile.Text = "&Save Section"
'
'mnuRevert
'
Me.mnuRevert.Name = "mnuRevert"
Me.mnuRevert.Size = New System.Drawing.Size(153, 22)
Me.mnuRevert.Text = "&Revert to Saved"
'
'mnuAutoSave
'
Me.mnuAutoSave.Name = "mnuAutoSave"
Me.mnuAutoSave.Size = New System.Drawing.Size(153, 22)
Me.mnuAutoSave.Text = "&Auto-Save"
'
'sep2
'
Me.sep2.Name = "sep2"
Me.sep2.Size = New System.Drawing.Size(150, 6)
'
'mnuConvert
'
Me.mnuConvert.Name = "mnuConvert"
Me.mnuConvert.Size = New System.Drawing.Size(153, 22)
Me.mnuConvert.Text = "&Convert"
'
'mnuRecentSeparator
'
Me.mnuRecentSeparator.Name = "mnuRecentSeparator"
Me.mnuRecentSeparator.Size = New System.Drawing.Size(150, 6)
Me.mnuRecentSeparator.Visible = False
'
'sep3
'
Me.sep3.Name = "sep3"
Me.sep3.Size = New System.Drawing.Size(150, 6)
'
'mnuExit
'
Me.mnuExit.Name = "mnuExit"
Me.mnuExit.Size = New System.Drawing.Size(153, 22)
Me.mnuExit.Text = "E&xit"
'
'mnuEdit
'
Me.mnuEdit.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.mnuCut, Me.mnuCopy, Me.mnuPaste, Me.sep5, Me.mnuFindSelection, Me.mnuFind})
Me.mnuEdit.Name = "mnuEdit"
Me.mnuEdit.Size = New System.Drawing.Size(37, 20)
Me.mnuEdit.Text = "&Edit"
'
'mnuCut
'
Me.mnuCut.Name = "mnuCut"
Me.mnuCut.Size = New System.Drawing.Size(178, 22)
Me.mnuCut.Text = "Cut"
'
'mnuCopy
'
Me.mnuCopy.Name = "mnuCopy"
Me.mnuCopy.Size = New System.Drawing.Size(178, 22)
Me.mnuCopy.Text = "Copy"
'
'mnuPaste
'
Me.mnuPaste.Name = "mnuPaste"
Me.mnuPaste.Size = New System.Drawing.Size(178, 22)
Me.mnuPaste.Text = "Paste"
'
'sep5
'
Me.sep5.Name = "sep5"
Me.sep5.Size = New System.Drawing.Size(175, 6)
'
'mnuFindSelection
'
Me.mnuFindSelection.Name = "mnuFindSelection"
Me.mnuFindSelection.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.F), System.Windows.Forms.Keys)
Me.mnuFindSelection.Size = New System.Drawing.Size(178, 22)
Me.mnuFindSelection.Text = "Find Selection"
'
'mnuFind
'
Me.mnuFind.Name = "mnuFind"
Me.mnuFind.ShortcutKeys = System.Windows.Forms.Keys.F3
Me.mnuFind.Size = New System.Drawing.Size(178, 22)
Me.mnuFind.Text = "Find"
'
'mnuTags
'
Me.mnuTags.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.mnuUnderline, Me.mnuBold, Me.mnuItalic, Me.mnuLink, Me.mnuLinkSection, Me.mnuImage, Me.mnuIndexword, Me.mnuKeyword, Me.mnuOL, Me.mnuUL, Me.mnuPRE, Me.mnuFigure, Me.sep4, Me.mnuAutoParagraph})
Me.mnuTags.Name = "mnuTags"
Me.mnuTags.Size = New System.Drawing.Size(42, 20)
Me.mnuTags.Text = "&Tags"
'
'mnuUnderline
'
Me.mnuUnderline.Name = "mnuUnderline"
Me.mnuUnderline.Size = New System.Drawing.Size(259, 22)
Me.mnuUnderline.Text = "&Underline <u>...</u>"
'
'mnuBold
'
Me.mnuBold.Name = "mnuBold"
Me.mnuBold.Size = New System.Drawing.Size(259, 22)
Me.mnuBold.Text = "&Bold <b>...</b>"
'
'mnuItalic
'
Me.mnuItalic.Name = "mnuItalic"
Me.mnuItalic.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.I), System.Windows.Forms.Keys)
Me.mnuItalic.Size = New System.Drawing.Size(259, 22)
Me.mnuItalic.Text = "&Italic <i>...</i>"
'
'mnuLink
'
Me.mnuLink.Name = "mnuLink"
Me.mnuLink.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.L), System.Windows.Forms.Keys)
Me.mnuLink.Size = New System.Drawing.Size(259, 22)
Me.mnuLink.Text = "&Link <a href=""..."">...</a>"
'
'mnuLinkSection
'
Me.mnuLinkSection.Name = "mnuLinkSection"
Me.mnuLinkSection.Size = New System.Drawing.Size(259, 22)
Me.mnuLinkSection.Text = "Link &Section"
'
'mnuImage
'
Me.mnuImage.Name = "mnuImage"
Me.mnuImage.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.M), System.Windows.Forms.Keys)
Me.mnuImage.Size = New System.Drawing.Size(259, 22)
Me.mnuImage.Text = "I&mage <img src=""..."">"
'
'mnuIndexword
'
Me.mnuIndexword.Name = "mnuIndexword"
Me.mnuIndexword.Size = New System.Drawing.Size(259, 22)
Me.mnuIndexword.Text = "Inde&x word <indexword=...>"
'
'mnuKeyword
'
Me.mnuKeyword.Name = "mnuKeyword"
Me.mnuKeyword.Size = New System.Drawing.Size(259, 22)
Me.mnuKeyword.Text = "&Keyword <keyword=...>"
'
'mnuOL
'
Me.mnuOL.Name = "mnuOL"
Me.mnuOL.Size = New System.Drawing.Size(259, 22)
Me.mnuOL.Text = "&Numbered List <ol><li>...</ol>"
'
'mnuUL
'
Me.mnuUL.Name = "mnuUL"
Me.mnuUL.Size = New System.Drawing.Size(259, 22)
Me.mnuUL.Text = "Bulle&ts <ul><li>...</ul>"
'
'mnuPRE
'
Me.mnuPRE.Name = "mnuPRE"
Me.mnuPRE.ShortcutKeys = CType((System.Windows.Forms.Keys.Control Or System.Windows.Forms.Keys.P), System.Windows.Forms.Keys)
Me.mnuPRE.Size = New System.Drawing.Size(259, 22)
Me.mnuPRE.Text = "&Preformatted <pre>...</pre>"
'
'mnuFigure
'
Me.mnuFigure.Name = "mnuFigure"
Me.mnuFigure.Size = New System.Drawing.Size(259, 22)
Me.mnuFigure.Text = "&Figure <figure>...</figure>"
'
'sep4
'
Me.sep4.Name = "sep4"
Me.sep4.Size = New System.Drawing.Size(256, 6)
'
'mnuAutoParagraph
'
Me.mnuAutoParagraph.Checked = True
Me.mnuAutoParagraph.CheckState = System.Windows.Forms.CheckState.Checked
Me.mnuAutoParagraph.Name = "mnuAutoParagraph"
Me.mnuAutoParagraph.Size = New System.Drawing.Size(259, 22)
Me.mnuAutoParagraph.Text = "Automatic Paragraphs <p>"
'
'mnuView
'
Me.mnuView.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.mnuFormatting, Me.mnuFormatWhileTyping, Me.mnuOptions, Me.mnuTextImage})
Me.mnuView.Name = "mnuView"
Me.mnuView.Size = New System.Drawing.Size(41, 20)
Me.mnuView.Text = "&View"
'
'mnuFormatting
'
Me.mnuFormatting.Checked = True
Me.mnuFormatting.CheckState = System.Windows.Forms.CheckState.Checked
Me.mnuFormatting.Name = "mnuFormatting"
Me.mnuFormatting.Size = New System.Drawing.Size(172, 22)
Me.mnuFormatting.Text = "&Formatting"
'
'mnuFormatWhileTyping
'
Me.mnuFormatWhileTyping.Name = "mnuFormatWhileTyping"
Me.mnuFormatWhileTyping.Size = New System.Drawing.Size(172, 22)
Me.mnuFormatWhileTyping.Text = "Format While Typing"
'
'mnuOptions
'
Me.mnuOptions.Name = "mnuOptions"
Me.mnuOptions.Size = New System.Drawing.Size(172, 22)
Me.mnuOptions.Text = "&Options"
'
'mnuTextImage
'
Me.mnuTextImage.Name = "mnuTextImage"
Me.mnuTextImage.Size = New System.Drawing.Size(172, 22)
Me.mnuTextImage.Text = "Test TextImage"
'
'MainMenu1
'
Me.MainMenu1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.mnuFile, Me.mnuEdit, Me.mnuTags, Me.mnuView, Me.mnuTopHelp})
Me.MainMenu1.Location = New System.Drawing.Point(0, 0)
Me.MainMenu1.Name = "MainMenu1"
Me.MainMenu1.Size = New System.Drawing.Size(739, 24)
Me.MainMenu1.TabIndex = 4
'
'mnuTopHelp
'
Me.mnuTopHelp.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.mnuHelpContents, Me.mnuHelpAbout, Me.mnuHelpWebsite})
Me.mnuTopHelp.Name = "mnuTopHelp"
Me.mnuTopHelp.Size = New System.Drawing.Size(40, 20)
Me.mnuTopHelp.Text = "&Help"
'
'mnuHelpContents
'
Me.mnuHelpContents.Name = "mnuHelpContents"
Me.mnuHelpContents.Size = New System.Drawing.Size(118, 22)
Me.mnuHelpContents.Text = "&Contents"
'
'mnuHelpAbout
'
Me.mnuHelpAbout.Name = "mnuHelpAbout"
Me.mnuHelpAbout.Size = New System.Drawing.Size(118, 22)
Me.mnuHelpAbout.Text = "&About"
'
'mnuHelpWebsite
'
Me.mnuHelpWebsite.Name = "mnuHelpWebsite"
Me.mnuHelpWebsite.Size = New System.Drawing.Size(118, 22)
Me.mnuHelpWebsite.Text = "&Web Site"
'
'tree1
'
Me.tree1.Dock = System.Windows.Forms.DockStyle.Fill
Me.tree1.Location = New System.Drawing.Point(0, 0)
Me.tree1.Name = "tree1"
Me.tree1.Size = New System.Drawing.Size(183, 451)
Me.tree1.TabIndex = 5
'
'SplitContainer1
'
Me.SplitContainer1.Dock = System.Windows.Forms.DockStyle.Fill
Me.SplitContainer1.Location = New System.Drawing.Point(0, 24)
Me.SplitContainer1.Name = "SplitContainer1"
'
'SplitContainer1.Panel1
'
Me.SplitContainer1.Panel1.Controls.Add(Me.tree1)
'
'SplitContainer1.Panel2
'
Me.SplitContainer1.Panel2.Controls.Add(Me.txtMain)
Me.SplitContainer1.Size = New System.Drawing.Size(739, 451)
Me.SplitContainer1.SplitterDistance = 183
Me.SplitContainer1.TabIndex = 6
'
'frmMain
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 14.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.BackColor = System.Drawing.SystemColors.Control
Me.ClientSize = New System.Drawing.Size(739, 475)
Me.Controls.Add(Me.SplitContainer1)
Me.Controls.Add(Me.fraFind)
Me.Controls.Add(Me.MainMenu1)
Me.Cursor = System.Windows.Forms.Cursors.Default
Me.Font = New System.Drawing.Font("Arial", 8.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.Name = "frmMain"
Me.RightToLeft = System.Windows.Forms.RightToLeft.No
Me.Text = "AuthorDoc"
Me.fraFind.ResumeLayout(False)
Me.fraFind.PerformLayout()
Me.MainMenu1.ResumeLayout(False)
Me.MainMenu1.PerformLayout()
Me.SplitContainer1.Panel1.ResumeLayout(False)
Me.SplitContainer1.Panel2.ResumeLayout(False)
Me.SplitContainer1.ResumeLayout(False)
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents tree1 As System.Windows.Forms.TreeView
Friend WithEvents SplitContainer1 As System.Windows.Forms.SplitContainer
#End Region
End Class