home *** CD-ROM | disk | FTP | other *** search
/ Chip: Shareware for Win 95 / Chip-Shareware-Win95.bin / ostatni / delphi / ruzne / auto32_3.exe / rar / AUTO32_3 / ABOUTRSD.TXT next >
Text File  |  1997-07-17  |  10KB  |  215 lines

  1. Contents
  2. 1. Introduction
  3. 2. How can we help you?
  4. 3. Products list
  5. 4. Support
  6. 5. Contact
  7.  
  8. 1. Introduction
  9.  
  10. Dear Delphi and C++Builder users:
  11.  
  12.  Our company  does  its  best to help you create powerful Database
  13. applications with Delphi  and  C++  Builder  fast  and  easy.  Our
  14. products   are  specially  designed  to  suite  Rapid  Application
  15. Development (RAD) technology.  We believe that  RAD  significantly
  16. decreases   the   time   and  efforts  you  spend  on  application
  17. development.
  18.  
  19.  Our experience tells that even in Delphi environment at least 40%
  20. of program code has to be written manually to create an acceptable
  21. user interface and to make a successful application.  This part of
  22. the code  has  nothing to do with the basic application logic.  In
  23. other words,  you always spend at least 40%  of time  writing  the
  24. code that you do not need to write.  And who would write this code
  25. for you?  Yes,  nobody,  but by  using  the  specialized  sets  of
  26. components you may decrease the portion of such code down to 10%.
  27.  
  28.  Look at our demo programs that mostly contain no manually written
  29. code. You  can  make  your  own   applications   with   the   same
  30. functionality without writing a single line of code.
  31.  
  32. 2. How can we help you?
  33.  
  34.  Usually a  database  form that lists the data must have some view
  35. modificators which perform filter changing and data sorting. Users
  36. want to have a "quick find" option in data lists. You can  fulfill
  37. these tasks  with  the  visual  components  from  Auto  Components
  38. Library. Auto  Form  Expert  will guide you through the process of
  39. creating your form.
  40.  
  41.  Sometimes you might want to extend the  display  capabilities  of
  42. DBGrid. This  is a rather simple task but it takes time.  AutoGrid
  43. from Auto Components Library can display Graphic and  Memo  fields
  44. in several  styles and control the visual attributes of each cell.
  45. Also you can easy change  the  sort  order  by  clicking  the  row
  46. header.
  47.  
  48.  In a  real  database  application  you always have several lookup
  49. tables. The ordinary DBLookupCombo is quite usable  but  when  you
  50. want to   extend   it   capabilities   you  must  do  extra  work.
  51. TDBReference components from Auto Components Library  can  control
  52. various aspects of lookup tables usage. The user can view a lookup
  53. table in a grid,  search for a record incrementally,  edit on  the
  54. fly and type the KeyValue in the Edit Box.
  55.  
  56.  Sometimes you have to store a hierarchy of objects in your table.
  57. This can be done by using a self-referenced table (which  has  the
  58. ID and  ParentID fields).  Of course you would want to display the
  59. data in TreeView control.  But you would find that it  requires  a
  60. LOT of  code!  Now  you  can  use  the  DBTreeView  component that
  61. controls your table.  The component handles all you  could  expect
  62. of TreeView i.e.  navigation,  editing,  drag & drop etc.  You can
  63. even directly manipulate TreeView's nodes - all the  changes  will
  64. be reflected in the data table.
  65.  
  66.  The user  always  wants  to see the familiar interface objects in
  67. the application.  The closer it is to Windows Explorer,  the  more
  68. usable it is.  So,  why do not use the standard ListView component
  69. to display the data from a database?  In many  cases  ListView  is
  70. very useable  and  it  looks  good.  DBListView  is  a  data-aware
  71. ListView. And even more it can retrieve the  item  images  from  a
  72. database.
  73.  
  74.  The users  like simple interfaces and hate complex ones.  Several
  75. kinds of database applications  allow  the  user  to  access  many
  76. DataSets.  Of  course you can create an application with 50 forms,
  77. or let the user to select the appropriate dataset from a list or a
  78. menu.  But  there  is  a  common  approach  which  is used by such
  79. applications as  Borland  Database  Explorer,  MS  SQL  Enterprise
  80. Manager, Oracle Enterprise Manager. All of these applications deal
  81. with a complex hierarchy of different  objects  grouped  together.
  82. Instead  of  using  dozens  of forms they use just one TreeView to
  83. show all the hierarchy.  The DBExplorer component  allows  you  to
  84. organize all your DataSets in one simply manageable component.
  85.  
  86.  Often your  DB  application  does not require complex input forms
  87. (for example,  dictionaries).  You might want to use one  form  to
  88. edit all  of them by just changing the linked DataSource.  You can
  89. do it easily with DBGrid. But what to do if the user wants to edit
  90. the data  in  the  form  style (that is the form containing Label,
  91. DBEdit, DBLookUp,  DBMemo etc.  controls) ?  In this case the FREE
  92. DBPanelEdit component does all the work for you.  It automatically
  93. presents the data from the linked DataSource  in  the  form  style
  94. using DisplayLabels  and  LookupFields  in  the same way as DBGrid
  95. uses them.  In addition DBPanelEdit completely supports  Memo  and
  96. Graphic fields.
  97.  
  98.  You have  to  improve an existing database application to make it
  99. more usable.  Why not to add the "Quick Search" capability to your
  100. grids? The  FREE  DBGridSearch component can do it.  Since it does
  101. not require writing a single line of code, you would not bring new
  102. errors into the application.  Just drop it on the form and link to
  103. DBGrid.
  104.  
  105.  Some kinds of database applications require quick data  entering.
  106. In this  case  you  might want to give the user the possibility to
  107. move to the next input field on pressing ENTER or on the  previous
  108. field completion.  You might also want to react on Ctrl-Insert and
  109. Ctrl-Del pressing by adding or deleting  records.  The  QuickTyper
  110. components handle these features.
  111.  
  112.  Do you have problems or questions regarding "inside Delphi"? Look
  113. up RSD Tips & Tricks.  This collection of  Delphi  Tips  &  Tricks
  114. answers questions on database and components programming.  Some of
  115. the tips include free working components.
  116.  
  117.  If your problem can not be solved with RSD Tips &  Tricks  or  if
  118. you have  to  rewrite  some  part of the code in your applications
  119. again and again,  let us know - we will try help you and maybe  we
  120. will create a component just for you.
  121.  
  122. 3. Products list
  123.  
  124. Auto Components Library 1.15 (Delphi 2.0, 3.0, C++ Builder)
  125. 25 Components
  126. Cost:
  127. * Client/Server Version: US$ 120.00 (Full SQL Support)
  128. * Desktop Version: US$ 49.00 (Tables support)
  129.  
  130. Includes Sources, Demos, and FAQ.
  131. Home page: http://www.rsd.pp.ru/products/auto32/
  132. The Demo is available at
  133. Client/Server Version:
  134. For Delphi 2.0     : http://www.rsd.pp.ru/products/download/auto32_2.exe
  135. For Delphi 3.0     : http://www.rsd.pp.ru/products/download/auto32_3.exe
  136. For C++ Builder 1.0: http://www.rsd.pp.ru/products/download/auto32_C.exe
  137. Desktop Version:
  138. For Delphi 2.0     : http://www.rsd.pp.ru/products/download/auto32d2.exe
  139. For Delphi 3.0     : http://www.rsd.pp.ru/products/download/auto32d3.exe
  140. For C++ Builder 1.0: http://www.rsd.pp.ru/products/download/auto32dC.exe
  141. ------------------------------------------------------------------
  142. DBTreeView 2.0 (Delphi 2.0, 3.0, C++ Builder)
  143. 6 Components
  144. Cost: US$ 49.00
  145. Includes Sources, Demos, and FAQ.
  146. Home page: http://www.rsd.pp.ru/products/dbtree/
  147. The Demo is available at
  148.     http://www.rsd.pp.ru/products/download/dbtree.exe
  149.  
  150. -------------------------------------------------------------------
  151. DBListView 1.0 (Delphi 2.0, 3.0, C++ Builder)
  152. 5 Components
  153. Cost: US$ 49.00
  154. Includes Sources, Demos, and FAQ.
  155. Home page: http://www.rsd.pp.ru/products/dblistv/
  156. The Demo is available at
  157.     http://www.rsd.pp.ru/products/download/dblistv.exe
  158.  
  159. -------------------------------------------------------------------
  160. DBPanelEdit 1.0 (Delphi 2.0, 3.0, C++ Builder)
  161. Cost: FREE of charge
  162. Includes Sources, Demos.
  163. Home page: http://www.rsd.pp.ru/products/misc/
  164. The product is available at
  165.     http://www.rsd.pp.ru/products/download/dbpanel.zip
  166.  
  167. -------------------------------------------------------------------
  168. DBExplorer 0.85 (Delphi 2.0, 3.0, C++ Builder)
  169. Cost: XXXX
  170. Includes Sources, Demos, and FAQ.
  171. Home page: http://www.rsd.pp.ru/products/dbexp/
  172. The Demo is available at
  173.     http://www.rsd.pp.ru/products/download/dbexp.zip
  174.  
  175. -------------------------------------------------------------------
  176. DBGridSearch 2.0 (Delphi 1.0, 2.0, 3.0, C++ Builder)
  177. Cost:  FREE of charge
  178. Includes Sources, Demos.
  179. Home page: http://www.rsd.pp.ru/products/misc/
  180. The product is available at
  181.     http://www.rsd.pp.ru/products/download/grdsrch.zip
  182.  
  183. -------------------------------------------------------------------
  184. QuickTyper 2.0 (Delphi 2.0, Delphi 3.0, and C++ Builder)
  185. Cost: US$ 15
  186. Includes Sources, Demos.
  187. Home page: http://www.rsd.pp.ru/products/misc/
  188. The Demo is available at
  189.     http://www.rsd.pp.ru/products/download/qtyper.exe
  190.  
  191. -------------------------------------------------------------------
  192. RSD Tips&Tricks
  193. Cost: FREE of charge
  194. Includes examples, free components with sources.
  195. Home page: http://www.rsd.pp.ru/service/consulting/
  196.  
  197. -------------------------------------------------------------------
  198.  
  199. 4. Support.
  200.  
  201.  All registered users of RSD products receive a full-time  support
  202. via E-mail.
  203.  We will answer your questions about the products usage  and  give
  204. you advice on building better applications with our products.
  205.  We react to any bug report and  prepare  bug  fixes  as  soon  as
  206. possible.
  207.  You receive any minor (and some major) updates for free.
  208.  
  209.  
  210. 5. Contact
  211.  
  212. RSD software:
  213. Internet: http://www.rsd.pp.ru
  214. E-mail: rsd@tibc.tula.ru
  215. Fax: ++7 0872 77018