User Ralph Rickenbach - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T20:46:31Zhttp://stackoverflow.com/feeds/user/3724http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1881207/program-cannot-reconnect-to-firebird-after-abnormal-termination0Program cannot reconnect to Firebird after abnormal terminationRalph Rickenbach2009-12-10T14:07:52Z2009-12-10T14:29:36Z
<p>What can be done to prevent having to restart a PC after a program (C++Builder) terminated abnormaly without closing the database using firebird 2?</p>
<p>What I am looking for: I would like to be able to just restart the program without any other intervention. (I could have the user call a batch file executing some cleanup or add some lines of code to the program to disconnect everything.)</p>
http://stackoverflow.com/questions/1867644/force-cbuilder-to-close-a-database-session-even-if-aborted0Force C++Builder to close a database session even if abortedRalph Rickenbach2009-12-08T15:18:54Z2009-12-09T00:44:55Z
<p>Form1 connects to a database and keeps the connection in a published property Form1->DBSession.</p>
<p>In the project source I would like to make sure that this session is closed, even if the program is aborted throwing an exception (in a library).</p>
<p>My code includes the form using </p>
<pre><code>USEFORM("fForm1.cpp", Form1);
</code></pre>
<p>When writing this code in WinMain</p>
<pre><code>try {
Application->Initialize();
Application->CreateForm( __classid(TForm1), &Form1 );
Application->Run();
}
__finally
{ Form1->DBSession->Close(); }
</code></pre>
<p>the compiler does not compile as it does not know TForm1. I cannot include the header file as I need to use USEFORM and get a redeclaration error including.</p>
http://stackoverflow.com/questions/1860159/how-to-escape-the-sign-in-cs-printf/1860188#18601881Answer by Ralph Rickenbach for How to escape the % sign in C's printf?Ralph Rickenbach2009-12-07T14:07:08Z2009-12-07T14:07:08Z<p>The backslash in C is used to escape characters in strings. Strings would not recognize % as a special character, and therefore no escape would be necessary. Printf is another matter: use %% to print one %.</p>
http://stackoverflow.com/questions/52290/templates-of-technical-and-functional-specs/52446#524461Answer by Ralph Rickenbach for Templates of Technical and Functional SpecsRalph Rickenbach2008-09-09T17:45:16Z2009-12-01T04:26:28Z<p>I would suggest to have a look at the Roberston's Volere template <a href="http://systemsguild.com/GuildSite/Robs/Template.html" rel="nofollow">here</a>. They are part of the Atlantic Systems Guild, together with people like Tom DeMarco and Timothy Lister of "Peopleware" fame.</p>
http://stackoverflow.com/questions/1790131/ressources-for-intraweb-vcl-for-the-web3Ressources for IntraWeb / VCL for the WebRalph Rickenbach2009-11-24T13:39:02Z2009-11-25T20:26:29Z
<p>I am aware of the news groups at atozed.intraweb.* as well as the <a href="http://www.atozed.com/intraweb/docs/" rel="nofollow">online manual</a> and <a href="http://downloads.atozed.com/intraweb/IntrawebManual.pdf" rel="nofollow">pdf manual</a>, <a href="http://www.bobswart.nl/Weblog/Blog.aspx?RootId=5:2160" rel="nofollow">Bob Swart's IntraWeb book</a>, and the <a href="http://research.pdmagic.com/iw/html/" rel="nofollow">spellbook</a>.</p>
<p>Some of these resources are outdated, some are rather minimalistic. Are there other sources available?</p>
<p>This seems to be even more prevailing as the <a href="http://www.atozed.com/IntraWeb/Blog/20080903.DE.aspx" rel="nofollow">chat room</a> is not available any longer due to lack of public chats in the newest Skype version. (I do not know how the quality of help in the chat room was, though.)</p>
http://stackoverflow.com/questions/1789997/focus-an-intraweb-iwtreeview-on-a-selected-item0Focus an IntraWeb IWTreeView on a selected itemRalph Rickenbach2009-11-24T13:17:33Z2009-11-24T16:47:51Z
<p>I have a rather lengthy tree view (IWTreeView) in a IWRegion (ClipRegion:= True) with one
node selected. How do I focus that node such that it is visible for the user
after a render? The </p>
<p>What I do so far:</p>
<p>In Delphi</p>
<pre><code>tree.Selected:= itemToFocus;
tree.ScrollToName:= tree.Selected.Name;
</code></pre>
<p>This generates this on my website (done by IWTreeView.pas by Atozed):</p>
<pre><code><script language="javascript">
...
function initialize {
...
positionNAVIGATORTree( "i2" );
}
</script>
...
<script language="javascript">
function positionNAVIGATORTree( iNodeID )
{
FindElem( "NAVIGATOR").scrollTop =
FindElem( iNodeID ).offsetTop - 40;
return true;
}
</script>
</code></pre>
<p>Still the tree after a render will show the topmost item. This is true for all browsers I have tested (IE8, Firefox, Chrome).</p>
http://stackoverflow.com/questions/1613199/can-intraweb-forms-be-synchronized-on-demand1Can IntraWeb forms be synchronized on demand?Ralph Rickenbach2009-10-23T12:45:35Z2009-10-31T21:22:14Z
<p>Scenario: I have a Delphi Intraweb application that has some edit components and buttons on a screen. In the TIWEdit.OnAsyncExit and TIWButton.OnClick a flag is set, and another thread in the application sets the enabled properties of the buttons depending on the flags and some other application data. </p>
<p>By the time the TIWButton.Enabled properties are set, the request has already finished and the next interaction is cancelled as IW finds out that internal representation and HTML form are out of sync. It resynchonizes and you have to click again.</p>
<p>I would like to refresh the screen somehow on demand. </p>
<ul>
<li>A timer that finds out whether the two are synchronized and issues a refresh has drawbacks in traffic and timing (I can click a button before a timer run).</li>
<li>A method that could push data would be great.</li>
<li>Maybe IW has a possibility to do an non-save sync without cancelling the action I just committed.</li>
</ul>
<p>As my screens are built model driven (I cannot predict what components will be on the screen and what the interdependencies between components are, that is in the business logic), I cannot add JavaScript to enable or disable a button depending on user actions.</p>
http://stackoverflow.com/questions/1642510/loading-bde-bpl-from-another-directory0Loading BDE BPL from another directoryRalph Rickenbach2009-10-29T09:26:53Z2009-10-29T10:36:49Z
<p>Using Delphi 2010 and a patched version of the BDE I run into a problem loading the BDERTL140.bpl.</p>
<p>Loading DCLBDE140.bpl from another directory then usual works fine. Only when I want to load the BDERTL140.bpl, it always tells me that it has been loaded already from the Windows system directory.</p>
<p>Which packages load the BDERTL140.pbl, and how could I have them load my patched version instead of the original? I would hate to resort to overwriting the original.</p>
http://stackoverflow.com/questions/1630766/which-third-party-components-have-you-installed-into-delphi-and-why/1630849#16308491Answer by Ralph Rickenbach for Which Third Party Components Have You Installed Into Delphi And Why?Ralph Rickenbach2009-10-27T13:37:48Z2009-10-27T13:37:48Z<p>Have a good look at <a href="http://www.dataabstract.com/" rel="nofollow">RemObjects DataAbstract</a>. It adds great database independence and interoperability and a good business logic layer.</p>
http://stackoverflow.com/questions/1470621/regular-expression-problem-match-in-context/1477011#14770111Answer by Ralph Rickenbach for Regular Expression Problem: Match in ContextRalph Rickenbach2009-09-25T12:26:09Z2009-09-25T12:26:09Z<p>I know this is not PCRE, but a good alternative for software archeology.</p>
<p>You could at any time use AWK, if you do this from a command prompt. The script would look like this:</p>
<pre><code>BEGIN { inObj = 0; } // Not really necessary
/TMyButton/ { inObj = 1; }
/end$/ { inObj = 0; }
/^[ ]{4,}Color = [A-Za-z0-9]+\r\n/ && inObj == 1
{ //do whatever you need to do
print $3;
}
</code></pre>
<p>AWK can be found all over the internet. I would try <a href="http://gnuwin32.sourceforge.net/packages/gawk.htm" rel="nofollow">GAWK</a>.</p>
http://stackoverflow.com/questions/1465931/delphi-chinese-symbols-when-loading-text/1466041#14660413Answer by Ralph Rickenbach for [Delphi] Chinese Symbols When Loading TextRalph Rickenbach2009-09-23T13:34:24Z2009-09-23T14:00:52Z<p><strong>Edit</strong> Revising my answer due to the comments on question, especially the hint to Delphi 7.</p>
<p>Richedit is based on richedit.dll, which comes from MS and is packaged with Windows. After Windows ME, it is UNICODE enabled. Thus it gets the character set interpreting the first 2 characters of the file as BOF. There are instances that characters will be missinterpreted and taken as a BOF in ASCII or ANSI files (they will not feature a BOF for compatibility reasons). This can be seen in write.exe too.</p>
<p>Make sure you use the right encoding when saving the file in notepad. If the file does not have an encoding (look at the first two bytes in a binary viewer), try - if possible - to add two spaces to the front and see whether the problem persists.</p>
<p><strong>Delphi 2009 and 2010</strong></p>
<p>I will leave my first answer in to help people when upgrading to Delphi 2009 and up:</p>
<p>I would actually say that the text file does not have an encoding but is pure ASCII or ANSI and you are using Delphi 2009 or 2010, which is UNICODE enabled. The first two characters will be taken as BOF (which tells the program which UNICODE encoding is used). If this happens to be a correct BOF, maybe the wrong encoding will be applied.</p>
<p>TMemoryStream does not allow enforcement of encoding.</p>
<p>If possible you can use TStrings, that has a new TEncoding parameter in the LoadFromFile method. This would be like</p>
<pre><code> RichEdit1.Lines.LoadFromFile('c:\test.txt', TEncoding.ASCII);
</code></pre>
<p>Have a look at this page as well: <a href="http://edn.embarcadero.com/article/38693" rel="nofollow">http://edn.embarcadero.com/article/38693</a></p>
http://stackoverflow.com/questions/1465542/cant-delete-a-folder-using-deletefile-command/1465825#14658253Answer by Ralph Rickenbach for cant delete a folder using deletefile commandRalph Rickenbach2009-09-23T12:58:57Z2009-09-23T12:58:57Z<p>You can use the shell functions. According to <a href="http://delphi.about.com/cs/adptips1999/a/bltip1199%5F2.htm" rel="nofollow">delphi.about.com</a>, this will delete nonempty folders even if they contain subfolders:</p>
<pre><code>uses ShellAPI;
Function DelTree(DirName : string): Boolean;
var
SHFileOpStruct : TSHFileOpStruct;
DirBuf : array [0..255] of char;
begin
try
Fillchar(SHFileOpStruct,Sizeof(SHFileOpStruct),0) ;
FillChar(DirBuf, Sizeof(DirBuf), 0 ) ;
StrPCopy(DirBuf, DirName) ;
with SHFileOpStruct do begin
Wnd := 0;
pFrom := @DirBuf;
wFunc := FO_DELETE;
fFlags := FOF_ALLOWUNDO;
fFlags := fFlags or FOF_NOCONFIRMATION;
fFlags := fFlags or FOF_SILENT;
end;
Result := (SHFileOperation(SHFileOpStruct) = 0) ;
except
Result := False;
end;
end;
</code></pre>
http://stackoverflow.com/questions/1465585/what-is-the-fastest-case-sensitive-string-comparision-in-mysql/1465677#14656770Answer by Ralph Rickenbach for What is the fastest case sensitive string comparision in MySQL?Ralph Rickenbach2009-09-23T12:26:16Z2009-09-23T12:26:16Z<p>You could create your tables using certain character sets and collations (f.e. latin1_bin) that are case sensitive. Just look at the create table syntax. in this case the = operator should be as fast as on standard settings (like f.e. latin1 and latin1_swedish_ci).</p>
http://stackoverflow.com/questions/1464778/delphi-frames-vs-forms-what-for-multi-document-interface/1465044#14650444Answer by Ralph Rickenbach for Delphi, frames vs forms. What for multi-document interface?Ralph Rickenbach2009-09-23T09:54:48Z2009-09-23T09:54:48Z<p>Maybe you will find some answers in this thread: <a href="http://stackoverflow.com/questions/1277256/gui-design-multiple-forms-vs-simulated-mdi-tabs-vs-pagecontrol">gui-design-multiple-forms-vs-simulated-mdi-tabs-vs-pagecontrol</a></p>
http://stackoverflow.com/questions/1459932/storing-long-text/1459982#14599820Answer by Ralph Rickenbach for storing long textRalph Rickenbach2009-09-22T13:04:14Z2009-09-22T13:42:05Z<p>I would propose storing the first chapter as pdf file. This is secure and allows for good formatting. Then use a blob, clob, varchar, or text field depending on your product (see the other answers).</p>
<p>Or you could use images and look into something like amazone's "look inside". It would work with the same db techniques.</p>
<p>Alternatively you could use something like markup.</p>
<p>I personally do not like to put html in my database. Even if it is only for output. Too easy to put in some javascript. But maybe I'm just too cautious.</p>
http://stackoverflow.com/questions/1459070/showing-mdi-form-as-modal/1459142#14591422Answer by Ralph Rickenbach for Showing MDI form as modalRalph Rickenbach2009-09-22T09:53:40Z2009-09-22T09:53:40Z<p>For your first problem: Add another constructor, for example CreateAsMDI, like this:</p>
<pre><code>constructor TModalAndMDIForm.CreateAsMDI(AOwner: TComponent);
begin
f_blChild := true;
GlobalNameSpace.BeginWrite;
try
inherited CreateNew(AOwner);
if(not(csDesigning in ComponentState)) then begin
Include(FFormState, fsCreating);
try
FormStyle := fsMDIChild;
if(not(InitInheritedComponent(self, TForm))) then
raise Exception.CreateFmt('Can't create %s as MDI child', [ClassName]);
finally
Exclude(FFormState, fsCreating);
end;
end;
finally
GlobalNameSpace.EndWrite;
end;
end;
</code></pre>
<p>In the normal constructor just set the variable f_blChild to false and call the inherited create.</p>
<p>You need two more things, rather self explaining:</p>
<pre><code>procedure TModalAndMDIForm.Loaded;
begin
inherited;
if(f_blChild) then
Position := poDefault
else begin
Position := poOwnerFormCenter;
BorderStyle := bsDialog;
end;
end;
//-----------------------------------------------------------------------------
procedure TModalAndMDIForm.DoClose(var Action: TCloseAction);
begin
if(f_blChild) then
Action := caFree;
inherited DoClose(Action);
end;
</code></pre>
<p>Now you can call the form modal, if created with the standard constructor, and as MDI child, if created with CreateAsMDI.</p>
<p>If you include this in your form's declaration</p>
<pre><code>property IsChild: boolean read f_blChild;
</code></pre>
<p>you can even do things depending on whether the form is an MDI child or not, just interrogating the isChild property.</p>
<p>As for your second problem: do not use Application.CreateForm, but create your form yourself:</p>
<p>Here the two creations for modal and MDI:</p>
<pre><code>//Modal
frmDialog := TMyForm.Create(self);
// Your Code
frmDialog.ShowModal;
frmDialog.Release;
//MDI-Child
frmDialog := TMyForm.CreateChild(self);
// Your code
frmDialog.Show;
</code></pre>
<p>I have translated this answer form an article on the site <a href="http://www.delphipraxis.net/topic73059.html" rel="nofollow">DelphiPraxis</a>.</p>
http://stackoverflow.com/questions/1442886/deleting-iwtreeviewitems-causes-exception-on-form-release0Deleting IWTreeViewItems causes exception on form releaseRalph Rickenbach2009-09-18T06:38:35Z2009-09-18T12:23:36Z
<p>On my form I have a IWTreeView and two buttons. One button deletes some IWTreeViewItems, the other releases the form:</p>
<pre><code>procedure TIWForm1.IWButton1Click(Sender: TObject);
begin
IWTreeView1.Items[0].Subitems.Clear;
end;
procedure TIWForm1.IWButton2Click(Sender: TObject);
begin
Release;
end;
</code></pre>
<p>Releasing the form after deleting the IWTreeViewItems causes an exception:</p>
<blockquote>
<p>Error message raised by the
application: Access violation at
address 004E0D8A in module
'TryTree.exe'. Read of address
00000000</p>
</blockquote>
<p>When there is another form active and the application is not terminated by this form release, the error message is:</p>
<blockquote>
<p>Error message raised by the
application: List index out of
bounds (-1)</p>
</blockquote>
<p>Using IntraWeb 9.0.42 (because of TMS controls and Delphi 2006, as TMS has not tested with 10.0.17 and delphi 2006).</p>
<p>I tried to IWTreeView1.ClearAll in the form destroy, which did not help at all.</p>
http://stackoverflow.com/questions/1442886/deleting-iwtreeviewitems-causes-exception-on-form-release/1444237#14442370Answer by Ralph Rickenbach for Deleting IWTreeViewItems causes exception on form releaseRalph Rickenbach2009-09-18T12:23:36Z2009-09-18T12:23:36Z<p>Instead of SubItems.Clear I now use</p>
<pre><code>for i := IWTreeView1.Items[0].SubItems.Count-1 downto 0 do begin
TIWTreeViewItem(IWTreeView1.Items[0].SubItems[i]).Free;
end;
</code></pre>
<p>This works. Still open for better solutions, maybe not involving a loop through all subitems.</p>
http://stackoverflow.com/questions/1361629/how-do-i-read-the-filenames-inside-the-directory-to-an-array/1361638#13616381Answer by Ralph Rickenbach for how do i read the filenames inside the directory to an arrayRalph Rickenbach2009-09-01T10:10:16Z2009-09-01T10:10:16Z<p>This is some code to read the files in a directory:</p>
<pre><code>DirectoryInfo di = new DirectoryInfo("c:/root1");
FileInfo[] rgFiles = di.GetFiles("*.*");
foreach(FileInfo fi in rgFiles)
{
Response.Write("<br><a href=" + fi.Name + ">" + fi.Name + "</a>");
}
</code></pre>
<p>FileInfo is a string array containing all files.</p>
http://stackoverflow.com/questions/1356132/how-do-operators-work/1356164#13561640Answer by Ralph Rickenbach for How do operators work?Ralph Rickenbach2009-08-31T07:00:22Z2009-08-31T07:00:22Z<p>Operators work a lot like functions with parameters. Or, in modern object oriented languages, like methods on an object with a parameter. You can see this wunderfully if you look at the method overloading techniques in C++ for example. So the numerical + operator is - in a kind of pseudocode - something like this:</p>
<pre><code>function integer.+(b: integer) {
return ADD self, b;
}
</code></pre>
<p>The rest is syntactical sugar. </p>
<p>Did you ever have an HP calculator with postfix notation? Think of it in these terms. So the compiler will translate a+b to (+ a b) or object oriented to a.+(b).</p>
<p>The compiler derives from the two operands the type of the operation (addition, concatination), proofs type compatibility (add integer to float ok, concat integer and string depends on the language).</p>
<p>It then converts the code to the internal representation and to machine code.</p>
http://stackoverflow.com/questions/1334633/tiwmenu-and-tiwregion-hides-submenus1TIWMenu and TIWRegion hides SubmenusRalph Rickenbach2009-08-26T13:19:54Z2009-08-27T13:24:28Z
<p>When I put a TIWMenu and a TIWRegion on a TIWAppForm with </p>
<pre><code>IWMenu.align := alTop;
IWRegion.align := alClient;
</code></pre>
<p>the submenu of IWMenu is hidden behind the region. That means, when I click on File, a submenu should come up with Open, Save, Save As ..., and it does, but I only see the upper border as the rest shows up behind the IWRegion.</p>
<p>I tried to change the z-order, but it does not help. Neither does setting the IWRegion.ClipRegion := False;</p>
<p>Does anybody have a clue what I do wrong?</p>
<p>I am using Delphi BDS4/2006 with IntraWeb 9.0.42, Windows Vista x64, and Firefox 3.5, IE8, and IE Tab in Firefox. </p>
<p>I drop the two components on the form, connect the main menu to IWMenu, and there the problem is.</p>
http://stackoverflow.com/questions/1334633/tiwmenu-and-tiwregion-hides-submenus/1341077#13410770Answer by Ralph Rickenbach for TIWMenu and TIWRegion hides SubmenusRalph Rickenbach2009-08-27T13:24:28Z2009-08-27T13:24:28Z<p>The problem was with the ServerController that used a style sheet. This prevented the z-index from being set by the application and therefore the z-order was wrong for the TIWMenu component.</p>
<p>Removing the style sheet resolved the problem. The style sheet had some IDs conflicting with IW.</p>
http://stackoverflow.com/questions/1294720/whats-the-difference-between-backtracking-and-depth-first-search/1294749#12947491Answer by Ralph Rickenbach for What's the difference between backtracking and depth first search?Ralph Rickenbach2009-08-18T15:45:14Z2009-08-18T15:45:14Z<p>Depth first is an algorithm for traversing or searching a tree. See <a href="http://en.wikipedia.org/wiki/Depth-first%5Fsearch" rel="nofollow">here</a>. Backtracking is a much more broad term that is used whereever a solution candidate is formed and later discarded by backtracking to a former state. See <a href="http://en.wikipedia.org/wiki/Backtracking" rel="nofollow">here</a>. Depth first search uses backtracking to search a branch first (solution candidate) and if not successful search the other branch(es).</p>
http://stackoverflow.com/questions/1277565/cmd-exe-command-line-string-limits/1277666#12776663Answer by Ralph Rickenbach for cmd.exe command line string limitsRalph Rickenbach2009-08-14T12:46:46Z2009-08-14T12:46:46Z<p>You could use <strong>subst</strong> to name the two subdirectories your working from with drive letters. Obviously the are not real, but logical drives then, but you could substantially shorten the paths.</p>
<pre><code>LASTDRIVE=Z
SUBST S: c:\this is a very long path name\source
SUBST T: d:\this is a very long path name\Target
#do whatever you need to, like
copy s:\filename T:\filename
SUBST S: /D
SUBST T: /D
</code></pre>
<p>The /D parameter frees the association.</p>
http://stackoverflow.com/questions/1276998/proof-of-concept/1277029#12770292Answer by Ralph Rickenbach for Proof of ConceptRalph Rickenbach2009-08-14T09:59:29Z2009-08-14T11:30:32Z<p>It depends. Do you have to proof that the problem can be solved within your product? Then use the same products to build it.</p>
<p>Otherwise, what is the risk of your Boss cancelling the project when he finds out that you used another framework? Does he believe you that it will really proof the thing can be implemented?</p>
<p>Will he fall for the user interface, or can he abstract it and look at the underlying problem?</p>
<p>Will he appreciate the time gained or is time no problem?</p>
<p>I would let him decide. He is the one paying for it.</p>
<p><strong>Edit</strong> to react to comments: I hope that this thread would give a nice set of arguments to come to your boss with a well prepared suggestion, with risk analysis and all. Then, let him decide. If he is the kind of person that does not like to decide, do it for him then gently.</p>
http://stackoverflow.com/questions/1277256/gui-design-multiple-forms-vs-simulated-mdi-tabs-vs-pagecontrol/1277315#12773155Answer by Ralph Rickenbach for GUI Design - Multiple forms vs Simulated MDI (Tabs) vs PageControlRalph Rickenbach2009-08-14T11:11:48Z2009-08-14T11:24:27Z<p>From a programmers point of view, the PageControl solution quickly gets out of hand. Possibly too much code and certainly to many components on one form. (Originally this question was tagged Delphi, so I go from there.)</p>
<p>From a users point of view, the "opens new window" paradigm often is confusing. We people tend to think that we are able to multitask and handle many open windows and tasks, but we are not (we task switch at a loss of time like computers and add loss of accuracy).</p>
<p>Obviously this really depends on the type of application. But I would tend to a paradigm as Chrome and Firefox show in their latest incarnations: </p>
<ul>
<li>keep the various forms in different tabs</li>
<li>let the user detach a tab into its own form (dock and undock via drag%drop)</li>
<li>add a good way of navigation</li>
</ul>
<p>I implement something like an SDI as main screen of an application too. Look at something like "outlook style". Navigation, list of objects, object details in different panes, some additional panes like a cockpit. And then open a new window/form for certain tasks (some modal, some non modal), but short lived. After the email is written, it is sent and closes the window. But I have, if I am capable of doing so, the possibility to work on multiple emails at the time.</p>
<p>Look at the problem. If it has dashboard character, take "outlook style" or so. If the users are a wide spread, heterogeneous, non computer savvy crowd, use SDI or forms on tabs. If you write for programmers, you might go for multiple forms, just because we tend to think that we can handle it. And it works for multiple screens (hopefully).</p>
http://stackoverflow.com/questions/1272178/how-can-i-get-the-icon-to-display-for-a-file-from-a-java-app/1272227#12722275Answer by Ralph Rickenbach for How can I get the icon to display for a file from a Java app?Ralph Rickenbach2009-08-13T14:15:29Z2009-08-13T14:27:08Z<p>There is some example <a href="http://blog.codebeach.com/2008/02/get-file-type-icon-with-java.html" rel="nofollow">here</a>. The relevant code would be:</p>
<pre><code>FileSystemView view = FileSystemView.getFileSystemView();
Icon icon = view.getSystemIcon(file);
</code></pre>
<p><strong>Edit</strong> (included comment) The official help page is <a href="http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/filechooser/FileSystemView.html#getSystemIcon%28java.io.File" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1272028/delphi-and-i18n/1272128#12721281Answer by Ralph Rickenbach for Delphi and i18nRalph Rickenbach2009-08-13T13:56:55Z2009-08-13T13:56:55Z<p>I have been using the <a href="http://www.sicomponents.com/" rel="nofollow">SiComponents</a> before. They allow you to change all text independently from the executable. You can embed the diferent languages in your executable (not recomended) or load them from files. There is also an editor to support translation. They are very good, stable, and fast.</p>
<p>In Delphi 2006 under Tools, Options, Translation Tools Options you can configure the translation tools, especially theTranslation Repository. It can be found under View, Translation Manager. All translated strings will be ressource strings and can be stored in language specific dll. Searching the help for Translation Manager will point you in the right direction.</p>
http://stackoverflow.com/questions/1270963/need-same-logic-in-windows-as-been-done-by-sed-below/1270982#12709820Answer by Ralph Rickenbach for need same logic in windows as been done by SED belowRalph Rickenbach2009-08-13T09:30:12Z2009-08-13T11:30:50Z<p>There is no feature in DOS to do so out of the box, but you can always use one of the many ports of sed for windows, like <a href="http://gnuwin32.sourceforge.net/packages/sed.htm" rel="nofollow">this one</a>.</p>
<p><strong>Edit</strong> answer to comment: As DOS batchfiles only execute DOS commands (either internal commands of CMD or programs), you cannot without adding a tool like sed.</p>
<p><strong>Edit</strong> "Can't we use CMD": No, not under DOS - CMD does not have a feature that reads through files and manipulates them. You either have to use an existing program like sed or awk or write one yourself. Sorry. Even Unix/Linux does not have a built in feature, but they package sed and awk as programs out of the box. This just is not the case for DOS.</p>
<p>Obviously, Windows added expansions to do things like this using environment variables (hats off to Johannes Rössel). My DOS know how obviously has grown old with me.</p>
http://stackoverflow.com/questions/1269736/how-to-select-and-move-multiple-controls-at-runtime/1270943#12709432Answer by Ralph Rickenbach for How to select and move multiple controls at runtimeRalph Rickenbach2009-08-13T09:20:46Z2009-08-13T09:20:46Z<p>Another comercial solution would be from DevExpress: <a href="http://www.devexpress.com/Products/VCL/ExLayoutControl/" rel="nofollow">LayoutControl</a>. It allows for drag and drop, grouping, full rearrange, hiding and adding of components at runtime.</p>
http://stackoverflow.com/questions/1881237/easiest-way-to-extract-the-urls-from-an-html-page-using-sed-or-awk-only/1881354#1881354Comment by Ralph Rickenbach on Easiest way to extract the urls from an html page using sed or awk only.Ralph Rickenbach2009-12-10T14:41:05Z2009-12-10T14:41:05ZAnd it does not work for '<a href="<a href="http://aktuell.de.selfhtml.org/"" rel="nofollow">aktuell.de.selfhtml.org/"</a>; target="_blank">SELFHTML aktuell</a>'http://stackoverflow.com/questions/1881237/easiest-way-to-extract-the-urls-from-an-html-page-using-sed-or-awk-only/1881325#1881325Comment by Ralph Rickenbach on Easiest way to extract the urls from an html page using sed or awk only.Ralph Rickenbach2009-12-10T14:40:33Z2009-12-10T14:40:33ZDoes this work for '<a href="<a href="http://aktuell.de.selfhtml.org/"" rel="nofollow">aktuell.de.selfhtml.org/"</a>; target="_blank">SELFHTML aktuell</a>'http://stackoverflow.com/questions/1881237/easiest-way-to-extract-the-urls-from-an-html-page-using-sed-or-awk-only/1881354#1881354Comment by Ralph Rickenbach on Easiest way to extract the urls from an html page using sed or awk only.Ralph Rickenbach2009-12-10T14:35:14Z2009-12-10T14:35:14ZWill the result be guaranteed to be in $2? What if there is pure text before the '<a +href' part? What if there is a blank in the URL that has not been escaped?http://stackoverflow.com/questions/1867644/force-cbuilder-to-close-a-database-session-even-if-aborted/1870922#1870922Comment by Ralph Rickenbach on Force C++Builder to close a database session even if abortedRalph Rickenbach2009-12-09T05:38:11Z2009-12-09T05:38:11ZIs this done too when I use Ctrl-F2 to stop execution in the development environment?http://stackoverflow.com/questions/1867644/force-cbuilder-to-close-a-database-session-even-if-abortedComment by Ralph Rickenbach on Force C++Builder to close a database session even if abortedRalph Rickenbach2009-12-08T22:43:53Z2009-12-08T22:43:53ZMy problem is that I have to call a form property or a form method in the project source. I cannot control the code that exits the run method, but I find myself in the position that I have to make sure that under most circumstances the Form1->DBSession->close() method is called.http://stackoverflow.com/questions/1830910/can-i-override-a-group-policy-setting-as-a-machine-adminComment by Ralph Rickenbach on Can I override a group policy setting as a machine admin?Ralph Rickenbach2009-12-07T14:11:02Z2009-12-07T14:11:02ZJust delete this one then, would you?http://stackoverflow.com/questions/1825831/better-way-of-searching-through-lists-than-using-foreach/1825864#1825864Comment by Ralph Rickenbach on Better way of searching through lists than using foreachRalph Rickenbach2009-12-01T12:24:21Z2009-12-01T12:24:21ZNicer, but mostly syntactic sugarhttp://stackoverflow.com/questions/1825763/run-exe-from-command-prompt/1825783#1825783Comment by Ralph Rickenbach on run exe from command promptRalph Rickenbach2009-12-01T12:16:54Z2009-12-01T12:16:54Zwhat happens when you try either of the two ways?http://stackoverflow.com/questions/1825766/receiving-payments-through-websiteComment by Ralph Rickenbach on Receiving payments through websiteRalph Rickenbach2009-12-01T12:11:49Z2009-12-01T12:11:49ZPossible duplicate: <a href="http://stackoverflow.com/questions/772240/django-payment-proccessing" rel="nofollow" title="django payment proccessing">stackoverflow.com/questions/772240/…</a>http://stackoverflow.com/questions/1642510/loading-bde-bpl-from-another-directory/1642546#1642546Comment by Ralph Rickenbach on Loading BDE BPL from another directoryRalph Rickenbach2009-10-29T10:29:27Z2009-10-29T10:29:27ZAs the bpl is loaded at design time, it will be loaded by the IDE. Putting it into the directory of my exe does not help as it is too late. Putting it into the $(BDS)/bin does. Thanks. I would love to have it in another directory though.http://stackoverflow.com/questions/1630766/which-third-party-components-have-you-installed-into-delphi-and-whyComment by Ralph Rickenbach on Which Third Party Components Have You Installed Into Delphi And Why?Ralph Rickenbach2009-10-27T13:36:17Z2009-10-27T13:36:17ZI would allow this question if it were community wiki.http://stackoverflow.com/questions/1613199/can-intraweb-forms-be-synchronized-on-demand/1621409#1621409Comment by Ralph Rickenbach on Can IntraWeb forms be synchronized on demand?Ralph Rickenbach2009-10-27T12:03:45Z2009-10-27T12:03:45ZSorry, this will not do it for me as I am out in the wild with substantial traffic at times. But thanks for the answer.http://stackoverflow.com/questions/1477243/c-math-calculation-with-decimal-isnt-correctComment by Ralph Rickenbach on C#: Math calculation with decimal isn't correct?Ralph Rickenbach2009-09-25T13:57:05Z2009-09-25T13:57:05ZTell us what you expect. Maybe we find out what the calculation should look like.http://stackoverflow.com/questions/1477243/c-math-calculation-with-decimal-isnt-correct/1477324#1477324Comment by Ralph Rickenbach on C#: Math calculation with decimal isn't correct?Ralph Rickenbach2009-09-25T13:54:37Z2009-09-25T13:54:37Z@Dan: True, thanks. I did turn that around. My math in this case is clearer then my English. As any mathematician would tell you: just trust the formulas.http://stackoverflow.com/questions/1477243/c-math-calculation-with-decimal-isnt-correct/1477324#1477324Comment by Ralph Rickenbach on C#: Math calculation with decimal isn't correct?Ralph Rickenbach2009-09-25T13:48:49Z2009-09-25T13:48:49ZIf the first number is greater than the second, the answer is correct: 1000.29 - 2000.19 = -999.9.