home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: InfoMgt / InfoMgt.zip / mnote874.zip / readme.txt < prev   
Text File  |  2001-10-30  |  11KB  |  303 lines

  1.  
  2.                                 M U L T I N O T E
  3.                    -----------------------------------------
  4.  
  5.                    Version 0.874 (Beta8) - October 30, 2001
  6.  
  7.                         (c) Copyright 1993-2001, JMA
  8.  
  9.  
  10.                  ** BETA VERSION - USE AT YOUR OWN RISK !! **
  11.  
  12. What is MultiNote ?
  13. -------------------------------------------------------------------------------
  14. MultiNote allows you to save different texts (information) in a uniform way.
  15. With Multinote you associate every text (ascii text, typed or from a file)
  16. with a searchable title. You define what information is related, MultiNote 
  17. stores it for you.
  18.  
  19. With MultiNote you can arrange your information in three levels:
  20. 1) You can have several database files (or tables)
  21. 2) Each file has 15 divisions (tabs)
  22. 3) In each tabs you can have more than a thousand items (items and text)
  23.  
  24. Its hard to describe MultiNote in words, try it out !!!
  25.  
  26. Also, on eComStation MultiNote is drag/drop enabled. Just drag any 
  27. textfile from your desktop (or from any folder on your desktop) to 
  28. MultiNote and it will be added into your database. You can even do
  29. it the other way around, drag any item from MultiNote to your desktop
  30. (or from any folder on your desktop) and a text file will be created.
  31.  
  32. On eComStation, naturally, you can change the colors and font in the 
  33. itemlist and the textbox in MultiNote using drag/drop from the 
  34. system setup palettes.
  35.  
  36. MultiNote is availible for eComStation (and OS/2 Warp) and Windows.
  37. They have not (yet) all the same features but the plans are to have
  38. the same features in both versions.
  39.  
  40. However, the BIN, MYSQL and export file formats are fully compatible
  41. between the both versions.
  42.  
  43. There is also a web (PHP/MYSQL) version using the same database as
  44. the eComStation and Windows version. If you have interest in the web
  45. version please contact us.
  46.  
  47.  
  48. Installation
  49. -------------------------------------------------------------------------------
  50. MultiNote uses a separate DLL file to connect to a specific database types.
  51. In this beta there are two drivers included: 
  52. - BIN, MultiNote own format
  53. - MYSQL, uses the mysql database
  54.  
  55. Since installation is quite different depending on what format you choose
  56. please refer to the correct procedure below:
  57.  
  58. ==== On Windows =========================================================
  59.  
  60. Files are found in the win subdirectory:
  61.  
  62. ---- BIN -----------------------
  63. Requirments: Windows 98/Me/NT4/2000 (not tested on Windows 95/XP)
  64.  
  65. Copy the file MNOTE.EXE, MNDLL.DLL, MNOTE.INI, MNOTE.JT* to a directory 
  66. of your choice.
  67.  
  68. Start MNOTE.EXE
  69.   
  70. ---- MySQL ---------------------
  71. Requirments: Windows 98/Me/NT4/2000 (not tested on Windows 95/XP)
  72.              MySQL 3.23 (may work with older versions)
  73.              Only tested with MySQL server installed locally but
  74.              MultiNote should work with any MySQL server
  75.  
  76. Copy the file MNOTE.EXE, MY_MNDLL.DLL, MNOTE.INI to a directory 
  77. of your choice.
  78. Rename MY_MNDLL.DLL TO MNDLL.DLL (REN MY_MNDLL.DLL MNDLL.DLL)
  79. Using the MNOTE.SQL file and the MySQL utilities create two tables in 
  80. your (any) MySQL database.
  81.  
  82. Now you must create a connection string to connect to MySQL. The string
  83. is a set of parameters separated with ;
  84. This is an example that will help you figure out how to write your own
  85. connection string:
  86.    
  87.    I use the following string:
  88.    MARTIN;localhost;jma;0;\socket\mysql.sock
  89.    The parameters are:
  90.    MARTIN              Name of my MultiNote database (NOT a MySQL db)
  91.    localhost           Address of my server (hostname or IP address)
  92.    jma                   Name of the MySQL db where you created the tables
  93.    0                   MySQL server port (TCP/IP).
  94.    \socket\mysql.sock  Socket to connect to (if using sockets)
  95.  
  96. Edit the MNOTE.INI file. Replace the text mnote on the ConnectString 
  97. line with your connection string:
  98.  
  99. I changed my MNOTE.INI from:
  100.    [Connection]
  101.    ConnectString=mnote
  102.  
  103. To the following line:
  104.    [Connection]
  105.    ConnectString=MARTIN;localhost;jma;0;\socket\mysql.sock
  106.  
  107. Start MNOTE.EXE
  108.  
  109. Please refer to MySQL documentation for more information on how to
  110. configure and connect to a MySQL server.
  111.    
  112.  
  113. ==== On eComStation ======================================================
  114.  
  115. Files are found in the ecs subdirectory:
  116.  
  117. ---- BIN -----------------------
  118. Requirments: eComStation or OS/2 Warp (tested on eComStation)
  119.  
  120. Copy the file MNOTE.EXE, MNDLL.DLL, MNOTE.JT* to a directory 
  121. of your choice.
  122.   Now you may type the name of a new database (click on Create new)
  123.   or via the browse button select the MNOTE.JTD (example) database.
  124.   
  125. ---- MySQL ---------------------
  126. Requirments: eComStation or OS/2 Warp (tested on eComStation)
  127.              MySQL 3.23.40 (may work with older versions)
  128.              Only tested with MySQL server installed locally but
  129.              MultiNote should work with any MySQL server
  130.  
  131. Copy the file MNOTE.EXE and MYSQL.MNDLL.DLL to a directory of your choice.
  132. Rename MY_MNDLL.DLL TO MNDLL.DLL (REN MY_MNDLL.DLL MNDLL.DLL)
  133. Using the MNOTE.SQL file and the MySQL utilities create two tables in 
  134. your (any) MySQL database.
  135. Start MNOTE.EXE
  136.    Now you must create a connection string to connect to MySQL. The string
  137.    is a set of parameters separated with ;
  138.    This is an example that will help you figure out how to write your own
  139.    connection string:
  140.    
  141.    I use the following string:
  142.    MARTIN;localhost;jma;0;\socket\mysql.sock
  143.    The parameters are:
  144.    MARTIN              Name of my MultiNote database (NOT a MySQL db)
  145.    localhost           Address of my server (hostname or IP address)
  146.    jma                   Name of the MySQL db where you created the tables
  147.    0                   MySQL server port (TCP/IP).
  148.    \socket\mysql.sock  Socket to connect to (if using sockets)
  149.  
  150.   Enter your string and optionally (if your servers requires it) a username
  151.   and a password. Now click on "Create new" to create the connection.
  152.   If your connection is successful you can now click on the "Set as default"
  153.   checkbox and then click OK to open the database.
  154.  
  155.   Please refer to MySQL documentation for more information on how to
  156.   configure and connet to a MySQL server.
  157.    
  158. Note: The MySQL support DLL is not multithreaded due to no threading 
  159.       support in the current MySQL client library.
  160.  
  161.  
  162. What is included in this beta ?
  163. -------------------------------------------------------------------------------
  164. ==== eComStation ================
  165. Open/create database
  166. Printing single item
  167. Edit, copy to, paste from in text (MLE)
  168. Wordwrap, no wordwrap
  169. Add, rename, delete items
  170. Marking items, delete marked items 
  171. Printing, one item or many
  172. Change tab names
  173. Pack/import/export database
  174. Save settings
  175.  
  176. Popup menus on item list and on text (MLE)
  177. Drag/drop to and from item list and text (MLE)
  178.  
  179. ==== Windows ====================
  180. Printing single item
  181. Edit, copy to, paste from in text (MLE)
  182. Wordwrap, no wordwrap
  183. Add, rename, delete items
  184. Set font/color on each item
  185. Marking items
  186. Change tab names
  187. Export database
  188. Save window settings
  189.  
  190.  
  191. What is not included in this beta ?
  192. -------------------------------------------------------------------------------
  193. Working search
  194. Support for several other database formats
  195. ODBC driver (contact us if you want to test)
  196. Most other menuitems
  197. Create HTML pages
  198. Webversion (php)
  199. Crypted and/or passworded database
  200. Preferences notebook
  201. Help system
  202. And many other things...
  203.  
  204.  
  205.  
  206. Files in this beta
  207. -------------------------------------------------------------------------------
  208. MNOTE.EXE                Main program
  209. MYSQL.MNDLL.DLL                Database driver for MySQL
  210. MNDLL.DLL                Database driver for "BIN" format
  211. MNOTE.SQL                MySQL script to create MulitNote tables
  212. MNOTE.INI                Windows INI file
  213. MNOTE.JTD                Example database
  214. MNOTE.JTM                Extra file for example database
  215.  
  216. -------------------------------------------------------------------------------
  217.  
  218. MULTINOTE BETA - BUGREPORT
  219.  
  220. **********
  221. Use this text with the Windows version or if you cannot 
  222. start the eComStation version. If you can start the 
  223. eComStation version please use the included Technical 
  224. Support menu in MultiNote.
  225. **********
  226.  
  227. Your Name :_______________________________________________________________
  228.  
  229. Your email:_______________________________________________________________
  230.  
  231.  
  232.  
  233. We need some input on your system.
  234. ==================================
  235.  
  236. Type/brand:    ___________________________________________________________
  237.  
  238. Processor:     ___________________________________________________________
  239.  
  240. RAM size:      ___________________________________________________________
  241.  
  242. Harddisk size: ___________________________________________________________
  243.  
  244. Graphic card:  ___________________________________________________________
  245.  
  246. File system:   ___________________________________________________________
  247.  
  248. OS version:    ___________________________________________________________
  249.  
  250. OS fixpack:    ___________________________________________________________
  251.  
  252.  
  253.  
  254. Please describe your problem(s) as specific as possible:
  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. email this to mail@jma.se
  291.  
  292. Thank you!
  293.  
  294. JMA
  295.  
  296. John Martin Alfredsson
  297. President
  298.  
  299. -------------------------------------------------------------------------------
  300.  
  301.  
  302.  
  303.