home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / BASIC / MKFORM / MAKEFORM.HLP < prev    next >
Text File  |  1994-04-21  |  3KB  |  98 lines

  1. ┌───────────────────────────────────────┐
  2. │                MAKEFORM                   │
  3. │         Merlin's Application Framework        │
  4. │          (C) Merlin's Software 1994          │
  5. └───────────────────────────────────────┘
  6.  
  7. MakeForm will convert a screen drawing (.PCX file)ì
  8. that contains buttons, scroll bars, text entry fieldsì
  9. and mouse regions into a real, working program forì
  10. you, in QuickBASIC source code form. All you needì
  11. to do is complete the SELECT CASE in the MAINì
  12. module to complete your program!
  13.  
  14. Please refer to the full documentation for all theì
  15. details. This help file contains just a condensedì
  16. command set as a quick reference.
  17.  
  18. You can exit this help file with Escape. Apart fromì
  19. that, this is just another memo field which you canì
  20. edit if you like! 
  21.  
  22.  
  23.  
  24.  
  25. Press PageDown to read on, Escape to quit...
  26. _______________________________________________________
  27. DESIGN STAGE              Field size and positioning
  28.  
  29. Load the drawing that you've made, or load theì
  30. file MF_TUTOR to test all the options.
  31.  
  32. The following keys are available:
  33. ┌───────────────────────────────────────┐
  34. │Escape:        Exit the program                 │
  35. │Mouse click:    Select a field                     │
  36. │Double click:    Start redimensioning the field         │
  37. │Enter:        Edit the current field data         │
  38. │Insert:         Insert a field after the current    │
  39. │Delete:        Delete the current field          │
  40. │Tab:           Next field                        │
  41. │F1:            This help file                       │
  42. │F5:            Test form editing / Run the form    │
  43. │F10:        Save the form - MakeForm will    │
  44. │            create a QuickBASIC source file.    │
  45. └───────────────────────────────────────┘
  46. If you have not defined any fields yet, press Insertì
  47. to create the first field, and use the mouse toì
  48. define its position and size.
  49.  
  50.  
  51. _______________________________________________________
  52. DATA ENTRY SCREEN           Entering field data
  53.  
  54. Press Enter to open the field data entry screenì
  55. for the current field. Enter all data you need.
  56. Use F1 to get help with entering any data.
  57.  
  58. Press the Close button to save your data and exitì
  59. the field data entry screen.
  60.  
  61. _______________________________________________________
  62. TEST RUN                    Testing your form
  63.  
  64. Press F5 to 'test-drive' the form. You can try outì
  65. all fields now - press buttons, use scroll bars,ì
  66. enter text, etcetera. F1 will show the help textì
  67. that you've defined for each field. The Alt-key willì
  68. call up the example menu system in MF_TUTOR.
  69. Press Escape to exit this stage.
  70.  
  71. _______________________________________________________
  72. SAVE                            Saving your work
  73.  
  74. Press F10 to save your work. MakeForm will createì
  75. a ....DEMO.BAS source code file that you can loadì
  76. and run from within the QB environment, andì
  77. complete at your leasure to create a fully workingì
  78. program! 
  79.  
  80. _______________________________________________________
  81. ASSORTED NOTES:
  82.  
  83. Please read the manual thoroughly. MakeForm is aì
  84. sophisticated Application Framework with many pos-ì
  85. sibilities. 
  86.  
  87. MakeForm itself was created with MakeForm -ì
  88. anything you see this program do, you can do too!ì
  89. And often very easily! If you press Escape, you willì
  90. exit this help file. The Query pop-up box thatì
  91. appears next, where you can enter the name ofì
  92. the PCX file you want to work with, uses just oneì
  93. line of code, like this:
  94.     VGAQuery Prompt$, Edit$
  95. Nothing could be easier, right?
  96. So enjoy!
  97.  
  98. [End of help file]