User vcldeveloper - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T16:46:57Z http://stackoverflow.com/feeds/user/48789 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1590997/what-is-a-good-free-solution-for-richtext-editor-and-convertion-to-html/1677143#1677143 0 Answer by vcldeveloper for What is a good, free solution for Richtext editor and convertion to HTML? vcldeveloper 2009-11-04T22:33:23Z 2009-11-04T22:33:23Z <p>You'd better take a look at TRichEditWB component in EmbeddedWeb component pack. The whole pack is open-source:</p> <p><a href="http://www.bsalsa.com/forum/forumdisplay.php?f=29" rel="nofollow">http://www.bsalsa.com/forum/forumdisplay.php?f=29</a></p> <p>You can add image, and even controls like buttons and checkboxes to TRichEditWB. It also can hilight HTML and XML code, and recognize URLs automatically.</p> http://stackoverflow.com/questions/876081/registering-a-custom-frame 2 Registering a custom Frame vcldeveloper 2009-05-18T03:02:20Z 2009-06-02T19:25:03Z <p>Hi,</p> <p>In Delphi 2009, In one of my projects, I have a custom frame with some controls on it which I want to use as the base class for some other controls. I want to register this frame as an IDE wizard to be available in New Items list. When I add my newly added item (my custom frame) to a project, I expect it to:</p> <ol> <li>Show all the properties and events I added to the custom frame in object inspector. </li> <li>Derive the newly created frame from my custom frame rather than TFrame.</li> </ol> <p>Ok, to make it show my properties and events in Object Inspector, I register a custom module into IDE. It doesn't work properly for frames. Fortunately somebody mentioned this on StackOverflow, and an answer is given to this:</p> <p><a href="http://stackoverflow.com/questions/289672/showing-tframe-descendants-additional-properties-on-the-object-inspector">http://stackoverflow.com/questions/289672/showing-tframe-descendants-additional-properties-on-the-object-inspector</a></p> <p>Then, to make it load DFM of my custom frame, I added InitInheritedComponent to the constructor of my custom frame. Something like this:</p> <pre><code>constructor TMyFrame.Create(AOwner: TComponent); override; begin inerited; if (ClassType &lt;&gt; TMyFrame) and not (csDesignInstance in ComponentState) then begin if not InitInheritedComponent(Self, TMyFrame) then raise EResNotFound.CreateFmt('Resource %s not found', [ClassName]); end; end; </code></pre> <p>It doesn't work! It still creates an empty frame in designer rather than my own frame. If I don't register custom module into IDE, it shows my frame correctly even without needing InitInheritedComponent, but additional properties are not shown in Object Inspector!</p> <p>if I change constructor source to this (<em>Replacing TMyFrame with TFrame</em>):</p> <pre><code>constructor TMyFrame.Create(AOwner: TComponent); override; begin inerited; if (ClassType &lt;&gt; TFrame) and not (csDesignInstance in ComponentState) then begin if not InitInheritedComponent(Self, TFrame) then raise EResNotFound.CreateFmt('Resource %s not found', [ClassName]); end; end; </code></pre> <p>The frame is added to the designer correctly, and additional properties are visible in Object Inspector, but running the application fails, because it complains that the components on the frame already exist.</p> <p>So, my question is: <strong>what is the solution for having a Delphi IDE wizard which creates a derived frame from a custom frame (not form) with DFM, and shows its additional properties in Object Inspector?</strong></p> <p>BTW, I don't want to build the controls in the frame at runtime, because I need them to be available in design time too.</p> <p>I hope somebody can make this thing clear to me.</p> <p>Regards</p> <p><strong>EDITED:</strong></p> <p>These frames are actually used as pages for a wizard component. My wizard component creates them at runtime. I want the user to have an option in "New Item" menu to add a wizard page to project, and design its layout in IDE designer, and register it with my wizard component to be shown in the wizard. I am inheriting a base class from TFrame because my wizard pages should have some mandatory controls and some custom properties and events.</p> http://stackoverflow.com/questions/937120/delphi-2007-browse-path-click-though-issue/937931#937931 0 Answer by vcldeveloper for Delphi 2007 Browse path / click-though issue vcldeveloper 2009-06-02T04:47:39Z 2009-06-02T04:47:39Z <p>You shouldn't need Source path in your Library path. Lib6 should be added to Library Path, and Source to Browsing Path.</p> <p>If you do so, and it still doesn't work, then you have a similar problem with me:</p> <p><a href="http://stackoverflow.com/questions/782341/problem-with-setting-browsing-path-in-delphi-option-page">http://stackoverflow.com/questions/782341/problem-with-setting-browsing-path-in-delphi-option-page</a></p> http://stackoverflow.com/questions/897507/where-to-put-documenting-comments/898888#898888 0 Answer by vcldeveloper for Where to put documenting comments? vcldeveloper 2009-05-22T16:59:30Z 2009-05-22T16:59:30Z <p>I add a one-line summary comment to the interface section, and write the full-detailed comments in the implementation section.</p> <p>BTW, I use Doc-O-Matic, and it works fine with comments in the implementation section. What are the problems you are facing when you write the comments in the implementation section?</p> http://stackoverflow.com/questions/898801/datagrid-export-to-pdf/898858#898858 4 Answer by vcldeveloper for Datagrid export to pdf vcldeveloper 2009-05-22T16:50:36Z 2009-05-22T16:50:36Z <p>Well, data being shown in a DBGrid is provided by the dataset attached to that dbgrid, so exporting data in DBGrid to PDF means exporting data in your dataset to PDF.</p> <p>The easiest option is to use a Reporting tool. There are many different reporting tools available for Delphi e.g. Rave Report, FastReport, Report Builder, QuickReport, and so on.</p> <p>Such tools let you to design a printing report from your data, and let you to either print the report or export it to formats like HTML, DOC, PDF, and so on. Rave Report is shipped with Delphi and you can use it for free. I personally like FastReport and use it in my applications.</p> <p>Another option is that, if you have a virtual PDF printer installed on the target system, you can select it as your printer and use Delphi's TPrinter class to write directly on printer canvas, and your virtual PDF printer will make a PDF file for you rather than printing your data on paper.</p> <p>A third option is to use third-party components which are specifically built for PDF manipulation and let you to create or edit PDF files in your application.</p> <p>Regards</p> http://stackoverflow.com/questions/883809/why-does-strtointx5-returns-5-in-delphi/887108#887108 6 Answer by vcldeveloper for Why does StrToInt('X5') returns 5 in Delphi? vcldeveloper 2009-05-20T09:48:35Z 2009-05-20T09:48:35Z <p>In Delphi, hexadecimal values are marked with $ prefix:</p> <pre><code>a := $10; // =&gt; a = 16 </code></pre> <p>But since in some other languages (e.g. C) X is used for marking hexadecimal values, StrToInt function supports both $ and X prefixes, so both of the codes below return 16:</p> <pre><code>a := StrToInt('x10'); // =&gt; a = 16 a := StrToInt('$10'); // =&gt; a = 16 </code></pre> http://stackoverflow.com/questions/857204/how-do-i-get-delphi-2009s-refactor-extract-interface-to-work/858223#858223 2 Answer by vcldeveloper for How do I get Delphi 2009s (Refactor) Extract Interface to work? vcldeveloper 2009-05-13T14:18:03Z 2009-05-13T14:18:03Z <p>I'm using Delphi 2009 Version 12.0.3210.17555 (Update 1 and 2 installed), and I checked the feature on your class...</p> <p>As long as I had only your class interface, and method were not implemented, I was receiving this error message:</p> <blockquote> <p>Selection should contain either one or several classes or one or several class members.</p> </blockquote> <p>I pressed Ctrl+Shift+C to complete the class implementation, and tried again, and It worked just fine:</p> <p><a href="http://www.picoodle.com/view.php?img=/2/5/13/kykl1zna1e5r/f_ExtractIntem_4aaede9.png&amp;srv=img30" rel="nofollow">http://www.picoodle.com/view.php?img=/2/5/13/kykl1zna1e5r/f_ExtractIntem_4aaede9.png&amp;srv=img30</a></p> http://stackoverflow.com/questions/782341/problem-with-setting-browsing-path-in-delphi-option-page 4 Problem with setting Browsing Path in Delphi option page vcldeveloper 2009-04-23T15:45:10Z 2009-05-02T15:01:32Z <p>Hi,</p> <p>I have a problem with setting Browsing Path in Delphi 2009:</p> <p>When I install a new component, I add DCU path to Delphi's Library Path, and source path to Delphi's Browsing Path. The application compiles fine, but holding Ctrl and clicking on any of the unit names for that component does not open the source file! </p> <p>It seems the only way to make it work is to add source path to Library Path, but this means I have to compile all the units belonging to third-party components every time I build my project!</p> <p>This problem does not exist for Delphi's standard units, or even JCL and JVCL units which are installed by JCL\JVCL installer, and their source paths are added to Browsing Path.</p> <p>Is this a bug, or it is me doing something wrong?</p> <p>Regards</p> http://stackoverflow.com/questions/620506/left-side-cannot-be-assigned-to-for-record-type-properties-in-delphi 2 "Left side cannot be assigned to" for record type properties in Delphi vcldeveloper 2009-03-06T21:32:03Z 2009-03-08T04:29:42Z <p>Hi,</p> <p>I'm curious to know why Delphi treats record type properties as read only:</p> <pre><code> TRec = record A : integer; B : string; end; TForm1 = class(TForm) private FRec : TRec; public procedure DoSomething(ARec: TRec); property Rec : TRec read FRec write FRec; end; </code></pre> <p>If I try to assign a value to any of the members of Rec property, I'll get "Left side cannot be assigned to" error:</p> <pre><code>procedure TForm1.DoSomething(ARec: TRec); begin Rec.A := ARec.A; end; </code></pre> <p>while doing the same with the underlying field is allowed:</p> <pre><code>procedure TForm1.DoSomething(ARec: TRec); begin FRec.A := ARec.A; end; </code></pre> <p>Is there any explanation for that behavior?</p> <p>Regards</p> http://stackoverflow.com/questions/509404/can-delphi-2009-build-web-service-that-returns-a-dataset/513612#513612 0 Answer by vcldeveloper for Can Delphi 2009 build web service that returns a DataSet? vcldeveloper 2009-02-04T22:13:39Z 2009-02-04T22:13:39Z <p>As far as I know, .Net and Java clients can access DataSnap 2009 server too.</p> <p>Old DataSnap doesn't use COM for SoapConnection, but COM is used for other kinds of connections (e.g. socket connection).</p> <blockquote> <p>So next question would be, what would be use to consume a dataset returned by a web service?</p> </blockquote> <p>On the server side, you can put DatasetProviders which connect to the dataset controls, and provide datasets for clients. On the client side, ClientDataset is used to receive data provided by DatasetProviders on the server.</p> http://stackoverflow.com/questions/509767/finding-a-memory-bubble/513595#513595 0 Answer by vcldeveloper for Finding a Memory Bubble vcldeveloper 2009-02-04T22:07:42Z 2009-02-04T22:07:42Z <p>As Lars Truijens mentioned, AQTime provides a live memory consumption graph, so in runtime, you can see what objects are using more memory whenever you refresh data.</p> http://stackoverflow.com/questions/509404/can-delphi-2009-build-web-service-that-returns-a-dataset/509731#509731 1 Answer by vcldeveloper for Can Delphi 2009 build web service that returns a DataSet? vcldeveloper 2009-02-04T01:16:04Z 2009-02-04T01:16:04Z <p>Yes, it is possible to do so; you can do it by using Delphi's DataSnap with SoapConnection. DataSnap is Delphi's multi-tier solution. In Delphi 2009 it saw a major update, and named DataSnap 2009, but DataSnap 2009 doesn't yet support some features of old DataSnap, like using WebServices for communication. The good news is that the older DataSnap is still available in Delphi 2009, and you are not forced to use DataSnap 2009.</p> http://stackoverflow.com/questions/400627/how-do-i-compress-multiple-files-into-a-single-archive-with-delphi/424215#424215 2 Answer by vcldeveloper for How do I compress multiple files into a single archive with Delphi vcldeveloper 2009-01-08T13:29:15Z 2009-01-08T13:29:15Z <p><a href="http://www.vclcomponents.com/Delphi/Compression__Encryption/KAZip-info.html" rel="nofollow">KaZip</a> is an open-source ZIP archiver. Here is its description:</p> <blockquote> <p>KAZIP is fast, simple ZIP archiver and dearchiver which uses most popular ZIP format.Inflate - Deflate zip compression format (no encryption support and no multidisk support).KAZip is totaly based on Delphi VCL - <strong>no DLL, ActiveX or other external libraries</strong>.KAZip is totaly stream oriented so you can deal with data only in memory without creating temporary files, etc. If you need to add zip-unzip functionality to your application,KAZIP is the right solution. Additional ZipListView and ZipTreeView components for easy visualisation.Functionality:Zip-Unzip using Inflate-DeflateBZip2 unzipping trough usage of BZIP2 units from Edison Mera Menndez.Functions:Adding Files, Folders, Streams; Selecting, Deselecting, Checking;Extracting to files and streams;Delete and Rename filesCreate, Delete and Rename foldersTest, RepairMany new properties and methods, improved speed.A very complex Zip Browser demo application is included</p> </blockquote> <p>It is not compatible with Delphi 2009 yet, but with some minor changes in the source code, you can make it work in Delphi 2009 too. Actually, that's what I did.</p> <p>Regards</p> http://stackoverflow.com/questions/190598/is-there-a-way-to-see-if-a-character-is-using-1-or-2-bytes-in-delphi-2009/392158#392158 1 Answer by vcldeveloper for Is there a way to see if a character is using 1 or 2 bytes in Delphi 2009? vcldeveloper 2008-12-24T20:08:09Z 2008-12-24T20:08:09Z <p>You can use <strong>StringElementSize</strong> function to find out if a string is Unicode or ANSI. To check if a character is ANSI, use <strong>TCharacter.IsAnsi</strong> class function in Character.pas unit.</p> http://stackoverflow.com/questions/370518/how-do-i-start-with-working-sub-version-delphi/390447#390447 2 Answer by vcldeveloper for How do I start with working Sub-Version + Delphi? vcldeveloper 2008-12-24T00:00:01Z 2008-12-24T00:00:01Z <blockquote> <p>SVN is only the backbone of the SCM, no front-end?</p> </blockquote> <p>Basically, SVN is a console application. If you don't like to type all the commands in console, use a SVN front-end.</p> <p>Why is there several versions of Windows Binaries? Tigris? SlikSVN? VisualSVN?</p> <p>Each of them customize SVN installation. For example, VisualSVN Server installs SVN + Apache on Windows, by asking you a few questions in wizards, and configures SVN and Apache based on your answers automatically.</p> <blockquote> <p>Do I need a Web Server like Apache in order to use SVN?</p> </blockquote> <p>No, it is not necessary.</p> <blockquote> <p>There's dozens of front-end, Tortoise, WinSVN, etc... Which one is recommended?</p> </blockquote> <p>In my opinion, for Windows, TortoiseSVN is the best.</p> <blockquote> <p>The whole thing is rather confusing and I got no idea where to start. I'm using Delphi and would like to use it to store my source files. First of all, take a look at SVN Help which is published as an electronic book, and explains things very well. If you are using TortoiseSVN, I recommend you reading its help file, because it integrates SVN help into its help file.</p> </blockquote> <p>For Delphi integration, you can use TSVNWizard which is an open-source Delphi expert bringing TortoiseSVN interface into Delphi IDE: <a href="http://delphiaddinfortortoisesvn.tigris.org/tsvnWizard.pas" rel="nofollow">http://delphiaddinfortortoisesvn.tigris.org/tsvnWizard.pas</a></p> http://stackoverflow.com/questions/1704890/how-to-retrieve-cpu-usage-per-process/1708492#1708492 Comment by vcldeveloper on How to retrieve cpu usage per process vcldeveloper 2009-11-10T15:07:51Z 2009-11-10T15:07:51Z Yes, just make sure that you count number of CPUs and divide the result by that, otherwise you will get wrong percentage on multi-core systems: uses Windows; function GetCpuCount: Word; var SysInfo : _SYSTEM_INFO; begin GetSystemInfo(SysInfo); Result := SysInfo.dwNumberOfProcessors; end; http://stackoverflow.com/questions/876081/registering-a-custom-frame/941438#941438 Comment by vcldeveloper on Registering a custom Frame vcldeveloper 2009-06-04T13:32:10Z 2009-06-04T13:32:10Z Yes, I've been considering using embedded forms instead frames. Maybe it is the only option available for now. Regards http://stackoverflow.com/questions/876081/registering-a-custom-frame/937856#937856 Comment by vcldeveloper on Registering a custom Frame vcldeveloper 2009-06-02T04:33:22Z 2009-06-02T04:33:22Z Thanks. Actually my problem is that in my case I have both visual components and additional properties in my frame. My current solution is similar to yours, that is, I have my frame in a runtime package, and I register an IDE wizard for it in a design-time package which requires my runtime package. I also have that comment in DPK file. When I call RegisterCustomModule, I have my properties in IDE, but not my visual controls on the frame. When I remove RegisterCustomModule, I have my visual controls, but not my properties in Object Inspector! http://stackoverflow.com/questions/876081/registering-a-custom-frame/937106#937106 Comment by vcldeveloper on Registering a custom Frame vcldeveloper 2009-06-02T04:12:47Z 2009-06-02T04:12:47Z Yes, but I need the controls on the frame to be editable in design-time too. If I create them at run-time, I will lose that. http://stackoverflow.com/questions/876081/registering-a-custom-frame/937047#937047 Comment by vcldeveloper on Registering a custom Frame vcldeveloper 2009-06-02T04:11:22Z 2009-06-02T04:11:22Z I edited my original post to explain why I need it this way. http://stackoverflow.com/questions/876081/registering-a-custom-frame/937047#937047 Comment by vcldeveloper on Registering a custom Frame vcldeveloper 2009-06-02T04:05:15Z 2009-06-02T04:05:15Z Thanks for the answer. I already tried registering my frame as a component rather than a custom module, but in that case, user won't be able to modify any of the child controls on the frame in IDE designer. I want the user to be able to edit child controls as well, but not delete them. http://stackoverflow.com/questions/876081/registering-a-custom-frame/917743#917743 Comment by vcldeveloper on Registering a custom Frame vcldeveloper 2009-05-31T00:27:26Z 2009-05-31T00:27:26Z Yes, I know about this, but in my case, I have a base class derived from TFrame and it introduces some additional properties and events. I want this class to be registered in &quot;New Items&quot;, so that I can derive new classes from it easily in different projects. The problem with your approach is that, new properties and events are not available in Object Inspector, and in every project I have to add the unit containing base class to project to be able to inherit from it. http://stackoverflow.com/questions/782341/problem-with-setting-browsing-path-in-delphi-option-page/814987#814987 Comment by vcldeveloper on Problem with setting Browsing Path in Delphi option page vcldeveloper 2009-05-03T09:14:42Z 2009-05-03T09:14:42Z No. This is not related to a particular 3rd party component, I have this problem with all 3rd party components except JCL and JVCL which have their own installers. While I was investigating this, none of those units were used in project DPR file. Regards http://stackoverflow.com/questions/782341/problem-with-setting-browsing-path-in-delphi-option-page Comment by vcldeveloper on Problem with setting Browsing Path in Delphi option page vcldeveloper 2009-05-01T19:48:53Z 2009-05-01T19:48:53Z @Richard: For me rebuilding the source code or restarting the IDE had no effect on this problem, and the problem still exists. http://stackoverflow.com/questions/782341/problem-with-setting-browsing-path-in-delphi-option-page/787010#787010 Comment by vcldeveloper on Problem with setting Browsing Path in Delphi option page vcldeveloper 2009-04-24T21:21:58Z 2009-04-24T21:21:58Z Of course source is provided with the component; otherwise, setting Browsing Path is meaningless! Also, DCUs are compiled with debug information. http://stackoverflow.com/questions/782341/problem-with-setting-browsing-path-in-delphi-option-page Comment by vcldeveloper on Problem with setting Browsing Path in Delphi option page vcldeveloper 2009-04-24T06:01:45Z 2009-04-24T06:01:45Z Thanks Jim! I remember a few months ago when I encountered this problem the first time, I tried to check behavior of Delphi IDE when holding Ctrl and clicking on one of those units, with SysInternals Process Monitor; and there was no record of querying the paths I added to Browsing Path! But if it is a bug, then how can JVCL installer add its paths to Browsing Path, and it works just fine?!