User Holgerwa - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T16:31:50Zhttp://stackoverflow.com/feeds/user/5015http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1193619/how-to-access-a-vcl-control-from-another-php-script1How to access a VCL-Control from another PHP script?Holgerwa2009-07-28T11:56:18Z2009-12-18T11:01:35Z
<p>I have a Treeview on my main page. This makes the control a member of main page class.</p>
<p>How can I access this control from another PHP script?</p>
<p>A "require_once" with the main page file doesn't work, that re-creates the main page when the other script is called because of the commands at the bottom of each VCL-page's source.</p>
http://stackoverflow.com/questions/393646/delphi-for-php-location-of-source0Delphi for PHP - location of sourceHolgerwa2008-12-26T09:29:24Z2009-10-31T15:07:04Z
<p>I just installed Delphi for PHP to get an idea on how it works and have created a simple app with a button that puts a text into a listbox when it is clicked.
The app works if I copy all required files to my webserver and run it from there.
It also works if I save the project in the standard path:
"c:\documents and settings\username\My Documents\Delphi for PHP Projects"</p>
<p>But if I save the project in another directory, the ButtonClick event is not fired when the application runs from there. I've put a breakpoint in the event to see if it stops there but it doesn't.</p>
<p>The OnShow event of the form works as usual.</p>
<p>It really seems to be the path where the project is located to make it either work or not.
As I said, I have no experience with Delphi for PHP so far, it is probably just a simple solution that I don't see...</p>
http://stackoverflow.com/questions/1409407/how-to-remove-1-revision-of-a-folder-in-subversion1How to remove 1 revision of a folder in SubversionHolgerwa2009-09-11T07:06:52Z2009-10-21T18:39:50Z
<p>I have several projects in my repository, each project has it's own folder.
Is it possible to remove the last revision of one of the projects without changing anything else?</p>
<p>Example: Project A's latest version was committed creating rev. 50. Work on other projects goes on, the repository is now at rev. 60.</p>
<p>Now the user of A comes back and requests to remove the changes of the last version because they don't work out for him. He wants to go back to the previous version and all further changes should be done starting from there.</p>
<p>At this point I would like rev. 50 to disappear so that project A can go on as if rev. 50 never happened.</p>
<p>The only way I can see is to create a branch and from now on work on that branch. But that just creates many branches over time and the project's history gets cluttered.</p>
<p>What is a good solution for this scenario?</p>
http://stackoverflow.com/questions/1561062/is-installshield-the-only-way-to-go-for-delphi-installations/1564422#15644220Answer by Holgerwa for Is Installshield the only way to go for Delphi Installations?Holgerwa2009-10-14T05:34:27Z2009-10-14T05:34:27Z<p>I recommend <a href="http://www.deploymaster.com" rel="nofollow">DeployMaster</a> from JGSoft. Very easy to use and it has all the features I ever needed. It's not free, but well worth the money. Check it out.</p>
http://stackoverflow.com/questions/1319081/problem-with-updating-blob-if-blob-contains-specific-data2Problem with updating blob, if blob contains specific dataHolgerwa2009-08-23T17:34:46Z2009-08-28T05:29:58Z
<p>I have binary data that needs to be stored in a BLOB field in a SQL-database.
In case of an UPDATE (storing into the database), the binary data comes as a string (BDS2006, no unicode).
When the BLOB field is READ, the binary data needs to be returned as a string.
Therefore, I have used these two pieces of code (qry is a TQuery):</p>
<p>READ:</p>
<pre><code>var s: string;
begin
qry.SQL.Text := 'SELECT BlobField FROM Table WHERE ID=xxx';
qry.Open;
if qry.RecordCount > 0 then
begin
qry.First;
s := qry.FieldByName('BlobField').AsString;
end;
end;
</code></pre>
<p>UPDATE:</p>
<pre><code>var s: string;
begin
s := ...binary data...
qry.SQL.Text := 'UPDATE Table Set BlobField=:blobparam WHERE ID=xxx';
qry.ParamByName('blobparam').AsBlob = s;
qry.ExecSQL;
end;
</code></pre>
<p>I'm not sure if that's the right/good/ok way to do it, but it has worked fine for a couple of years.</p>
<p>Now there is a problem with a specific set of binary data, which after being UPDATE'd into the database and then READ from the database is changed/corrupted.
When comparing the param value before ExecSQL with the value of s after reading, the last byte of data (in this case 1519 bytes total), is changed from 02h to 00h.</p>
<p>Since I am not sure if my code works correctly, I have tried to use TBlobStream, to check if the results change.</p>
<p>READ:</p>
<pre><code>var s: string;
bs: TStream;
st: TStringStream;
begin
qry.SQL.Text := 'SELECT BlobField FROM Table WHERE ID=xxx';
qry.Open;
if qry.RecordCount > 0 then
begin
qry.First;
st := TStringStream.Create('');
bs := qry.CreateBlobStream(qry.FieldByName('BlobField'), bmRead);
bs.Position := 0;
st.CopyFrom(bs, bs.Size);
st.Position := 0;
s := st.ReadString(st.Size);
end;
end;
</code></pre>
<p>UPDATE:</p>
<pre><code>var s: string;
bs: TStream;
st: TStringStream;
begin
s := ...binary data...
st := TStringStream.Create(s);
st.Position := 0;
qry.SQL.Text := 'UPDATE Table Set BlobField=:blobparam WHERE ID=xxx';
qry.ParamByName('blobparam').LoadFromStream(st, ftBlob);
qry.ExecSQL;
end;
</code></pre>
<p>The result is the same, the last byte of the read data is corrupted.</p>
<p>What could be my problem?</p>
<p><hr /></p>
<p><strong>EDIT:</strong></p>
<p>Using only streams produces the same problem.</p>
<p>I found that this only happens if the data is exactly 1519 bytes. Then, and only then, the last byte is set to 0, no matter what it was before. Of course there might be other cases for the problem, but that's one that I can reproduce every time.</p>
<p>If I add one more byte to the end, making it 1520 bytes, everything works fine.
I just don't see anything special here that could cause it.</p>
http://stackoverflow.com/questions/1319081/problem-with-updating-blob-if-blob-contains-specific-data/1345180#13451800Answer by Holgerwa for Problem with updating blob, if blob contains specific dataHolgerwa2009-08-28T05:29:58Z2009-08-28T05:29:58Z<p>Thanks to all for your suggestions. They helped to narrow it down.
After all, the code was correct but there was a problem with the database itself in that particular situation.</p>
http://stackoverflow.com/questions/1193619/how-to-access-a-vcl-control-from-another-php-script/1320793#13207930Answer by Holgerwa for How to access a VCL-Control from another PHP script?Holgerwa2009-08-24T06:43:59Z2009-08-24T06:43:59Z<p>Unfortunately, I couldn't find a solution to this, so a major restructuring of the software could prevent the situation.</p>
http://stackoverflow.com/questions/1264705/are-default-program-icons-protected-by-copyright2Are default program icons protected by copyright?Holgerwa2009-08-12T07:25:56Z2009-08-12T11:03:24Z
<p>If you look at files in Windows Explorer, a DOC file has it's icon, a PDF, etc.
That is if the application is installed on the computer.</p>
<p>Are these icons copyright protected or can they be use in applications?</p>
<p>Reason is: I want to show a standard "Word Document" icon for a .doc file to the user, even if Word is not installed on the current computer.</p>
http://stackoverflow.com/questions/1246520/how-to-create-a-branch-of-an-old-revision-with-tortoisesvn1How to create a branch of an old revision with TortoiseSVN?Holgerwa2009-08-07T19:19:59Z2009-08-08T12:35:10Z
<p>I have a repository where in revision 1 the folders trunk, branches and tags were added.
The source was kept in trunk. Revision 7 happened, and development continued up to revision 16.
Now I have to continue to work on revision 7, so I want to create a branch off of revision 7.</p>
<p>Here is how I tried to do this: Using TortoiseSVN, I select trunk in the repository browser, open "Show log", select revision 7 and right-click "Create branch/tag from revision".
The Copy (Branch / Tag) dialog appears with FROM-URL set to trunk and I enter .../branches/new_branch_name as the To-URL.
"Specific revision in repository" is checked and set to 7.</p>
<p>Now I get an error saying "Path ...../trunk does not exist in revision 7".
But trunk was definitely created in revision 1 and if I look at the changed files of revision 7 in the "Show log" dialog, I can see that the files are added/modified in trunk.</p>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1246520/how-to-create-a-branch-of-an-old-revision-with-tortoisesvn/1248173#12481730Answer by Holgerwa for How to create a branch of an old revision with TortoiseSVN?Holgerwa2009-08-08T06:47:25Z2009-08-08T06:47:25Z<p>I found a solution:</p>
<ul>
<li>Check out old revision</li>
<li>from your working copy, create a branch</li>
</ul>
<p>It seems that this must be done using a working copy and not directly in the repository (browser).</p>
http://stackoverflow.com/questions/1243484/recommended-barcode-type/1243658#12436581Answer by Holgerwa for Recommended barcode type?Holgerwa2009-08-07T08:45:16Z2009-08-07T08:45:16Z<p>I would suggest Code 39, this way you can be sure that your barcodes are compatible with pretty much every existing device.</p>
http://stackoverflow.com/questions/1220961/what-is-a-correct-way-to-move-directories-with-tortoisesvn3What is a correct way to move directories with TortoiseSVN?Holgerwa2009-08-03T06:55:33Z2009-08-03T19:31:07Z
<p>If I move a directory to another place inside the same repository by dragging it to the new place in Tortoise, I cannot <strong>checkout revisions prior to the move</strong>, because the URL to these old revisions is not valid anymore.</p>
<p>How do you move a directory <strong>and</strong> still be able to access revisions before the move?</p>
<p><hr /></p>
<p><strong>Example</strong>:
If I move</p>
<pre><code>trunk/folder1/source
</code></pre>
<p>to</p>
<pre><code>trunk/folder2/source
</code></pre>
<p>then I can see the "source" folder now under folder2, and I can checkout the head revision, meaning the revision that produced the move.</p>
<p>However, if I try to checkout an older revision that was committed before the move, I get an error that the url doesn't exist.
I guess it's because the url of the older revision still points to the old path.</p>
<p>But there must be a way to fix this, otherwise a move would not make sense if you loose access to older revisions.</p>
http://stackoverflow.com/questions/1212508/how-to-decide-if-the-chosen-password-is-correct2How to decide if the chosen password is correct?Holgerwa2009-07-31T13:21:59Z2009-08-03T12:14:52Z
<p>If an encrypted file exists and someone wants to decrypt it, there are several methods do try.
For example, if you would chose a brute force attack, that's easy: just try all possible keys and you will find the correct one. For this question, it doesn't matter that this might take too long.
But trying keys means the following steps:</p>
<ol>
<li>Chose key</li>
<li>Decrypt data with key</li>
<li>Check if decryption was successful</li>
</ol>
<p>Besides the problem that you would need to know the algorithm that was used for the encryption, I cannot imagine how one would do #3.</p>
<p>Here is why: After decrypting the data, I get some "other" data. In case of an encrypted plain text file in a language that I can understand, I can now check if the result is a text in that langauge.
If it would be a known file type, I could check for specific file headers.</p>
<p>But since one tries to decrypt something secret, it is most likely unknown what kind of information there will be if correctly decrypted.</p>
<p>How would one check if a decryption result is correct if it is unknown what to look for?</p>
http://stackoverflow.com/questions/1206635/how-to-fix-path-problem-in-subversion1How to fix path-problem in SubversionHolgerwa2009-07-30T13:32:48Z2009-08-03T09:16:42Z
<p>I have a subversion repository that was used with VisualSVN before. Code was committed using https: urls.
Now the repository is used without VisualSVN, only with TortoiseSVN. The paths are now file://...</p>
<p>There are several projects with older revisions commited through https: and newer ones commited through file:.</p>
<p>When I check out a newer revision of the project "Project 1" (as an example), everything works. This revision was commited using file:.
Trying to check out an older revision that was committed using https:, I get an error message</p>
<blockquote>
<p>Error: URL 'file://...../Project%201'
does not exist</p>
</blockquote>
<p>Looks like the paths using https: where encoded like urls and cannot be accessed using file: protocol ?
What can I do to fix this and get my older revisions out of the repository?</p>
<p><strong>Edit:</strong> I tried to compare old revision versus new revision, and that works. The diff program can read both revisions, but checkout of the older revision is not possible.</p>
<p><strong>Edit 2:</strong> I was probably not very clear on my problem:
I need to check out older revisions, but get the above error message. Checking out newer revisions (of the same repository folder) works as usual.</p>
<p><hr /></p>
<p><strong>Edit 3:</strong> There is a different cause of the problem, please disregard the file: / https: topic. Sorry for the confusion.</p>
<p>I made some tests and could reproduce what is happening:</p>
<p>If I open the Repository Browser and move a folder to another location, I cannot access the revisions of that folder prior to the move anymore. Trying to checkout a revision prior to the move produces the above error message.</p>
<p>What can I do to get these pre-move revisions checked out?</p>
<p><hr /></p>
<p>I posted a new <a href="http://stackoverflow.com/questions/1220961/what-is-a-correct-way-to-move-directories-with-tortoise">question</a> about the problem I have after I found out that my assumptions on the cause were incorrect. Thanks to all for your answers!</p>
http://stackoverflow.com/questions/1206635/how-to-fix-path-problem-in-subversion/1221367#12213670Answer by Holgerwa for How to fix path-problem in SubversionHolgerwa2009-08-03T09:16:42Z2009-08-03T09:16:42Z<p>I found the solution in <a href="http://stackoverflow.com/questions/1220961/what-is-a-correct-way-to-move-directories-with-tortoisesvn">this post</a>.
Thanks for the answers.</p>
http://stackoverflow.com/questions/1220961/what-is-a-correct-way-to-move-directories-with-tortoisesvn/1221321#12213210Answer by Holgerwa for What is a correct way to move directories with TortoiseSVN?Holgerwa2009-08-03T09:02:10Z2009-08-03T09:02:10Z<p><strong>Problem was:</strong> I tried to checkout an old revision while looking at the tree of the head revision in the repository browser. In that view, I tried to checkout trunk/folder2/source of an older revision, which didn't exist in that older revision because of the move.</p>
<p><strong>Solution:</strong></p>
<ul>
<li>Check the log for the revision you need</li>
<li>switch the whole repository browser
to that revision</li>
<li>now you can see the folder you need
in it's original path, where it was
back in that revision</li>
<li>check out this folder</li>
</ul>
<p>Thanks to all for the hints, which led me into the right direction.</p>
http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1113569#11135697Answer by Holgerwa for Why Do You Use Delphi?Holgerwa2009-07-11T11:56:07Z2009-07-11T11:56:07Z<p>I use Delphi because</p>
<ul>
<li>Pascal is my favourite language</li>
<li>there was never anything I coulnd't do with Delphi</li>
<li>compile time beats all other languages I've seen so far</li>
<li>there is a very good community</li>
<li>3rd party components exist for everything one could wish for</li>
<li>it creates standalone apps with no dependencies</li>
</ul>
<p>and yes, Turbo Pascal nostalgia too, I proudly admit :)</p>
http://stackoverflow.com/questions/801941/how-to-maintain-slightly-different-software2How to maintain slightly different software?Holgerwa2009-04-29T11:33:21Z2009-04-30T09:02:19Z
<p>I have some projects that run on custom hardware.
Now the hardware has changed, which required some software changes.
Therefore, there is source A for "old hardware" and source B for "new hardware", which are 95% the same.</p>
<p>If a new feature is added in the future, it has to be done for both versions. In other words, A und B will exist side by side and from now on will always require the same changes.</p>
<p>I have just started to use Subversion, therefore I am not very familiar with all the possibilities.</p>
<p>As I understand, a new branch for B would separate both from that point on, which is not what I need.</p>
<p>What is the best way to maintain A and B so that future changes will apply to both versions without having to manually apply them twice?</p>
http://stackoverflow.com/questions/760950/how-to-do-a-select-in-a-select2How to do a Select in a SelectHolgerwa2009-04-17T15:42:33Z2009-04-17T16:24:49Z
<p>I have a table containing a unique ID field. Another field (REF) contains a reference to another dataset's ID field.
Now I have to select all datasets where REF points to a dataset that doesn't exist.</p>
<pre><code>SELECT * FROM table WHERE ("no dataset with ID=REF exists")
</code></pre>
<p>How can I do this?</p>
http://stackoverflow.com/questions/658249/what-do-you-do-with-delphi-for-php/658722#6587222Answer by Holgerwa for What do you do with Delphi for PHP?Holgerwa2009-03-18T15:19:09Z2009-03-18T15:19:09Z<p>Here is a forum with some interesting stuff:
<a href="http://forums.delphi-php.net/" rel="nofollow">http://forums.delphi-php.net/</a></p>
http://stackoverflow.com/questions/649704/compiler-hint-inline-function-has-not-been-expanded2Compiler Hint: "Inline function '...' has not been expanded..."Holgerwa2009-03-16T09:06:45Z2009-03-16T09:45:23Z
<p>In a unit I use the function DeleteFile and the compiler outputs a hint:</p>
<blockquote>
<p>"H2443 Inline function 'DeleteFile' has not been expanded because unit 'Windows' is not specified in USES list"</p>
</blockquote>
<p>In Uses there is SysUtils, which defines DeleteFile (although internally calling Windows.DeleteFile).</p>
<p>What does this hint mean? If I put Windows into the Uses clause, it's gone, but I would like to understand what it is that bothers the compiler.</p>
http://stackoverflow.com/questions/601674/why-does-execution-jump-to-the-end-of-a-proc-after-an-exception2Why does execution jump to the end of a proc after an exception?Holgerwa2009-03-02T08:57:41Z2009-03-03T02:03:21Z
<p>When an unhandled exception happens while debugging some code in any procedure/function/method, the debugger stops there and shows the message. </p>
<p>If I now continue debugging step by step, the execution jumps directly from the line that created the exception to the end of the current procedure (if there is no finally block).</p>
<p>Woulnd't it be just as good to continue with the next line of the current procedure? </p>
<p>Why jump to the end of the proc and continue with the calling procedure?
Is this just by design or is there a good reason for it?</p>
http://stackoverflow.com/questions/588102/what-is-the-best-way-to-call-a-procedure-delayed1What is the best way to call a procedure "delayed"?Holgerwa2009-02-25T21:58:36Z2009-02-26T21:39:48Z
<p>There are two procedures, A1 and A2, which both call function B in their code:</p>
<pre><code>function B: boolean;
begin
// do other stuff
end;
procedure A1;
begin
// do stuff
if b then
...
// do stuff
end;
procedure A2;
begin
// do stuff
if b then
A1; // <- how to call A1 "delayed"?
// do stuff
end;
</code></pre>
<p>If the condition in A2 is true, procedure A1 must be called, but that would happen while A2 is still running, which I don't want.</p>
<p>What should happen is:
If the condition in A2 is true, then A2 should be finished and after leaving A2 the procedure A1 should be called.</p>
<p>An ugly solution would be to set a timer that calls A1 after a delay that makes sure A2 is finished.</p>
<p>But there must be better ways, right?</p>
<p><strong>EDIT</strong>: A1 and A2 in my case are events, so they are not called by code and I cannot just call A1 from a calling procedure after A2 is finished.</p>
http://stackoverflow.com/questions/532350/tstringlist-as-field-of-object-does-not-work0TStringList as field of object does not workHolgerwa2009-02-10T13:37:59Z2009-02-10T14:47:56Z
<pre><code>uses Classes, SysUtils;
type
TMyObject = class (TObject)
private
Fsl: TStringList;
public
constructor Create;
destructor Destroy; override;
end;
implementation
constructor TMyObject.Create;
begin
Fsl := TStringList.Create;
end;
destructor TMyObject.Destroy;
begin
FreeAndNil (Fsl);
inherited;
end;
</code></pre>
<p>I get an access violation when the TStringList is created in the constructor. </p>
<p>This only happens if Fsl is declared as a field of TMyObject.
If it is for example a global var, everything works as usual.</p>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/527938/in-what-order-does-class-completion-put-its-results1In what order does Class Completion put its results?Holgerwa2009-02-09T12:25:23Z2009-02-09T22:54:18Z
<p>Example: I create a new unit, declare a class with several methods like constructor, destructor, method1, method2, method3 in that order and then hit Ctrl-Shift-C.
The IDE creates all the method bodies automatically, but the order is mixed up and not as it was declared in the interface section.</p>
<p>Now, this is not a problem, but is there a reason for it. It seems to be more difficult to mix that up than to just do it in the order of the declaration.</p>
<p>Or is there some rule to it that makes sense which I cannot see?</p>
http://stackoverflow.com/questions/489213/delphi-history-source-control0Delphi History - Source ControlHolgerwa2009-01-28T20:35:17Z2009-01-29T03:09:47Z
<p>After reading some posts here on the advantages of using source control for a single developer, it seems to me that the main advantage is that I will have backups of all changes to the source files.
Delphi has a built-in history function that does this by default.</p>
<p>Is this really the same or should I use a "real" source control tool instead?</p>
http://stackoverflow.com/questions/438414/delphi-file-types4Delphi file typesHolgerwa2009-01-13T09:18:49Z2009-01-14T10:48:38Z
<p>I am looking for a list of all file types that can be associated to a Delphi project (all versions of Delphi), more specifically all file types that should be under source control. </p>
<p><a href="http://delphi.wikia.com/wiki/Delphi_File_Extensions" rel="nofollow">This site</a> doesn't mention Delphi 2009 so I'm not sure if there may be new file types.</p>
<p>Is there maybe such a list directly from Codegear?</p>
<p><hr /></p>
<p>Putting all the answers together, here is a list:</p>
<p>Files -> Source Control</p>
<ul>
<li>.bdsgroup - Project Group</li>
<li>.bdsproj - Project</li>
<li>.bpg - Project Group</li>
<li>.cfg - Project Configuration</li>
<li>.dfm - Delphi Form</li>
<li>.dof - Project Options</li>
<li>.dpk - Package</li>
<li>.dpr - Project</li>
<li>.dproj - Project</li>
<li>.pas - Pascal File</li>
<li>.res - Resource File</li>
<li>.todo - IDE Todo</li>
</ul>
<p>I am not sure about these: Should they be included?</p>
<ul>
<li>.dem</li>
<li>.dro</li>
<li>.local </li>
</ul>
<p>Maybe there is anything still missing?</p>
http://stackoverflow.com/questions/198488/drag-drop-inside-an-application-and-to-another-application2Drag/Drop inside an Application AND to another ApplicationHolgerwa2008-10-13T18:17:09Z2008-12-24T16:27:26Z
<p>I have a ListView containing file names. These file names need to be draggable to a TreeView, which is a drag/drop inside the application and works with the built in drag/drop support of Delphi - no problem. But I must also be able to drag/drop the ListView items to another application, e.g. Windows Explorer. This also works, for example using a DragFileSource component of Anders Melander's Component Suite (<a href="http://melander.dk" rel="nofollow">http://melander.dk</a>) which start it's work in the ListView.MouseDown event, so there is not really a drag/drop operation initiated.</p>
<p>Basically, I would need the same behaviour as you can see in a Windows Explorer: You can drag an item to another folder inside the application and also to another application.</p>
<p>How can this be done in Delphi? I guess there should be a "drag" initiated, but when the mouse moves outside the app window, it needs to "switch" to the other functionality, and should the mouse move back to the app window, again back to the standard drag drop.</p>
<p>Thanks for any help!</p>
<p>Holger</p>
http://stackoverflow.com/questions/369903/where-are-all-the-delphi-developers/370542#3705421Answer by Holgerwa for Where are all the Delphi Developers?Holgerwa2008-12-16T05:45:49Z2008-12-16T05:45:49Z<p>Two more German forums:</p>
<p><a href="http://www.delphi-forum.de/" rel="nofollow">Delphi-Forum</a></p>
<p><a href="http://www.delphi-treff.de/" rel="nofollow">Delphi-Treff</a></p>
http://stackoverflow.com/questions/346492/why-werent-you-at-coderage-iii/346585#34658524Answer by Holgerwa for Why Weren't You at CodeRage III?Holgerwa2008-12-06T18:36:02Z2008-12-06T18:36:02Z<p>I think a lot of interested people couldn't spare the time to attend during working hours. The replays are what they will look for and I am sure there will be many times more downloads in the days after they come out than people acutally attending during the sessions.
We should judge the success of Coderage 2008 including these download numbers.</p>
http://stackoverflow.com/questions/1584760/what-to-do-when-delphi-dies/1584798#1584798Comment by Holgerwa on What to do when Delphi dies?Holgerwa2009-10-18T19:36:23Z2009-10-18T19:36:23ZIt seems the past 4 years have proven that your decision had no grounds. I don't think Delphi is any less popular than it was when you switched.http://stackoverflow.com/questions/1456641/are-there-any-open-source-word-processors-made-with-delphi/1456814#1456814Comment by Holgerwa on Are there any open source word processors made with Delphi?Holgerwa2009-09-22T06:12:36Z2009-09-22T06:12:36Z+1 for TRichView, great components and very good support from Sergey.http://stackoverflow.com/questions/1319081/problem-with-updating-blob-if-blob-contains-specific-data/1321923#1321923Comment by Holgerwa on Problem with updating blob, if blob contains specific dataHolgerwa2009-08-29T08:25:45Z2009-08-29T08:25:45ZThe problem was database related, thanks for all the suggestions that helped to get to the cause.http://stackoverflow.com/questions/1319081/problem-with-updating-blob-if-blob-contains-specific-dataComment by Holgerwa on Problem with updating blob, if blob contains specific dataHolgerwa2009-08-25T14:44:30Z2009-08-25T14:44:30ZPlease see Edit in question.http://stackoverflow.com/questions/1319081/problem-with-updating-blob-if-blob-contains-specific-data/1321923#1321923Comment by Holgerwa on Problem with updating blob, if blob contains specific dataHolgerwa2009-08-25T14:43:47Z2009-08-25T14:43:47ZPlease see Edit in question.http://stackoverflow.com/questions/1319081/problem-with-updating-blob-if-blob-contains-specific-dataComment by Holgerwa on Problem with updating blob, if blob contains specific dataHolgerwa2009-08-24T09:23:56Z2009-08-24T09:23:56ZIt's only Pascal strings and TParams, so there should not be a problem like this.
If the way I'm doing this is correct, there might be another cause. I'm just not sure if I do anything bad here that I'm just not aware of.http://stackoverflow.com/questions/1319081/problem-with-updating-blob-if-blob-contains-specific-dataComment by Holgerwa on Problem with updating blob, if blob contains specific dataHolgerwa2009-08-24T07:35:17Z2009-08-24T07:35:17ZSorry, no to the database server changes, too. It's an embedded database engine, which makes it just my executable to depend on.http://stackoverflow.com/questions/1319081/problem-with-updating-blob-if-blob-contains-specific-dataComment by Holgerwa on Problem with updating blob, if blob contains specific dataHolgerwa2009-08-24T07:33:53Z2009-08-24T07:33:53ZNo, I just take the executable that was running for some time, and feed it with that particular binary data, and it comes back from the database changed. I tried with several version that were done during the past years, all behave the same.
If it breaks with one set of data, it's generally broken. I am sure it's not the database itself, it should be something in my code, some of the conversions maybe. I just can't see it.http://stackoverflow.com/questions/1264705/are-default-program-icons-protected-by-copyright/1264729#1264729Comment by Holgerwa on Are default program icons protected by copyright?Holgerwa2009-08-12T07:53:05Z2009-08-12T07:53:05ZIt is not about typing code, but it is relevant for program design, so I think it belongs here.http://stackoverflow.com/questions/1246520/how-to-create-a-branch-of-an-old-revision-with-tortoisesvn/1248751#1248751Comment by Holgerwa on How to create a branch of an old revision with TortoiseSVN?Holgerwa2009-08-08T16:48:48Z2009-08-08T16:48:48ZThanks a lot, that is exactly what I need!http://stackoverflow.com/questions/1246520/how-to-create-a-branch-of-an-old-revision-with-tortoisesvnComment by Holgerwa on How to create a branch of an old revision with TortoiseSVN?Holgerwa2009-08-07T19:50:54Z2009-08-07T19:50:54Zyes, it does. Was also created back in revision 1.http://stackoverflow.com/questions/1220961/what-is-a-correct-way-to-move-directories-with-tortoisesvn/1224187#1224187Comment by Holgerwa on What is a correct way to move directories with TortoiseSVN?Holgerwa2009-08-05T05:32:35Z2009-08-05T05:32:35ZLooks interesting! But it doens't seem to be built into TortoiseSVN (yet).http://stackoverflow.com/questions/1220961/what-is-a-correct-way-to-move-directories-with-tortoisesvn/1221044#1221044Comment by Holgerwa on What is a correct way to move directories with TortoiseSVN?Holgerwa2009-08-03T07:34:15Z2009-08-03T07:34:15ZI added an example, please see above.http://stackoverflow.com/questions/1220961/what-is-a-correct-way-to-move-directories-with-tortoisesvn/1221005#1221005Comment by Holgerwa on What is a correct way to move directories with TortoiseSVN?Holgerwa2009-08-03T07:18:29Z2009-08-03T07:18:29Zplease see my comment to Soviut's answer.http://stackoverflow.com/questions/1220961/what-is-a-correct-way-to-move-directories-with-tortoisesvn/1220993#1220993Comment by Holgerwa on What is a correct way to move directories with TortoiseSVN?Holgerwa2009-08-03T07:17:53Z2009-08-03T07:17:53Zplease see my comment to Soviut's answer.