Delphi Personal Edition or Turbo Delphi- saving and searching for data - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T21:04:22Zhttp://stackoverflow.com/feeds/question/460660http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/460660/delphi-personal-edition-or-turbo-delphi-saving-and-searching-for-data0Delphi Personal Edition or Turbo Delphi- saving and searching for datambe2009-01-20T09:58:14Z2009-02-09T16:04:09Z
<p>Hi,</p>
<p>i'm interested if it is possible to make an application like an Address Book (Windows: Start->All Programs->Accessories->Address Book) in Delphi Personal Edition or in Turbo Delphi.</p>
<p>If yes, how to make it? Which components to use?</p>
<p>How to make an application to be used on some other computer, and that no files would be needed to install in that computer for the application to work?
(saving data through some form and an option to search for particular entry (like Find People in Address Book))</p>
<p>Regards</p>
http://stackoverflow.com/questions/460660/delphi-personal-edition-or-turbo-delphi-saving-and-searching-for-data/460823#4608231Answer by Gamecat for Delphi Personal Edition or Turbo Delphi- saving and searching for dataGamecat2009-01-20T11:00:13Z2009-01-20T11:00:13Z<p>To start with the first question, you can write (almost) any application in Delphi. Other version often implies a smaller library and possible limited use (as far as I know you can't sell comercial applications build with the free version, but maybe codegear changed this)</p>
<p>An addressbook is a nice and simple (database) application. And with database applications you have basically two choices:</p>
<ul>
<li>use the data aware controls</li>
<li>do it yourself</li>
</ul>
<p>Data aware controls are great if you want to build an application fast. If you have a life connection, you can show it (even at designtime). But In my opionion they are a bit limited.</p>
<p>The do it yourself option is harder. You should write an infrastructure yourself.</p>
<p><strong>Some remarks on general application development</strong></p>
<p>First you need to decide what you want to build. Take some paper and draw some screens. For example:</p>
<pre><code>+-------------------------------------------------+
| menu |
+-------------------------------------------------+
| Toolbar |
+------------+------------------------------------+
| -Friends |Name Mail |
| >Hers |Alice Alice1957@hotmail.com |
| His |Bob Bob123@hotmail.com |
| +Coworkers | |
| + Us | |
| +Them | |
+------------+------------------------------------+
| statusbar |
+-------------------------------------------------+
</code></pre>
<p>We have the following controls:</p>
<ul>
<li>An action list (not visible) which contains the actions independent of the menu/toolbars.</li>
<li>A main menu, linked to the action list. </li>
<li>A toolbar, linked to the action list.</li>
<li>A treeview to organize the groups.</li>
<li>A listview to show the contacts.</li>
<li>A statusbar to show the application status.</li>
</ul>
<p>With the action list, it is easy to use both a main menu, context menu's and toolbars.</p>
<p>The listview has several view styles. You need to set the ViewStyle property to vsReport to get the expected behaviour. Within the listview, each item has a caption, which is shown on the first column. The other columns are filled with information in a stringlist (subitems).</p>
<p>Then you need to decide on the actions:</p>
<ul>
<li>Add address</li>
<li>Remove address</li>
<li>Copy/Paste</li>
<li>Move (drag & drop is nice but can be hard to program)</li>
<li>Print</li>
</ul>
<p>And there are lots of other questions (possibly for later) like:</p>
<ul>
<li>Do you want a single addressbook, or do you want multiple? In the later case you need a mechanism to connect to another database.</li>
<li>Do you want to show one or multiple addresscards at once?</li>
</ul>
<p>If this is too much, I advice to start small (single database, single card, no printing). You can expand later.</p>
http://stackoverflow.com/questions/460660/delphi-personal-edition-or-turbo-delphi-saving-and-searching-for-data/460963#4609630Answer by Riho for Delphi Personal Edition or Turbo Delphi- saving and searching for dataRiho2009-01-20T11:46:16Z2009-01-20T11:46:16Z<p>Unless I'm mistaken the Personal edition does not contain Database components. But you can code your own.
To ensure that your program runs in other computers ensure that the dynamic linking is set off - then everything is packed into single EXE file.</p>
http://stackoverflow.com/questions/460660/delphi-personal-edition-or-turbo-delphi-saving-and-searching-for-data/514882#5148820Answer by mbe for Delphi Personal Edition or Turbo Delphi- saving and searching for datambe2009-02-05T07:12:04Z2009-02-05T07:24:48Z<p>Hi,</p>
<p>I was away for some time, hope we can continue,
i'll give some more information.</p>
<p>What i'm doing is for school project, i'm trying to make an application which would actually be used by some electro-engineer.
The purpose of an application is- to easily find a map in hard-disk, in which a certain project is saved (for example, in OS Windows, C:\Projects\2009\Project1), using some query. </p>
<p>Here is what i got, of course this is only visual concept.
Any tips on how to make this work?</p>
<p>Regards</p>
<p>link: <a href="http://picasaweb.google.com/lh/photo/XHpz7ODSUfkTgv1OrskxpA?feat=directlink" rel="nofollow">http://picasaweb.google.com/lh/photo/XHpz7ODSUfkTgv1OrskxpA?feat=directlink</a></p>
<p></p>
http://stackoverflow.com/questions/460660/delphi-personal-edition-or-turbo-delphi-saving-and-searching-for-data/528759#5287590Answer by mbe for Delphi Personal Edition or Turbo Delphi- saving and searching for datambe2009-02-09T16:04:09Z2009-02-09T16:04:09Z<p>Hi,</p>
<p>a question here:
which type of database should i make?
I see component TClientDataSet has an option to load from MyBase XML Table,
is this appropriate in this case or should i use something else?</p>