User birger - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T01:29:28Zhttp://stackoverflow.com/feeds/user/11485http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1822628/dynamic-access-form/1824629#18246290Answer by birger for Dynamic Access Formbirger2009-12-01T07:53:15Z2009-12-01T07:53:15Z<p>Do you explicitly destroy the created controls when you close the form? I'm not sure how Access handles stuff like this, but in Delphi when you create a control and put it on a form (all in code) the control is not destroyed when the form is destroyed. For that to work, you must set the owner property of the new control to the form. Maybe Access has a similar possibility?</p>
http://stackoverflow.com/questions/1821429/dbgrid-get-selected-cell/1821676#18216760Answer by birger for DBGrid get selected cellbirger2009-11-30T18:52:55Z2009-11-30T18:52:55Z<p>A DB grid has no focus, and therefore you cannot find out which row is seleted. Instead look at the linked dataset. A dataset has an active row.</p>
http://stackoverflow.com/questions/1755145/dbgo-or-dbexpress-for-delphi-2010-with-microsoft-sql-server/1755386#17553861Answer by birger for dbGo or dbExpress for Delphi 2010 with Microsoft SQL Serverbirger2009-11-18T11:30:32Z2009-11-18T11:30:32Z<p>For simple applications <em>J</em>'s soltution might be good enough, but for client / server applications where performance is an issue I'd go for dbExpress. The article by Zarko pointed out before is indeed good reading material.</p>
http://stackoverflow.com/questions/1749453/access-against-mysql-or-postgres/1750215#17502151Answer by birger for Access against MySQL or Postgres?birger2009-11-17T16:52:50Z2009-11-17T16:52:50Z<p>We have very good experiences with Access -> ODBC -> MySQL / Firebird. I assume PostGres should be as easy.</p>
<p>This will not solve all your performance issues (if you have any). The best thing to do to gain significant performance increase is to use views / stored procedure / pass through queries to bring as much load as possible to the (fast) database server.</p>
http://stackoverflow.com/questions/1734717/is-it-possible-and-safe-to-have-multiple-tdatasources-reffering-one-tdataset-desc/1734783#17347830Answer by birger for Is it possible and safe to have multiple TDataSources reffering one TDataSet descendant component ?birger2009-11-14T16:45:43Z2009-11-14T16:45:43Z<p>I think with lookuptables it should be save, since it doesn't really matter where in the dataset the cursor is positioned. I'd say: give it a try!</p>
http://stackoverflow.com/questions/1206136/update-query-on-linked-mysql-table-from-sql-server1Update query on linked MySQL table from SQL Serverbirger2009-07-30T11:58:08Z2009-11-13T23:00:02Z
<p>I have a MS SQL Server with a linked MySQL server. I need to partially synchronize a table between the two servers. This is done in three steps and based on a condition:</p>
<ol>
<li><p>Delete all rows from the MySQL table that do not satisfy the condition</p></li>
<li><p>Insert all new rows in the MySQL table that satisfy the condition</p></li>
<li><p>Update all rows in the MySQL server that satisfy the condition and have different data between MySQL and SQL Server</p></li>
</ol>
<p>Steps 1 and 2 always run without a problem. But step 3 won't run if there is anything to update. The query fails with the following exception: <em>The rowset was using optimistic concurrency and the value of a column has been changed after the containing row was last fetched or resynchronized.].</em></p>
<p>This is the query that is executed:</p>
<pre><code> update mysqlserver...subscribers
set Firstname = Voornaam, Middlename = Tussenvoegsel, Surname = Achternaam, email = e-mail
from mysqlserver...subscribers as b, tblkandidaat where (b.kandidaatid = tblkandidaat.kandidaatid) and (tblkandidaat.kandidaatid in (
select subsc.kandidaatid
from mysqlserver...subscribers subsc inner join tblKandidaat on (subsc.kandidaatid=tblKandidaat.kandidaatid) where (subsc.list=1) and
((subsc.firstname COLLATE Latin1_General_CI_AI <> Voornaam or (subsc.middlename COLLATE Latin1_General_CI_AI <> Tussenvoegsel) or (subsc.surname COLLATE Latin1_General_CI_AI <> tblKandidaat.Achternaam) or (subsc.email COLLATE Latin1_General_CI_AI <> tblKandidaat.e-mail))
));
</code></pre>
<p>Anybody has an idea about how to prevent this?</p>
http://stackoverflow.com/questions/1728647/how-to-write-a-remote-datamodule-to-run-on-a-linux-server/1728983#17289831Answer by birger for How to write a Remote DataModule to run on a linux server?birger2009-11-13T12:37:25Z2009-11-13T12:37:25Z<p>You can do this with Lazarus and the wst (web service toolkit). We use it for some client / server projects. In Lazarus you can use (almost) 100% compatible Delphi code and you can compile to native apps for Windows, Linux and OSX. </p>
<p>Only problem is the learning curve , which is rather seep.</p>
http://stackoverflow.com/questions/1662108/how-do-i-make-the-lazarus-ide-look-and-work-like-delphi-2007-or-newer/1666233#16662332Answer by birger for How do I make the Lazarus IDE look and work like Delphi 2007 or newer?birger2009-11-03T09:31:42Z2009-11-03T09:31:42Z<p>There is no option to have the palette menu like Delphi 2007 in Lazarus. I think there is also a reason for this: the Lazarus developers are mostly 'hard core, oldschool' Delphi programmers, and this kind of programmers seems to prefer the Delphi 7 tools menu.</p>
http://stackoverflow.com/questions/1665458/recommended-books-tuts-useful-links-on-pascal-programming-language/1666217#16662170Answer by birger for Recommended books/tuts/useful links on pascal programming languagebirger2009-11-03T09:28:33Z2009-11-03T09:28:33Z<p>A lot of basic information with simple examples can be found on the <a href="http://www.delphibasics.co.uk/" rel="nofollow">DelphiBasics</a> website.</p>
http://stackoverflow.com/questions/1575487/ms-access-there-isnt-enough-memory-to-perform-this-operation/1578316#15783160Answer by birger for MS Access: There isn't enough memory to perform this operationbirger2009-10-16T14:14:07Z2009-10-16T14:14:07Z<p>I have encountered this problem many times and finally found a solution that worked. I don't know what causes the problem, but I do know how to solve it.</p>
<p>Usually the error occurs when you open a form. What you need to do is completely re-create that form. The easiest way to do so is to first export the form to a text file with the undocumented function Application.SaveAsText. Then you delete the form from your database and re-load it with Application.LoadFromText.</p>
http://stackoverflow.com/questions/1531894/devexpress-expressquantumtreelist-vs-virtual-treeview/1536980#15369800Answer by birger for Devexpress ExpressQuantumTreeList vs. Virtual Treeview ?birger2009-10-08T10:34:33Z2009-10-08T10:34:33Z<p>I would agree with skamradt. The DevExpress components are very good (if you buy them, you will also het all their custom edits (text, checkboxes, etc). However there is always a learning curve!</p>
http://stackoverflow.com/questions/1534099/has-any-one-tried-to-embed-webkit-on-a-delphi-app/1536972#15369720Answer by birger for Has any one tried to embed Webkit on a Delphi app?birger2009-10-08T10:33:22Z2009-10-08T10:33:22Z<p>I think there is an option to use WebKit in TopStyle (which is written in Delphi). So yes: it is possible!</p>
http://stackoverflow.com/questions/1257984/what-is-best-and-most-active-open-source-net-search-technology/1335227#13352270Answer by birger for What is best and most active open source .Net search technology?birger2009-08-26T14:43:47Z2009-08-26T14:43:47Z<p>If you don't really insist on .Net you can give Sphinx a try. Open source and available for all platforms (Windows / Linux).</p>
http://stackoverflow.com/questions/1221197/are-there-any-good-free-cheap-delphi-grid-controls/1221762#12217622Answer by birger for Are there any good free/cheap Delphi grid controls?birger2009-08-03T11:09:41Z2009-08-03T11:09:41Z<p>I also had some problems with the pricing of the DevExress Quantumgrid. However, if you are a serious Delphi developer and make a living out of it, I think the DevExpress controls are well worth the investment. DevExp also seems to have picked up Delphi development once again.</p>
http://stackoverflow.com/questions/1153471/how-can-i-import-a-database-schema-into-ms-access-2003-from-sql-text-file/1156074#11560740Answer by birger for How can I import a database schema into MS Access 2003 from sql text file?birger2009-07-20T21:32:28Z2009-07-20T21:32:28Z<p>I have been very succesful with reverse / forward engineering MS Access databases with <a href="http://www.datanamic.com" rel="nofollow">Dezign for Databases</a> by Datanamic. It reads all kinds of DDL scripts (from almost all available database) and can translate between different databases. There is a free trial available.</p>
http://stackoverflow.com/questions/1135609/vba-text-box-input-mask/1136349#11363490Answer by birger for VBA text box input maskbirger2009-07-16T09:09:14Z2009-07-16T09:09:14Z<p>Input masks in Access cannot be restricted to ranges of values, like with a RegExp. Only way to do this is use some validation (which can be done on a keypress if you want to).</p>
http://stackoverflow.com/questions/1130073/code-or-the-control-properties-which-is-better-in-ms-access/1131316#11313160Answer by birger for Code or the control properties, which is better in MS-ACCESS?birger2009-07-15T13:12:51Z2009-07-15T13:12:51Z<p>I have always used queries and hardly think of a reason not to do so. Except maybe if you want to add custom items (like 'empty') to the listbox or when speed is an issue. After all, there is absolutely no need to have a listbox with 10.000+ items in it. Custom events to fill the listbox are better in that case.</p>
http://stackoverflow.com/questions/1093475/search-for-field-references-within-a-microsoft-access-application/1095299#1095299-1Answer by birger for Search for field references within a Microsoft Access "application"birger2009-07-07T23:03:55Z2009-07-07T23:03:55Z<p>You can also do this without any external tools. MS Access has an option to show all references. You can do this by reight-clicking a table and choose the corresponding menu option.</p>
<p>However, some people have bad experiences with this option so the best thing to do might be to make a copy of the database and turn on the option there. (or just turn it off after you have the results you need).</p>
http://stackoverflow.com/questions/1091814/sending-a-binary-stream-through-soap/1092451#10924511Answer by birger for Sending a binary stream through SOAP.birger2009-07-07T13:48:05Z2009-07-07T13:48:05Z<p>What is the problem with a 5MB file in a soap message? I have written a document server that runs over soap and this server has no problem with large files.</p>
<p>If the size is a problem for you I would just compress and decompress the xml data. This can easily be done with one of the many (free) available components for compression of a TStream descendant.</p>
http://stackoverflow.com/questions/1067025/handheld-development-lazarus-or-turbo-delphi-net/1068075#10680751Answer by birger for Handheld Development, Lazarus or Turbo Delphi.Netbirger2009-07-01T09:00:17Z2009-07-01T09:00:17Z<p>If I would develop something for a handheld, I would create a webapplication. Only if you need to access the handheld data (pim, gps, ...) it makes sense to create a local running application.</p>
<p>But if you want to create something to run <em>on</em> the device, I would go for FPC / Lazarus as well. </p>
http://stackoverflow.com/questions/1062648/report-running-count-within-a-group/1063323#10633230Answer by birger for Report - Running Count within a Groupbirger2009-06-30T12:15:43Z2009-06-30T12:15:43Z<p>If probably use (detail) sections in your report (for the grouping). You can make a global integer for the running total value and have it reset every time the 'on layout' or 'on print' event of the header section fires.</p>
http://stackoverflow.com/questions/1033895/how-can-i-write-this-summing-query/1033945#10339450Answer by birger for How can I write this summing query?birger2009-06-23T17:20:00Z2009-06-23T17:20:00Z<p>If all the records have a sequnecing number (with no gaps in between) you can try the following: create a query where you link the table to itself. In the join, you spicify that you want to link the tables with Id = Id - 1. That way, you link each record to its previous record.</p>
<p>If ou do not have a column that can be used for this, try adding an autonumber column.</p>
<p>Other option is to write some simple lines in VBA to loop over the records and update the values. If it is a one-off operation, I think that will be the easiest if you are not very experienced with sql.</p>
http://stackoverflow.com/questions/1029430/delphi-mimicking-ms-onenotes-data-structure/1029643#10296432Answer by birger for Delphi: Mimicking MS OneNote's Data Structurebirger2009-06-22T22:06:11Z2009-06-22T22:06:11Z<p>I think it depends on how you want to save the data. If you plant to use a database for shared access, speed and large amounts of data: just normalize the data and create the structure you proposed.</p>
<p>If you want the user to save data locally on a filesystem, I do think that XML will be a good solution because it allows you to store the data in a structured file.</p>
<p>So... how do you want the user to store and use the data?</p>
http://stackoverflow.com/questions/1017791/where-to-start-oop-in-delphi-mainly-focusing-on-database-development/1017886#10178863Answer by birger for Where to start OOP in Delphi mainly focusing on database development?birger2009-06-19T13:09:56Z2009-06-19T13:09:56Z<p>If you really want to write your own object persistence framework, I highly recommend reading the documentation on the <a href="http://tiopf.sourceforge.net/" rel="nofollow">tiOPF</a> website. Especially the <a href="http://tiopf.sourceforge.net/Doc/Concepts/index.shtml" rel="nofollow">concepts manual</a>.</p>
<p>While you are reading this documentation you might also be interested in actually using tiOPF. It is a stable and robust persistence framework that can work with all major databases.</p>
http://stackoverflow.com/questions/1003258/what-technology-to-use-to-write-systray-front-end-to-webapp/1003504#10035040Answer by birger for What technology to use to write systray front-end to webapp?birger2009-06-16T19:26:40Z2009-06-16T19:26:40Z<p>I would go for FreePascal. It compiles natively to windows / mac / linux and because of this you do not depend on any other framework (.net, java, air) to be installed. Just one single executable and that's it.</p>
http://stackoverflow.com/questions/973076/linked-access-db-record-has-been-changed-by-another-user/975701#9757012Answer by birger for Linked Access DB "record has been changed by another user"birger2009-06-10T13:44:22Z2009-06-10T13:44:22Z<p>I have seen this behaviour before and this fixed it for me:</p>
<p>Try to add a TimeStamp field to the table (just add this field and update your linked tables. You do not need to fill this field with any kind of data).</p>
http://stackoverflow.com/questions/958088/frame-behavior-in-delphi-application-issue/959500#9595001Answer by birger for Frame behavior in Delphi application issuebirger2009-06-06T11:27:45Z2009-06-06T11:27:45Z<p>Maybe you can have a look at the DevExpress LAyoutControl? It helps us creating interfaces that always look good, no matter if we show or hide certain groups / panels. It even allows for run-time customization of the interface, if you want that!</p>
http://stackoverflow.com/questions/573215/archiving-text-messages-sms/955434#9554340Answer by birger for Archiving text messages (sms)birger2009-06-05T11:31:36Z2009-06-05T11:31:36Z<p>Maybe this app can help you: <a href="http://handheld.softpedia.com/get/System-Utilities/Enhancements/AllExport-9131.shtml" rel="nofollow">http://handheld.softpedia.com/get/System-Utilities/Enhancements/AllExport-9131.shtml</a></p>
http://stackoverflow.com/questions/954934/how-can-i-create-objects-with-reference-using-instantobjects-framework-programmat/955414#955414-1Answer by birger for How can I create objects with reference using instantobjects framework programmaticaly in Delphi codebirger2009-06-05T11:27:22Z2009-06-05T11:27:22Z<p>Does the CountrySelector has value other then nil?</p>
http://stackoverflow.com/questions/952830/full-text-search-with-firebird-and-delphi/954673#9546730Answer by birger for Full Text Search with Firebird and Delphi birger2009-06-05T07:34:28Z2009-06-05T07:34:28Z<p>I think you will have a problem with requirement 2: The index can be stored in the database or in the file system. Most indexing services create their own index file which stores data in a highly optimized way. If you really want it, maybe it is possible to load and save an index to a single blob field but I don't really see a reason for this.</p>
http://stackoverflow.com/questions/1781263/fluid-form-layout-in-delphi/1781299#1781299Comment by birger on Fluid Form Layout in Delphibirger2009-11-23T15:29:42Z2009-11-23T15:29:42Z+1 for (new) LayoutControl! You can also control its behaviour by code. If you hide a control, other controls will fill up the space. All our formas are always perfectly aligned by using this control.http://stackoverflow.com/questions/1728647/how-to-write-a-remote-datamodule-to-run-on-a-linux-server/1728983#1728983Comment by birger on How to write a Remote DataModule to run on a linux server?birger2009-11-13T15:40:39Z2009-11-13T15:40:39ZFreepascal has its own set of componentes. For example the wst I mentioned. It works very good and is under active development, but there is only little documentation.http://stackoverflow.com/questions/1172190/web-application-in-delphi/1172620#1172620Comment by birger on Web application in Delphibirger2009-07-24T10:00:30Z2009-07-24T10:00:30ZDo you have a link to more information about ShareIt using Delphi for their website?http://stackoverflow.com/questions/1017791/where-to-start-oop-in-delphi-mainly-focusing-on-database-development/1018869#1018869Comment by birger on Where to start OOP in Delphi mainly focusing on database development?birger2009-06-19T22:30:59Z2009-06-19T22:30:59ZYou mention that each list should contain code to manipulate.load.save data. That is wrong. The class model should have no idea about how it is connected to a database. Persistence should be taken care of by separate classes.
Also, creating datamodules wit lots of separate SQLQuery controls is not necessary. You create query objects when they are needed, dynamically creating SQL to perform certain tasks.
OO programing without data-aware controls is about 3 layers: GUI, model and persistence.http://stackoverflow.com/questions/958088/frame-behavior-in-delphi-application-issue/959500#959500Comment by birger on Frame behavior in Delphi application issuebirger2009-06-06T12:27:21Z2009-06-06T12:27:21ZThat is true. However, I think their components are worth the investment. A new version of the LayoutControl is coming up. This version will also support tabs. I'm really looking forward to this!http://stackoverflow.com/questions/926017/what-patterns-to-use-to-build-layers-for-delphi-win-32-application/926260#926260Comment by birger on What patterns to use to build layers for delphi win 32 applicationbirger2009-06-03T21:13:14Z2009-06-03T21:13:14ZYou use dbexpress to connect to a database. tiOPF can also connect to almost any database, but it won't use the dbExpress drivers. I think instead they use the ado drivers. We have used tiOPF to connect to ms sql, firebird and MySQL. So you probably will have no problems connecting to your own favorite dbms!http://stackoverflow.com/questions/929589/how-to-print-tpanel-contents/929643#929643Comment by birger on How to print TPanel contents?birger2009-05-31T15:09:26Z2009-05-31T15:09:26ZThanks for pointing it out to me. I changed my answer and added the function. Thanks Robert!http://stackoverflow.com/questions/906918/ms-access-how-can-i-find-out-where-tables-queries-macros-etc-are-used/907712#907712Comment by birger on MS Access: How can I find out where Tables, Queries, Macros etc. are used?birger2009-05-25T20:20:53Z2009-05-25T20:20:53ZTrue, but it is also easy to turn it off again. And then it is one of the easiest methods to get to the desired result.http://stackoverflow.com/questions/858915/storing-pdfs-in-ms-access-database-using-forms/862868#862868Comment by birger on Storing PDFs in MS Access Database using Formsbirger2009-05-14T15:22:06Z2009-05-14T15:22:06ZEnd please note: this is something else than storing an object in an OLE field, because theis method does not add the OLE wrappings to the file.http://stackoverflow.com/questions/858915/storing-pdfs-in-ms-access-database-using-forms/862868#862868Comment by birger on Storing PDFs in MS Access Database using Formsbirger2009-05-14T15:20:22Z2009-05-14T15:20:22ZA file is opened, and it is assigned a number (#1). imgByte is an array of bytes. The size of this array is set to the length of the file 1: LOF(1).
The GET function reads the file, and stores it into imgByte. At that point, imgByte is an array of bytes representing the image file.
The Bestand field value is then set to this array and voila: the file is stored in the field.http://stackoverflow.com/questions/212055/is-it-possible-to-deliver-cross-platform-binaries-of-freepascal-using-only-one-ho/621696#621696Comment by birger on Is it possible to deliver cross-platform binaries of FreePascal using only one host OS ?birger2009-04-23T05:42:30Z2009-04-23T05:42:30ZSorry, I forgot to reply. I e-mailed you.http://stackoverflow.com/questions/777125/how-to-get-the-property-type-name-for-custom-properties/777190#777190Comment by birger on How to get the property type name for custom properties?birger2009-04-22T13:35:39Z2009-04-22T13:35:39ZYes! Adding the M+ compiler directive fixed it for me. Thanks a lot.http://stackoverflow.com/questions/777125/how-to-get-the-property-type-name-for-custom-properties/777190#777190Comment by birger on How to get the property type name for custom properties?birger2009-04-22T13:26:21Z2009-04-22T13:26:21Ztoo bad... that doesn't fix it.http://stackoverflow.com/questions/689026/full-text-search-with-embedded-db-in-delphi/689165#689165Comment by birger on Full text search with embedded DB in Delphibirger2009-03-27T13:20:05Z2009-03-27T13:20:05Zah, true. I was thinking about simple word searches.http://stackoverflow.com/questions/589523/delphi-ide-treating-tframe-as-if-it-were-a-form/589654#589654Comment by birger on Delphi IDE treating TFrame as if it were a Formbirger2009-02-27T09:35:31Z2009-02-27T09:35:31ZI'm not sure, in the project where I had this problem, all frames start with 'inherited MyFrame: TMyFrame'. The first descendant from TFrame that we use does not have a dfm, so I can't check what should be in the dfm there.