User Gerard - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T14:42:48Zhttp://stackoverflow.com/feeds/user/34411http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1794719/capture-screenshot-of-website-on-the-client-javascript-or-flash/1794803#17948032Answer by Gerard for Capture screenshot of website on the client (Javascript or flash)Gerard2009-11-25T05:15:17Z2009-11-25T05:15:17Z<p>You'll go to all that work only to find that a simple app like Snagit will do the job. <a href="http://www.west-wind.com/Weblog/posts/30318.aspx" rel="nofollow">Building a SnagIt Screen Capture Plugin</a></p>
http://stackoverflow.com/questions/1781263/fluid-form-layout-in-delphi/1794285#17942850Answer by Gerard for Fluid Form Layout in DelphiGerard2009-11-25T02:26:33Z2009-11-25T02:26:33Z<p><a href="http://www.raize.com" rel="nofollow">Raize Components</a> have a TRzFlowPanel UI component. Does exactly what you're after.</p>
<blockquote>
<p>Use TRzFlowPanel to put an empty flow panel on a form. The major difference between a traditional panel and a flow panel is the way in which controls are placed. With a traditional panel, you place a control (such as a button) in a specific location. You can freely move that control to any location within the panel using the mouse. In a flow panel, each control is placed in a specific location, regardless of where you place it with the mouse. The automatic location is controlled by the FlowStyle property. For example, using the default FlowStyle property of LeftRightTopBottom, the first control you add to the flow panel snaps to the top left corner. The second control that you add snaps next to the first control, and so on.</p>
</blockquote>
http://stackoverflow.com/questions/1657105/delphi-html-decode/1658541#16585416Answer by Gerard for delphi html decodeGerard2009-11-01T22:09:54Z2009-11-01T22:09:54Z<p>Look at the <strong>HTTPApp</strong> unit. HTTPDecode and HTMLDecode (as well as the Encode functions). You should find this in your Source/Win32/Internet folder.</p>
http://stackoverflow.com/questions/439912/intelligent-character-recognition-where-to-start/1557807#15578070Answer by Gerard for intelligent character recognition: where to start?Gerard2009-10-13T01:25:15Z2009-10-13T01:25:15Z<p><a href="http://www.livescribe.com" rel="nofollow">LiveScribe</a>. They've just released their SDK. We're doing the same thing. The device is simply awesome and the SDK is quite easy to get into.</p>
http://stackoverflow.com/questions/1548909/delphi-most-successful-applications-developed/1557130#15571302Answer by Gerard for Delphi - most successful applications developedGerard2009-10-12T21:49:10Z2009-10-12T21:49:10Z<p>A significant number of television networks around the globe run on Delphi and staff use this software every day. </p>
<p>Most of these products are developed by Harris.com and include H-Class Vision (Program Planning), Landmark (Airtime Sales), ADC (Broadcast Automation), Reports (BI). Plus, MTV down-under runs almost exclusively (fully automated) using Delphi software for device control and on-screen graphics generation and automation.</p>
<p>There is a really good chance that no matter what country you live in, you'll be watching TV brought to you by a Delphi application. Why? Well it makes great software that runs in real-time, can control a wide range of devices and can maintain reliable up-time.</p>
http://stackoverflow.com/questions/1551894/tips-and-tricks-in-dreamweaver/1551945#15519452Answer by Gerard for Tips and Tricks in DreamweaverGerard2009-10-11T22:21:43Z2009-10-11T22:21:43Z<p>I have used Dreamweaver since 1.0. Whilst it used to be a great web development tool it seems to have declined and become almost irrelevant, see <a href="http://www.pcpro.co.uk/blogs/2009/03/05/dreamweaver-is-dying/" rel="nofollow">Dreamweaver is dying</a>.</p>
<blockquote>
<p>The real problem for Dreamweaver and for its users is that the nature of the web is changing dramatically. Dynamically-generated web applications, from Amazon right down to the humble blog, all offer much more – in-built commenting, voting, RSS feeds, etc – than the best sites built on static HTML can ever hope to provide.</p>
</blockquote>
<p>I actually find that Dreamweaver now makes web development harder.</p>
http://stackoverflow.com/questions/1469221/tools-for-merging-multiple-xsd-files/1469289#14692890Answer by Gerard for Tools for merging multiple xsd filesGerard2009-09-24T00:48:35Z2009-09-24T00:48:35Z<p>We use <a href="http://www.oxygenxml.com/" rel="nofollow">oXygen</a>. Excellent XSD authoring tool (amongst other things).</p>
http://stackoverflow.com/questions/1257014/ttabsheet-hints-in-delphi/1257745#12577453Answer by Gerard for TTabSheet hints in DelphiGerard2009-08-10T23:15:42Z2009-08-28T14:00:50Z<p>Just hook the Page Control's Mouse Move event and use the TabAtPos property to determine which tab the mouse is hovering over. Then assign that tab's Hint to the Page Control's hint property.</p>
<pre><code>procedure TForm.PageControlMouseMove(Sender: TObject; Shift: TShiftState; X,
Y: Integer);
var
tabindex: Integer;
begin
tabindex := PageControl.IndexOfTabAt( X, Y );
if tabindex >= 0 then
PageControl.Hint:=PageControl.Pages[tabindex].Hint
end;
</code></pre>
http://stackoverflow.com/questions/1303763/how-to-deal-with-unfit-team-leaders/1303789#13037895Answer by Gerard for How to deal with unfit team leaders?Gerard2009-08-20T03:27:20Z2009-08-20T03:27:20Z<p>Read "How to win friends and influence people" by Dale Carnegie.</p>
http://stackoverflow.com/questions/1303505/how-does-one-protect-a-web-application-sold-on-a-per-license-basis-from-piracy/1303511#13035111Answer by Gerard for How does one protect a web application sold on a per license basis from piracy?Gerard2009-08-20T01:31:20Z2009-08-20T01:31:20Z<p>Try <a href="http://www.zend.com/en/products/guard/" rel="nofollow">Zend Guard</a> </p>
http://stackoverflow.com/questions/1285979/delphi-function-to-display-number-of-bytes-as-windows-does/1285991#12859915Answer by Gerard for Delphi Function to Display Number of Bytes as Windows DoesGerard2009-08-17T03:01:33Z2009-08-17T03:01:33Z<p>Not exactly what you're after but I have a function in my library that may give you an idea how to tackle this one:</p>
<pre><code>function FormatByteSize(const bytes: Longword): string;
var
B: byte;
KB: word;
MB: Longword;
GB: Longword;
TB: UInt64;
begin
B := 1; //byte
KB := 1024 * B; //kilobyte
MB := 1000 * KB; //megabyte
GB := 1000 * MB; //gigabyte
TB := 1000 * GB; //teraabyte
if bytes > TB then
result := FormatFloat('#.## TB', bytes / TB)
else
if bytes > GB then
result := FormatFloat('#.## GB', bytes / GB)
else
if bytes > MB then
result := FormatFloat('#.## MB', bytes / MB)
else
if bytes > KB then
result := FormatFloat('#.## KB', bytes / KB)
else
result := FormatFloat('#.## bytes', bytes) ;
end;
</code></pre>
http://stackoverflow.com/questions/1284745/communication-among-clients-in-delphi-2009/1285543#12855432Answer by Gerard for Communication among clients in Delphi 2009Gerard2009-08-16T22:50:06Z2009-08-16T22:50:06Z<p>My answer depends on your network architecture but I tend to use IP for this type of thing. Something like Multicast is an ideal way to notify all clients on the Network of an event. Simply multi-casting or broadcasting (UDP) the ID of the updated record may be all that is required. If another client is interested in the record, it can then refresh it from the Database.</p>
<p>The Indy Multicast Client/Server components will provide a simply way to implement this in your app.</p>
http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1225112#12251124Answer by Gerard for What's your most controversial programming opinion?Gerard2009-08-03T23:30:00Z2009-08-16T22:43:15Z<p><strong>Developing on .NET is not programming. Its just stitching together other people's code.</strong></p>
<p>Having come from a coding background where you were required to know the hardware, and where this is still a vital requirements in my industry, I view high level languages as simply assembling someone else's work. Nothing essentially wrong with this, but is it 'programming'?</p>
<p>MS has made a mint from doing the hard work and presenting 'developers' with symbolic instruction syntax. I seem to now know more and more developers who appear constrained by the existence or non-existence of a class to perform a job.</p>
<p>My opinion comes from the notion that to be a programmer you should be able to programme at the lowest level your platform allows. So if you're programming .NET then you need to be able to stick your head under the hood and work out the solution, rather than rely on someone else creating a class for you. That's simply lazy and does not qualify as 'development' in my book.</p>
http://stackoverflow.com/questions/1266146/is-programming-always-interesting/1269195#12691952Answer by Gerard for Is Programming always interesting?Gerard2009-08-12T23:01:43Z2009-08-12T23:01:43Z<p>I've been programming for around 30 years and I can tell you that whilst programming remains interesting on the whole if I keep up with technologies, it can certainly become very uninteresting.</p>
<p>There is a spiral that can develop when writing code. For some developers I have worked with, they are well down this spiral. Stuck on a particular technology and not getting anything really stimulating to accomplish. Maybe they're content in that position - "programming is just my job", but I doubt if it could really be called "interesting".</p>
<p>I have encountered some jobs that simply don't interest me and I find it incredibly difficult motivating myself to get a single line written. So I'm always on the quest to keep creative, interesting work coming my way. </p>
<p>One of the most useful approaches to keeping my programming work interesting is to present new ideas to stake holders. I take some time, even from my own person time, to seek out new technologies and look for ways to apply them to my work. Then I look to present my ideas to the right people. I love to present, so that helps a lot. </p>
<p>So my advise for a programming career is - keep your creative side alive and kicking. Get your ideas out there, and be brave when exploring new territories.</p>
http://stackoverflow.com/questions/1254698/exchange-data-between-two-apps-across-pc-on-lan/1257690#12576900Answer by Gerard for Exchange Data between two apps across PC on LANGerard2009-08-10T22:58:53Z2009-08-10T22:58:53Z<p>I've used the <a href="http://www.projectindy.org/index.en.aspx" rel="nofollow">Indy</a> library's Multicast components (IdIPMCastClient/Server) for this type of thing many times. The apps just send XML to each other. Quick and easy with minimal connection requirements.</p>
http://stackoverflow.com/questions/1205191/what-are-things-that-make-a-programmers-life-miserable/1220506#12205065Answer by Gerard for What are things that make a programmer's life miserable?Gerard2009-08-03T02:52:05Z2009-08-03T02:52:05Z<p>Anyone who starts a conversation with "So how hard would it be to..."</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/1203553#12035530Answer by Gerard for Delphi 2010 Beta: What's on your wishlist?Gerard2009-07-29T22:56:31Z2009-07-29T22:56:31Z<p><strong>Fix the Object Inspector</strong> - Please! It's been broken for so long now. When you elect to Arrange by Name it is very buggy!</p>
<p>It s a small thing but honestly, why has it remained broken for so long. I always opt for Arrange by Name and it is just a pain when scrolling. Seems like a refresh problem.</p>
http://stackoverflow.com/questions/412256/can-the-iphone-determine-if-youre-facing-north-south-east-or-west/1197230#11972300Answer by Gerard for Can the iPhone determine if you're facing north, south, east or west?Gerard2009-07-28T23:11:03Z2009-07-28T23:11:03Z<p>No iPhone can determine which direction I am facing. It can however (3GS) determine the approximate direction of North, South, etc. </p>
http://stackoverflow.com/questions/1196405/how-to-keep-yourself-from-perfectionism-when-coding/1197211#11972110Answer by Gerard for how to keep yourself from perfectionism when codingGerard2009-07-28T23:03:48Z2009-07-28T23:03:48Z<p>Sell it. You'll find that once you've been paid for your efforts you're less inspired to keep dressing it up... that, and you'll then be in support mode.</p>
http://stackoverflow.com/questions/1133265/why-arent-more-applications-written-in-multiple-languages/1197201#11972010Answer by Gerard for Why aren't more applications written in multiple languages?Gerard2009-07-28T22:58:10Z2009-07-28T22:58:10Z<p>We write in multiple languages frequently. It depends on the task at hand. In a recent web application I coded the web framework in PHP, the client scrips in JavaScript, the back-end engine and PHP plug-ins in Delphi and the database in MS-SQL. </p>
<p>Currently I work in an environment where we perform rapid prototyping in Delphi and then send to production for coding in MS C#. The company also has a variety of other languages employed.</p>
<p>A few years ago I worked on a project that employed 8 different languages. It was a right mess, but it is still supported on a large scale.</p>
<p>So I really can't agree with the proposition by Kelly French that we are not using multiple languages. You only have to extend you application into a database or web service to find yourself mixing it up. There is not 1 language that will do it all. If there was, I'd be using it and attending it's church on Sundays.</p>
http://stackoverflow.com/questions/912850/c-intellectual-property-protection-anti-reversing/1169052#11690520Answer by Gerard for C++ Intellectual Property Protection/Anti-ReversingGerard2009-07-23T00:54:55Z2009-07-23T00:54:55Z<p>You need to set a limit of how far you will go to protect your code. Look at the market and what your are charging for your solution. You will never secure your product 100% so you should evaluate what method will give you the best protection. In most cases, a simple license key and no obfuscation will suffice.</p>
<p>Delaying reverse engineering will only 'delay' the inevitable. What you need to focus on is deterring the initial attempt to breach copyright/IP. A good legal Terms and Conditions notice on the About page, or a bold copyright notice warning that any attempts to reverse engineer the code will result in a pick-axe through the spinal column...</p>
<p>Most people will back off attempting to rip something off if there is a chance they will be served some legal action.</p>
<p>We use SafeNet and our clients see it as 'official' protection. That in itself is a good deterrent.</p>
http://stackoverflow.com/questions/1159008/with-delphi-are-you-more-likely-to-re-use-temporary-variables-than-with-other-lan/1162146#11621461Answer by Gerard for With Delphi are you more likely to re-use temporary variables than with other languages?Gerard2009-07-21T22:46:49Z2009-07-21T22:46:49Z<p>Well Curly did have a good point. I'm a sinner in that respect occasionally. Usually just a temp string variable for convenience more than anything.</p>
<p>To be honest I've never really thought about it... until now. I have no issue with the VAR section being where it is as that's been a habit formed since Delphi 1.0.</p>
<p>To answer the question, I only re-use a temp variable, usually a string, and usually only to gain some slight performance improvements. Don't have an issue with that.</p>
http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1134981#11349812Answer by Gerard for Why Do You Use Delphi?Gerard2009-07-16T01:23:35Z2009-07-16T01:23:35Z<p>Back when Delphi 1 was new I was attending a MS VB4 launch and they kept referring to the UI speed of Delphi. The presenter even went on to say that he "didn't know how they made it work so fast". I'd not heard of Delphi so I though I would try it out - Thanks MS!</p>
<p>To be honest it comes down to 3 major things for me:</p>
<ul>
<li>The UI always works and looks slick. We always get comments on that. It sells product.</li>
<li>Its pure RAD. We get things prototyped faster than talking about it.</li>
<li>It works with almost any API or platform. We interface to a lot of weird non-MS software and angry hardware. It works. There's always a way to get Delphi to talk to something and maintain consistent up-time.</li>
</ul>
<p>Creating stand-alone apps is another distinct bonus. Native code rocks! Simple.</p>
<p>With Delphi you feel in control of what your app is doing.</p>
http://stackoverflow.com/questions/172186/what-programming-religious-argument-bothers-you-the-most/1117188#11171881Answer by Gerard for What programming religious argument bothers you the most?Gerard2009-07-12T23:23:37Z2009-07-12T23:23:37Z<p>Native vs. Managed Code</p>
http://stackoverflow.com/questions/1107827/favorite-programming-brainstorming-activity/1108056#11080560Answer by Gerard for Favorite programming brainstorming activity?Gerard2009-07-10T06:49:20Z2009-07-10T06:49:20Z<p>Usually I will work in Photoshop for a while. Get creative and try to come up with a new design that's not constrained by any code. Maybe even find something inspiring on the web for some new design ideas... then try to implement the design in code. That's the fun and challenging bit.</p>
http://stackoverflow.com/questions/1076861/adding-or-inserting-an-item-to-a-tlistview-always-adds-it-to-the-end-when-groupvi/1077164#10771640Answer by Gerard for Adding or inserting an item to a TListView always adds it to the end when GroupView is ActiveGerard2009-07-02T23:19:19Z2009-07-02T23:19:19Z<p>You may need to assign the new ListItem to a GroupIndex, assuming that you have added at least 1 Group first and given it an ID.</p>
<pre><code>var
item: TListItem;
begin
item:= ListView.Items.Add;
item.GroupID=0;
end;
</code></pre>
<p>Or you can create the TListItem object first, give it the GroupID and use ListView.Items.AddItem(item, index) to add it to the ListView. </p>
http://stackoverflow.com/questions/1071762/what-are-software-practices-in-mission-critical-industries-e-g-nuclear-power-pl/1072037#107203737Answer by Gerard for What are software practices in mission-critical industries (e.g. nuclear power plant)?Gerard2009-07-02T00:57:01Z2009-07-02T00:57:01Z<p>Over a VPN. As far away as possible</p>
http://stackoverflow.com/questions/984900/are-specific-programming-language-skills-and-experience-important-in-a-job-candid/985322#9853221Answer by Gerard for Are specific programming language skills and experience important in a job candidate?Gerard2009-06-12T06:53:54Z2009-06-12T06:53:54Z<p>I would love to say 'go with the Generalist' but I have this lurking issue in this decision. Excuse me for going against the general grain of this thread...</p>
<p>A mastery over the language is the most valuable asset in any form of communication. It is the means of communicating ideas clearly to the audience/user. I would not employ a Generalist as a dedicated coder just as I would not employ a great thinker as a speech writer. I would employ the Generalist as my ideas/prototype person but I would look for someone who can communicate ideas through exceptional code as my end-product asset. Language is the art of communication after all.</p>
<p>Faced with this decision I would ask - is the Specialist someone who can take an idea and realise it in exceptional code. What use is a Generalist if they can't communicate their ideas in the 'common' language? If they struggle to communicate their ideas in the language of choice, value is lost. Just as in the spoken language, a good word-smith is the person who is responsible for communicating the message. </p>
http://stackoverflow.com/questions/979222/why-isnt-everything-we-do-in-unicode/979247#97924714Answer by Gerard for Why isn't everything we do in Unicode?Gerard2009-06-11T03:54:53Z2009-06-11T03:54:53Z<ul>
<li>Many product developers don't consider their apps being used in Asia or other regions where Unicode is a requirement. </li>
<li>Converting existing apps to Unicode is expensive and usually driven by sales opportunities. </li>
<li>Many companies have products maintained on legacy systems and migrating to Unicode means a totally new development platform.</li>
<li>You'd be surprised how many developers don't understand the full implications of Unicode in a multi-language environment. It's not just a case of using wide strings.</li>
</ul>
<p>Bottom line - cost.</p>
http://stackoverflow.com/questions/973763/the-rounded-corners-ajax-effect-is-useful-for/973783#9737830Answer by Gerard for The rounded corners Ajax effect is useful for???Gerard2009-06-10T05:21:02Z2009-06-10T05:21:02Z<p>To engage your users... Or you could save some real coding time and just go with plain old text.</p>
http://stackoverflow.com/questions/1878205/when-ajax-should-be-used-and-when-it-should-not/1878219#1878219Comment by Gerard on When Ajax should be used and when it should not?Gerard2009-12-10T03:23:20Z2009-12-10T03:23:20ZThis is not an answer.http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1225112#1225112Comment by Gerard on What's your most controversial programming opinion?Gerard2009-12-07T00:02:32Z2009-12-07T00:02:32ZCase and Point - Microsoft's top developers prefer old-school coding methods - <a href="http://shar.es/aE0Qj" rel="nofollow">shar.es/aE0Qj</a>http://stackoverflow.com/questions/1835161/looking-for-a-local-database-for-d2009/1835667#1835667Comment by Gerard on Looking for a local database for D2009+Gerard2009-12-02T21:50:24Z2009-12-02T21:50:24ZUsed both SQLite and Firebird. Found SQLite the better optionhttp://stackoverflow.com/questions/1801579/should-i-start-my-new-shareware-project-in-c-or-delphi/1801644#1801644Comment by Gerard on Should I start my new shareware project in C# or Delphi?Gerard2009-11-26T05:54:02Z2009-11-26T05:54:02ZGood answer. +1 for the Delphi dependency note. Makes a huge difference to the ease of distribution.http://stackoverflow.com/questions/1801579/should-i-start-my-new-shareware-project-in-c-or-delphiComment by Gerard on Should I start my new shareware project in C# or Delphi?Gerard2009-11-26T05:51:42Z2009-11-26T05:51:42ZWhat do you mean by "secure"? To prevent reverse engineering or something else?http://stackoverflow.com/questions/1801579/should-i-start-my-new-shareware-project-in-c-or-delphi/1801604#1801604Comment by Gerard on Should I start my new shareware project in C# or Delphi?Gerard2009-11-26T05:50:01Z2009-11-26T05:50:01ZSubjective points. Provide some evidence.http://stackoverflow.com/questions/1794719/capture-screenshot-of-website-on-the-client-javascript-or-flash/1794803#1794803Comment by Gerard on Capture screenshot of website on the client (Javascript or flash)Gerard2009-11-25T22:00:55Z2009-11-25T22:00:55ZI doubt if you'll ever get an embedded object to be able to access the browser's canvas and make it cross-browser, cross-OS compatible. You need something that is running with sufficient OS access to grab the canvas. You say that you've tried cutepdf. Well that isn't embedded either.http://stackoverflow.com/questions/1597754/convert-utc-string-to-tdatetime-in-delphiComment by Gerard on Convert UTC string to TDatetime in DelphiGerard2009-10-20T23:18:53Z2009-10-20T23:18:53ZThe 'standard' being ISO 8601http://stackoverflow.com/questions/1597754/convert-utc-string-to-tdatetime-in-delphiComment by Gerard on Convert UTC string to TDatetime in DelphiGerard2009-10-20T23:16:04Z2009-10-20T23:16:04ZEnded up writing my own class to deal with this, and to fully comply with the standard it was quite a complex one. Would be interested in any quicker solutions for this question.http://stackoverflow.com/questions/1583990/complete-xml-schema-validation/1590627#1590627Comment by Gerard on Complete XML Schema ValidationGerard2009-10-20T01:04:11Z2009-10-20T01:04:11ZoXygen is a great tool. Don't know how we did XSD without it. Plus it generates quality schema documentation.http://stackoverflow.com/questions/1548909/delphi-most-successful-applications-developed/1557130#1557130Comment by Gerard on Delphi - most successful applications developedGerard2009-10-18T23:45:16Z2009-10-18T23:45:16ZPerhaps there are a gazillion other development tools but Delphi would appear to be the one of choice for the industry. Actually there is very little choice for this type of development when you consider the operational requirements.http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/1397555#1397555Comment by Gerard on What do you use to keep notes as a developer?Gerard2009-10-13T01:22:16Z2009-10-13T01:22:16ZDitto on that one!http://stackoverflow.com/questions/1551894/tips-and-tricks-in-dreamweaver/1551945#1551945Comment by Gerard on Tips and Tricks in DreamweaverGerard2009-10-12T00:52:12Z2009-10-12T00:52:12ZWell I still use Dreamweaver so cannot offer any good alternatives. Yes, the visual editor is very good. This has always been a strength of the product. It just seems that it's not the all-round authoring tool it used to be. I've had to adopt products like oXygen to do the heavy XML lifting.http://stackoverflow.com/questions/1257014/ttabsheet-hints-in-delphi/1257745#1257745Comment by Gerard on TTabSheet hints in DelphiGerard2009-08-30T23:13:16Z2009-08-30T23:13:16ZApologies; I was using TRzTabSheet (Raize Components) which has a TabAtPos property and works well. You could just programmatically show the hint on a change of tabindex using the THintWindow class. Set the Page Control's Show Hint property to false and create your own.http://stackoverflow.com/questions/1325358/does-your-wife-girlfriend-feel-ignored-when-you-are-programmingComment by Gerard on Does your Wife/Girlfriend Feel Ignored when you are programming?Gerard2009-08-25T00:17:30Z2009-08-25T00:17:30ZPriorities man. Get them sorted.