JayBeeOH

TxtEditor - Design Time Settings

Jan 27th, 2015
775
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.97 KB | None | 0 0
  1. TxtEditor Design Time Settings -
  2.  
  3. '------------------------------------------------------------------------------------------
  4. ' Notice of My Copyright and Intellectual Property Rights
  5. '
  6. ' Any intellectual property contained within the program by Joseph L. Bolen remains the
  7. ' intellectual property of the Joseph L. Bolen. This means that no person may distribute,
  8. ' publish or provide such intellectual property to any other person or entity for any
  9. ' reason, commercial or otherwise, without the express written permission of Joseph L. Bolen.
  10. '
  11. ' Copyright © 2015. All rights reserved.
  12. ' All trademarks remain the property of their respective owners.
  13. '-------------------------------------------------------------------------------------------
  14. ' Program Name: Text Editor
  15. '
  16. ' Author: Joseph L. Bolen
  17. ' Date Created: Jan 2015
  18. '
  19. ' Description: Simple plain text editor program with printing ability.
  20. '
  21. ' Documentation is at:
  22. ' App's screen image is at: http://imgur.com/TzWs9kO
  23. ' App's Visual Basic .NET code is at: http://pastebin.com/u/jaybeeoh
  24. ' Video tutorial at YouTube: http://www.youtube.com/user/bolenpresents
  25. '------------------------------------------------------------------------
  26.  
  27. MainForm (Form)
  28. Font - Segoe UI, 9pt
  29. Size - 640,360
  30. MenuStrip1 (MenuStrip)
  31. Dock - Top
  32. Items (Collection)
  33. Location - 0,0
  34. Size - 624,24
  35. ToolStrip1 (ToolStip)
  36. Dock - Top
  37. Items (Collection)
  38. Location - 0,24
  39. MyTextBox (TextBox)
  40. AcceptsReturn - True
  41. AcceptsTab - True
  42. AllowDrop - True
  43. Anchor - Top, Bottom, Left, Right
  44. Font - Calibri, 12pt
  45. Location - 12,52
  46. MaxLength - 0
  47. Multiline - True
  48. ScrollBars - Vertical
  49. Size - 600,258
  50.  
  51. Component Tray -
  52. MenuStrip1 (MenuStrip)
  53. ToolStrip1 (ToolStrip)
  54. OpenFileDialog1 (OpenFileDialog)
  55. SaveFileDialog1 (SaveFileDialog)
  56. FontDialog1 (FontDialog)
  57. PrintDocumen1 (PrintDocument)
  58. PrintDialog1 (PrintDialog)
  59. PrintPreviewDialog1 (PrintPreviewDialog)
  60. PageSetupDialog1 (PageSetupDialog)
  61.  
  62. =========================================================================
  63. MenuStrip1 Items Collection:
  64. FileToolStripMenuItem - &File
  65. DropDownItems -
  66. NewToolStripMenuItem - &File Ctrl+N
  67. OpenToolStripMenuItem - &Open Ctrl+O
  68. toolStripSeparator
  69. SaveToolStripMenuItem - &Save Ctrl-S
  70. SaveAsToolStripMenuItem - Save &As ...
  71. toolStripSeparator
  72. PageSetupToolStripMenuItem - Page Set&up ...
  73. PrintToolStripMenuItem - &Print Ctrl-P
  74. PrintPreviewToolStripMenuItem - Print Pre&view
  75. toolStripSeparator
  76. ExitToolStripMenuItem - E&xit
  77. EditToolStripMenuItem - &Edit
  78. DropDownItems -
  79. UndoToolStripMenuItem - &Undo Ctrl+Z
  80. toolStripSeparator
  81. CutToolStripMenuItem - Cu&t Ctrl+X
  82. CopyToolStripMenuItem - &Copy Ctrl+C
  83. PasteToolStripMenuItem - &Paste Ctrl+V
  84. DeleteToolStripMenuItem - De&lete Del
  85. toolStripSeparator
  86. FindToolStripMenuItem - Find ... Ctrl+F
  87. FindNextToolStripMenuItem - Find Next F3
  88. ReplaceToolStripMenuItem - Replace ... Ctrl+H
  89. toolStripSeparator
  90. SelectAllToolStripMenuItem - Select &All Ctrl+A
  91. TimeDateToolStripMenuItem - Time/Date F5
  92. FormatToolStripMenuItem - F&ormat
  93. DropDownItems -
  94. WordWrpToolStripMenuItem - &Word Wrap (checked)
  95. FontToolStripMenuItem - &Font ...
  96. HelpToolStripMenuItem - &Help
  97. DropDownItems -
  98. AboutToolStripMenuItem - &About ...
  99.  
  100. =========================================================================
  101. ToolStrip1 Items Collection:
  102. NewTooStripButton
  103. OpenToolStripButton
  104. SaveToolStripButton
  105. PrintToolStripButton
  106. toolStripSeparator
  107. CutToolStripButton
  108. CopyToolStripButton
  109. PasteToolStripButton
  110. toolStripSeparator
  111. HelpToolStripButton
  112.  
  113. =========================================================================
  114. ReplaceForm (Form)
  115. AcceptButton - FindNextButton
  116. Font - Seuoe UI, 9pt
  117. FormBorderStyle - Fixed3D
  118. MaximizeBox - False
  119. MinimizeBox - False
  120. Size - 383,174
  121. StartPosition - CenterParent
  122. Text - Replace
  123. TopMost - True
  124. FindLabel (Label)
  125. Location - 13,15
  126. Size - 62,15
  127. Text - Fi&nd what:
  128. FindTextBox (TextBox)
  129. Location - 96,12
  130. Size - 163,23
  131. ReplaceWithLabel (Label)
  132. Location -13,44
  133. Size - 77,15
  134. Text - Re&place with:
  135. MatchCaseCheckBox (CheckBox)
  136. Anchor - Bottom, Left
  137. Location - 12,101
  138. Size - 86,19
  139. Text - Match &case
  140. DirectionGroupBox (GroupBox)
  141. Anchor - Bottom, Left
  142. Location - 116,77
  143. Size - 128,51
  144. Text - Direction:
  145. UpRadioButton (RaditonButton)
  146. Location - 11,23
  147. Size - 40,19
  148. Text - &Up
  149. DownRadioButton (RadioButton)
  150. Checked - True
  151. Location - 57,23
  152. Size - 56,19
  153. Text - &Down
  154. FindNextButton (Button)
  155. Anchor - Top,Right
  156. Location - 274,12
  157. Size - 75,23
  158. Text - &Find Next
  159. ReplaceButton (Button)
  160. Anchor - Top,Right
  161. Location -274,44
  162. Size - 75,23
  163. Text - &Replace
  164. ReplaceAllButton (Button)
  165. Anchor - Top,Right
  166. Location - 274,73
  167. Size - 75,23
  168. Text - Replace &All
  169. CancelButton (Button)
  170. Anchor - Top,Right
  171. Location - 274,102
  172. Size - 75,23
  173.  
  174. ============================================================================
  175. FindForm (Form)
  176. AcceptButton - FindNextButton
  177. Font - Seuoe UI, 9pt
  178. FormBorderStyle - Fixed3D
  179. MaximizeBox - False
  180. MinimizeBox - False
  181. Size - 383,137
  182. StartPosition - CenterParent
  183. Text - Find
  184. TopMost - True
  185. FindLabel (Label)
  186. Location - 13,15
  187. Size - 62,15
  188. Text - Fi&nd what:
  189. FindTextBox (TextBox)
  190. Location - 96,12
  191. Size - 163,23
  192. MatchCaseCheckBox (CheckBox)
  193. Anchor - Bottom, Left
  194. Location - 12,64
  195. Size - 86,19
  196. Text - Match &case
  197. DirectionGroupBox (GroupBox)
  198. Anchor - Bottom, Left
  199. Location - 116,40
  200. Size - 128,51
  201. Text - Direction:
  202. UpRadioButton (RaditonButton)
  203. Location - 11,23
  204. Size - 40,19
  205. Text - &Up
  206. DownRadioButton (RadioButton)
  207. Checked - True
  208. Location - 57,23
  209. Size - 56,19
  210. Text - &Down
  211. FindNextButton (Button)
  212. Anchor - Top,Right
  213. Location - 274,12
  214. Size - 75,23
  215. Text - &Find Next
  216. CancelButton (Button)
  217. Anchor - Top,Right
  218. Location - 274,41
  219. Size - 75,23
Advertisement
Add Comment
Please, Sign In to add comment