User pastacool - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T08:32:33Z http://stackoverflow.com/feeds/user/129283 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1941549/how-to-get-idispatch-information-from-a-variant-property-in-a-delphi-com-object-i/1946576#1946576 0 Answer by pastacool for How to get IDispatch information from a variant property in a Delphi com object in VBA? pastacool 2009-12-22T14:08:26Z 2009-12-22T14:25:25Z <p>As far as I know if IDispatch is involved you are using late-binding and therefore I think something like</p> <pre><code>Set info = CreateObject('WhatEverYourLibraryIs') </code></pre> <p>is missing (maybe this microsoft link about <a href="http://support.microsoft.com/kb/245115" rel="nofollow">Using early binding and late binding in Automation</a> will help too)</p> http://stackoverflow.com/questions/1915133/delphi-5-single-file-storage-solution 0 Delphi-5 single-file storage solution? pastacool 2009-12-16T14:52:26Z 2009-12-17T20:23:00Z <p>Hi!</p> <p>Is there a Delphi-5 solution to easily integrate single-file storage into existing code? I would like to have files like Java *.jar or Openoffice document files which are zipped/compressed files and folders but with their own file extension.</p> <p><strong>Edit:</strong> I know some ZIP capable components but in a nutshell I want to access files within the "container" and use normal file handling routines on them (eg. TStringList.SaveToFile). Any overhead about compress/uncompress should be handled by the component.</p> http://stackoverflow.com/questions/1892041/delphi-5-strtofloat-results-differntly-on-winxp-and-win2k 3 Delphi 5 - StrToFloat results differntly on WinXP and Win2K pastacool 2009-12-12T02:23:21Z 2009-12-13T21:06:08Z <p>hi!</p> <p>I have this weird problem that a convert of a string on my machine and a production server gets different results eg:</p> <pre><code>procedure TForm1.Button1Click(Sender: TObject); var s1: string; f1: double; begin s1 := '1.234'; f1 := StrToFloat(s1); end; procedure TForm1.Button2Click(Sender: TObject); var s2: string; f2: double; begin s2 := '1,234'; f2 := StrToFloat(s2); end; </code></pre> <p>Button1Click results on my WinXP machine in an '1.234' is not a valid floating point value whereas on the Win2K machine this works just fine.</p> <p>Button2Click on the other end behaves on my WinXP but does result in an '1,234' is not a valid floating point value error.</p> <p>Both machines have regional settings set to "German(Austria)" - any ideas as to why this is happening or at least why the regional-settings dialog does show a different decimalseparator character than the Delphi "DecimalSeparator" and "GetLocaleChar(GetThreadLocale, LOCALE_SDECIMAL, '.')?</p> <p>Regards, Reinhard</p> http://stackoverflow.com/questions/1796049/how-to-use-tortoise-git-without-a-server-local-single-user 1 how to use tortoise git without a server (local single user) pastacool 2009-11-25T10:33:41Z 2009-11-25T11:38:49Z <p>hi guys!</p> <p>i'm looking for a simple tutorial for how to use tortoisegit without any server? i've tried google but, although a lot of people mention you can use tortoisegit without a server, no one explains how to do it so any help is greatly appreciated!</p> <p>kind regards, reinhard</p> http://stackoverflow.com/questions/1073636/crystal-xi-rel2-rdc-parameter-passing 0 Crystal XI Rel2 RDC Parameter Passing pastacool 2009-07-02T10:29:25Z 2009-07-03T11:12:09Z <p>Hi!</p> <p>I have the following setup:</p> <ul> <li>Delphi 5 Enterprise Update 1 Crystal</li> <li>Reports Developer XI Rel2 (RDC 11.5)</li> </ul> <p>After long hours of trial&amp;error I can now set the logon stuff as <a href="http://stackoverflow.com/questions/1048327/delphi-5-crystal-xi-rel-2-rdc-how-to">asked earlier</a> but when I try to set crystalparameters by code - it does not work and I get an empty report.</p> <p>I've written a small app for testing (here's just a snippet):</p> <pre><code>for i:=1 to FParamFldDefs.Count do begin FParFldDef := FParamFldDefs.Item[i]; FParFldDef.ClearCurrentValueAndRange; if ParFieldName = 'User' then FParFldDef.AddCurrentValue('hugo') else if ParFieldName = '@P_Date' then FParFldDef.AddCurrentValue('2009.06.30') if FParFldDef.IsDefaultValueSet then ShowMessage('DefaultValue: ' + FparFldDef.GetNthDefaultValue(1)); //--&gt; on loop 1 i=1 this does not show up because IsDefalutValueSet = FALSE //--&gt; on lopp 2 i=2 this does show '2009.06.30' if FParFldDef.IsCurrentValueSet then ShowMessage('CurrentValue: ' + FparFldDef.GetNthCurrentValue(1)); //--&gt; on loop 1 i=1 this does show 'hugo' //--&gt; on lopp 2 i=2 this does not show because IsCurrentValueSet = False end; ShowMessage(FldDef.SQLQueryString); //this shows all //stored procedure parameters empty </code></pre> <p>Now I've managed to have the CurrentValues set (had to save the report in question with version 11 - it was version 9 before) because IsCurrentValueSet returns True but when I try to read the SQLQuereyString I can see that all SP parameters are NULL. Any Ideas on that?</p> http://stackoverflow.com/questions/1073636/crystal-xi-rel2-rdc-parameter-passing/1078890#1078890 0 Answer by pastacool for Crystal XI Rel2 RDC Parameter Passing pastacool 2009-07-03T11:12:09Z 2009-07-03T11:12:09Z <p>Hi guys!</p> <p>I've seen the light! If someone like me ever gets forced to deal with Delphi 5 and Crystal XI RDC - here's what I've done:</p> <p>Prerequisites:</p> <ul> <li>you have tons of old Crystal Reports Version &lt; 11.5</li> <li>you still have to use old Delphi 5 applications</li> </ul> <p>Firs of all, you have to:</p> <ol> <li>Install Crystal Reporst Developer XI Rel2 (the last one with RDC support and don't worry, it can be installed in parallel to your existing Crystal Reports Version (in my case it was Version 6)</li> <li>Import Type Libraries in Delphi (craxdrt.dll + CRViewer.dll)</li> <li>Open the report in question with Crystal Reports XI and save it as version XI</li> <li>Change any Database Connection to OLEDB</li> </ol> <p>After you've done that you can use <a href="http://stackoverflow.com/questions/378089/how-can-i-display-crystal-xi-reports-inside-a-delphi-2007-application">Joseph Styons wrapper class</a> and you're just fine. If you too have a report which gets it's data from a SQL Stored Procedure just set those parameters (their names start with an "@") like any other Crystal Parameter.</p> <p>That's it, I'll hope this is usefull to somebody.</p> <p>Now I'm off for some beer!</p> <p>Cheers, Reinhard</p> http://stackoverflow.com/questions/211353/stand-alone-report-preview-through-rdc-activex-crystal-reports-xi/1075313#1075313 0 Answer by pastacool for Stand-alone report preview through RDC/ActiveX Crystal Reports XI pastacool 2009-07-02T16:17:43Z 2009-07-02T16:17:43Z <p>Hi!</p> <p>Have you been successfull with your port to crystal XI with delphi 5? I'm in the same position and have/had some big problems and am eager to know who else did it?</p> <p>At the moment my problem is that although I can set all parameters of a report by code the preview with the ActiveXReportViewer only shows an empty report (<a href="http://stackoverflow.com/questions/1073636/crystal-xi-rel2-rdc-parameter-passing">take a look at this</a>).</p> <p>Any help greatly appreciated!</p> <p>Reinhard</p> http://stackoverflow.com/questions/1048327/delphi-5-crystal-xi-rel-2-rdc-how-to 0 Delphi 5 & Crystal XI Rel. 2 (RDC) how to? pastacool 2009-06-26T10:11:33Z 2009-07-01T17:15:43Z <p>Hi Guys!</p> <p>I'm trying to work with the <a href="http://stackoverflow.com/questions/378089/how-can-i-display-crystal-xi-reports-inside-a-delphi-2007-application">class from JosephStyons</a> but I do get an "Invalid Index" Error on the line where the "User ID" should get set.</p> <pre><code>FRpt.Database.Tables[i].ConnectionProperties.Item['User ID'] := edUserName.Text; </code></pre> <p>Here's my environment:</p> <p>WinXP Sp3, Crystal Reports Developer XI Rel.2 SP4, Delphi 5 Update Pack 1</p> <p>Any help or ideas greatly appreciated!</p> <p>Thx, Reinhard</p> http://stackoverflow.com/questions/1915133/delphi-5-single-file-storage-solution/1918900#1918900 Comment by pastacool on Delphi-5 single-file storage solution? pastacool 2009-12-17T20:19:08Z 2009-12-17T20:19:08Z I am looking for some out-of-the box solution which would be transparent to existing legacy applications since I already know about the different .zip components. In a nutshell I want to have a files within the single-file-storage and use normal file handling routines on them (eg. TStringList.SaveToFile) - I don't want to be bothered with the compress/uncompress by myself. http://stackoverflow.com/questions/1892041/delphi-5-strtofloat-results-differntly-on-winxp-and-win2k/1892115#1892115 Comment by pastacool on Delphi 5 - StrToFloat results differntly on WinXP and Win2K pastacool 2009-12-12T11:21:16Z 2009-12-12T11:21:16Z thx, that's what I've thought too so I printed the DecimalSeparator and it showed different than what was showing in the regionalsettings than what's in &quot;DecimalSeparator&quot; or &quot;GetLocaleChar(GetThreadLocale, LOCALE_SDECIMAL, '.')&quot; Anyways, I've set and re-set the regional settings form German(Austria) to English(UK) and vice versa and you won't belive it, now erverything is OK. http://stackoverflow.com/questions/1796049/how-to-use-tortoise-git-without-a-server-local-single-user/1796080#1796080 Comment by pastacool on how to use tortoise git without a server (local single user) pastacool 2009-11-26T11:27:51Z 2009-11-26T11:27:51Z also thx! will look into that too http://stackoverflow.com/questions/1796049/how-to-use-tortoise-git-without-a-server-local-single-user/1796366#1796366 Comment by pastacool on how to use tortoise git without a server (local single user) pastacool 2009-11-25T15:11:10Z 2009-11-25T15:11:10Z thx, will try that! http://stackoverflow.com/questions/1796049/how-to-use-tortoise-git-without-a-server-local-single-user/1796080#1796080 Comment by pastacool on how to use tortoise git without a server (local single user) pastacool 2009-11-25T10:57:04Z 2009-11-25T10:57:04Z thx for the answer but, since i'm a beginner who haven't even used it with a server, i would need more like a step-by-step guide as how to get started http://stackoverflow.com/questions/1048327/delphi-5-crystal-xi-rel-2-rdc-how-to/1070315#1070315 Comment by pastacool on Delphi 5 & Crystal XI Rel. 2 (RDC) how to? pastacool 2009-07-02T16:02:49Z 2009-07-02T16:02:49Z yes, since I've saved the report with CR XI I can work with AddCurrentValue but the report preview with CrystalReportsActiveXViewer does not show any data. I've also tried to read SQLQueryString from the Report Object but all I see is that all stored procedure parameters are &quot;NULL&quot;. I will give it a few more days but if I can't figure it out until mid next week I will go insane and recommend some other reporting solution to my manager. http://stackoverflow.com/questions/1073636/crystal-xi-rel2-rdc-parameter-passing/1074032#1074032 Comment by pastacool on Crystal XI Rel2 RDC Parameter Passing pastacool 2009-07-02T15:48:23Z 2009-07-02T15:48:23Z hi! the dateformat has to be OK because it's the same as when I enter it into the crystal parameter dialog. now I've managed to have the &quot;CurrentValue&quot; set because FparFldDef.GetNthCurrentValue(1) does show up but still, the report returns empty. http://stackoverflow.com/questions/1048327/delphi-5-crystal-xi-rel-2-rdc-how-to/1070315#1070315 Comment by pastacool on Delphi 5 & Crystal XI Rel. 2 (RDC) how to? pastacool 2009-07-02T10:30:17Z 2009-07-02T10:30:17Z If you've got time please look at <a href="http://stackoverflow.com/questions/1073636/crystal-xi-rel2-rdc-parameter-passing" rel="nofollow" title="crystal xi rel2 rdc parameter passing">stackoverflow.com/questions/1073636/&hellip;</a> thx http://stackoverflow.com/questions/1048327/delphi-5-crystal-xi-rel-2-rdc-how-to/1070315#1070315 Comment by pastacool on Delphi 5 & Crystal XI Rel. 2 (RDC) how to? pastacool 2009-07-02T10:10:25Z 2009-07-02T10:10:25Z thanks for your input: as for the login I think I have a working solution. the next problem I face is that if i set a parameter which is a stored procedure parameter (shown for parametername = '@P_') the AddCurrentValue function does not set the currentvalue but instead the DefaultValue. How the heck did crystal-businessobjects-sap ever get paid for such a crappy software?? http://stackoverflow.com/questions/1048327/delphi-5-crystal-xi-rel-2-rdc-how-to/1051541#1051541 Comment by pastacool on Delphi 5 & Crystal XI Rel. 2 (RDC) how to? pastacool 2009-06-29T07:42:16Z 2009-06-29T07:42:16Z tanks for you input add 1: there is only one tables object and it's index starts at 1 instead of 0 so the &quot;invalid index&quot; problem has gone. add2: as you can see, ['User ID'] is already a string with single quotation marks http://stackoverflow.com/questions/1048327/delphi-5-crystal-xi-rel-2-rdc-how-to/1049047#1049047 Comment by pastacool on Delphi 5 & Crystal XI Rel. 2 (RDC) how to? pastacool 2009-06-29T07:39:37Z 2009-06-29T07:39:37Z thanks for the hint - changed the loop to: for i := 1 to FRpt1.Database.Tables.Count do but now I get an access violation http://stackoverflow.com/questions/1048327/delphi-5-crystal-xi-rel-2-rdc-how-to Comment by pastacool on Delphi 5 & Crystal XI Rel. 2 (RDC) how to? pastacool 2009-06-29T07:34:59Z 2009-06-29T07:34:59Z Microsoft SQL Server 2000