User Wouter van Nifterick - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T13:24:16Z http://stackoverflow.com/feeds/user/38813 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1890490/upgrade-to-delphi-2010-or-stick-with-delphi-7-forever/1893740#1893740 -1 Answer by Wouter van Nifterick for Upgrade to Delphi 2010, or stick with Delphi 7 "forever"? Wouter van Nifterick 2009-12-12T15:20:51Z 2009-12-12T15:20:51Z <p>I risk getting downvoted here, but before buying software at work, I usually try an <strong>illegal version</strong> at home for a while first. I currently run an illegal Delphi 2010 in parallel to a legal version (yeah sue me), to see if I'll run into major problems if I were to switch. If it runs smooth for a while and things compile and work, it'll be a lot easier to persuade my boss to spend money on upgrades.</p> <p>But convincing your boss is easy if you get a productivity boost. If you're a mere mortal Delphi developer like most of us, and you have to spend the money yourself, you're probably going to have to convince <strong>your wife</strong> that instead of 25 pairs of shoes for her, you're going to buy Delphi 2010. Good luck with that. </p> <p>If you succeed, please share some tips on how you did it.</p> http://stackoverflow.com/questions/1868615/lyrics-flow-delphi-pseudo-code/1871976#1871976 3 Answer by Wouter van Nifterick for Lyrics flow (Delphi / pseudo-code) Wouter van Nifterick 2009-12-09T06:28:08Z 2009-12-09T06:28:08Z <p>If you're interested in karaoke code in pascal, make sure to take a look at <strong>UltraStar Deluxe</strong>.</p> <p>It's a super slick and very popular karaoke application. The project is active and it's open source. It can be compiled to various platforms with FPC. You can compile it from both Delphi and Lazarus.. nice.</p> <p><a href="http://ultrastardx.sourceforge.net/" rel="nofollow">http://ultrastardx.sourceforge.net/</a></p> <p>My neighbours thought that my dog was their worst nightmare until I found this program.</p> <p>See it in action: <a href="http://www.youtube.com/watch?v=vNs8yEO3pFw#t=3m05s" rel="nofollow">po-po-po-pokerface po-po-pokerface.. mum mum mum mah!</a> :)</p> http://stackoverflow.com/questions/424239/can-a-single-developer-still-make-money-with-shareware 24 Can a single developer still make money with shareware? Wouter van Nifterick 2009-01-08T13:36:28Z 2009-11-15T11:59:33Z <p>I'm wondering if the shareware concept is dead nowadays.</p> <p>Like most developers, I've built up quite a collection of self-made tools and code libraries that help me to be productive.</p> <p>Some examples to give you an idea of the type of thing I'm talking about:</p> <ul> <li>A self-learning program that renames and orders all my mp3 files and adds information to the id3 tags;</li> <li>A Delphi component that wraps the Google Maps API;</li> <li>A text-to-singing-voice converter for musical purposes;</li> <li>A program to control a music synthesizer;</li> <li>A Gps-log &lt;-> KML &lt;-> ESRI-shapefile converter;</li> </ul> <p>I've got one of these already freely downloadable on my website, and on average it gets downloaded about a 150 times per month. Let's say I'd start charging 15 euro's for it; would there actually be people who buy it? How many? What would it depend on?</p> <p>If I could get some money for some of these, I'd finish them up a bit and put them online, but without that, I probably won't bother. Maintaining a SourceForge project is not very rewarding by itself.</p> <p>Is there anyone who is making money with shareware? How much? Any tips?</p> http://stackoverflow.com/questions/1609167/why-not-use-php-as-a-desktop-programming-language/1609249#1609249 6 Answer by Wouter van Nifterick for Why NOT use PHP as a desktop programming language? Wouter van Nifterick 2009-10-22T18:50:57Z 2009-10-22T18:50:57Z <p>PHP for desktop applications:</p> <p>The ease of distribution from a desktop application with the performance of a web application.</p> http://stackoverflow.com/questions/1600801/gui-patterns-to-edit-data-with-many-to-many-relationship 9 GUI patterns to edit data with many-to-many relationship Wouter van Nifterick 2009-10-21T13:20:31Z 2009-10-21T16:01:29Z <p>Hi,</p> <p>I often run into a situation where I need to come up with a GUI to edit data that has a n:m relationship. I'm looking for user friendly GUI ideas.</p> <pre><code>[table1] | /|\ [table2] \|/ | [table3] </code></pre> <p>Usually the GUI resembles something like this:</p> <p><hr /></p> <p><code>Grid that shows all items from table1</code> </p> <p><kbd>Add table3 item...</kbd> <sub>(shows modal window with table3 items)</sub></p> <p><hr /></p> <p><code>Grid that shows all items from table3</code></p> <p><hr /></p> <p>After the user picked a table3 item, I add a new row to table2 and refresh the grids.</p> <p><strong>Disadvantages:</strong></p> <ul> <li>You can only add table3 items to table1, and not the other way around;</li> <li>You can only browse table1 items and see related table3 items;</li> <li>I need to have one filtered grid of table3 items, and a similar one to pick new items;</li> </ul> <p><strong>My question:</strong></p> <p>Does anyone know a better way to visually browse and edit data that has a n:m relationship? Or any nice patterns that I could "steal" from existing software packages? </p> http://stackoverflow.com/questions/1600318/where-can-i-find-a-good-delphi-or-object-pascal-implementation-for-a-circular-buf/1601451#1601451 3 Answer by Wouter van Nifterick for Where can I find a good Delphi or Object Pascal implementation for a circular buffer Wouter van Nifterick 2009-10-21T15:03:57Z 2009-10-21T15:03:57Z <p>This is not meant to be a JFGI-response, but I usually find Google CodeSearch very useful when I'm looking for code examples:</p> <p><a href="http://www.google.com/codesearch?as%5Fq=circular+buffer&amp;as%5Flang=pascal" rel="nofollow">http://www.google.com/codesearch?as_q=circular+buffer&amp;as_lang=pascal</a></p> <p>It came up with the following:</p> <ul> <li><a href="http://www.google.com/codesearch/p?ct=rc#k3rMZr0sUUc/CIRCULAR.PAS" rel="nofollow">Circular.pas</a> (OO TP7 code; should be easy to adapt)</li> <li><a href="http://www.google.com/codesearch/p?ct=rc#B2VTqo2hL1Q/Circular.pas" rel="nofollow">CircularBuffer.pas</a> (FPC code?)</li> <li><a href="http://www.google.com/codesearch/p?ct=rc#KFRtijAk-E0/BUFFER.PAS" rel="nofollow">Buffer.pas</a> (OO TP code)</li> <li><a href="http://www.google.com/codesearch/p?rc#APL83Y73Xec/Shared/Bfg/Containers/Bfg.Containers.CircularBuffer.pas" rel="nofollow">Bfg.Containers.CircularBuffer.pas</a> (jedi)</li> </ul> <p>A search through my lib folder came up with the following:</p> <ul> <li>TurboPower AsyncPro has a circular buffer in AxTerm.pas</li> <li>unitStreamTextReader.pas from Colin Wilson's Delphi Components for Delphi 2009 has a circular buffer class</li> </ul> http://stackoverflow.com/questions/558686/use-googlemap-from-my-delphi-application/559725#559725 20 Answer by Wouter van Nifterick for Use Googlemap from my Delphi application ? Wouter van Nifterick 2009-02-18T03:29:18Z 2009-10-19T12:27:18Z <p>I've wrapped the Google Maps API some time ago. It's a component that contains a TWebBrowser that loads a local html file that contains some javascript helper functions and sets up a basic Google maps page. The HTML file is embedded into the exe as a resource for easy deployment.</p> <p>It can use some work, but it has done some nice jobs for me already. It expands on the idea that was posed here: <a href="http://www.xs4all.nl/~niff/GoogleMaps.zip" rel="nofollow">http://www.stevetrefethen.com/blog/UsingGoogleMapsFromVCLSampleApplication.aspx</a></p> <p>I've put a demo executable and sourcecode online here: <a href="http://www.xs4all.nl/~niff/GoogleMaps.zip" rel="nofollow">http://www.xs4all.nl/~niff/GoogleMaps.zip</a></p> <p>On this screenshot I've switched to the Google Earth view:</p> <p><img src="http://www.xs4all.nl/~niff/GoogleMapsDemo.png" width="620"></p> <p>Here are a few examples of how you can use it:</p> <ul> <li><p>Center the map to some shithole in the Netherlands, with nicely rounded coordinates:</p> <blockquote> <pre><code>GoogleMaps1.SetCenter(52,5,True); </code></pre> </blockquote></li> <li><p>Load a KML or KMZ file:</p> <blockquote> <pre><code>GeoXML := TGGeoXML.Create('http://mywebsite.com/mykml.kmz'); GeoXML.GoogleMaps := GoogleMaps1; GoogleMaps1.AddOverlay( GeoXML ); </code></pre> </blockquote></li> <li><p>Switch to the embedded version of Google Earth, for fast and smooth 3d action:</p> <blockquote> <pre><code>GoogleMaps1.MapType := MT_SATELLITE_3D; </code></pre> </blockquote></li> <li><p>Keep a list of overlays, and manage it via Delphi structures:</p> <blockquote> <pre><code>GoogleMaps1.Overlays[2].hide; // hide overlay 2 GoogleMaps1.RemoveOverlayByIndex(3); // delete overlay 3 </code></pre> </blockquote></li> <li><p>It lets you create polygons using fast Delphi arrays and then plot that in GMaps;</p></li> </ul> <blockquote> <pre><code>MyPolygon := TGPolygon.Create(MyPointArray); MyPolygon.Color := clBlue; MyPolygon.Name := 'Awesome Polygon 1'; GoogleMaps1.AddPolygon( MyPolygon ); </code></pre> </blockquote> <p>It doesn't intend to wrap the full API; it's just to make life easier when dealing with Google maps. The unit DouglasPeuckers is not really needed. It's used to simplify a polygon when you run out of resources.</p> <p>Good luck, and let me know if you've created something useful with it.</p> <pre><code>{—————————————————————————————————————————————————————————————————————————} { Project : uGoogleMaps.pas } { Comment : Google Maps API wrapper } { } { Date : 14 mrt 2008 } { Author : Wouter van Nifterick } {—————————————————————————————————————————————————————————————————————————} { The aim of this unit is to wrap the Google Maps API in such a way that } { users don't need to know that map operations end up being rendered by } { a browser component and JavaScript. } { } { JavaScript classes have a Delphi counterpart, and each Delphi class } { takes care of proper JavaScript rendering and execution. } { } { For many things, like constructing detailed polygons, this provides a } { major performance boost and adds compile-time type checking. } { } { A big limitation so far is that I didn't find a way to directly pass } { complex types from and to the JavaScript engine in IE via COM, so for } { now, everything needs to be (de)serialized to and from strings. :( } {—————————————————————————————————————————————————————————————————————————} { Last modified } { Date : } { Author : } {—————————————————————————————————————————————————————————————————————————} {$M+} unit uGoogleMaps; interface uses Controls, Dialogs, ActiveX, StdCtrls, ExtCtrls, SysUtils, Classes, Contnrs, Forms, SHDocVw, MSHTML, StrUtils, DouglasPeuckers // , uGoogleEarth_intf ; const GoogleMapsFileName = 'GoogleMaps.html'; WGS84_MULT_FACT = 100000; // multiply lat/lon values by this value in order to fit them into integers DEFAULT_SIMPLIFY_TOLERANCE = 0.5; {$R GoogleMaps_html.res} type TGoogleMapControl = (MC_NONE=1,MC_SMALL,MC_LARGE); TGoogleMapType = (MT_NORMAL=1,MT_SATELLITE,MT_HYBRID,MT_PHYSICAL,MT_SATELLITE_3D); TGoogleMaps = class; // forward declaration GIcon = class end; // to be implemented IJsClassWrapper=interface(IInterface) function JsClassName:String; function GetJsVarName:String; procedure SetJsVarName(const aVarName:String); property JsVarName:String read GetJsVarName write SetJsVarName; function ToJavaScript:String; end; IHidable=interface(IInterface) procedure hide; // Hides the object if the overlay is both currently visible and the overlay's supportsHide() method returns true. Note that this method will trigger the respective visibilitychanged event for each child overlay that fires that event (e.g. GMarker.visibilitychanged, GGroundOverlay.visibilitychanged, etc.). If no overlays are currently visible that return supportsHide() as true, this method has no effect. (Since 2.87) function isHidden : Boolean; // Returns true if the GGeoXml object is currently hidden, as changed by the GGeoXml.hide() method. Otherwise returns false. (Since 2.87) procedure show; // Shows the child overlays created by the GGeoXml object, if they are currently hidden. Note that this method will trigger the respective visibilitychanged event for each child overlay that fires that event (e.g. GMarker.visibilitychanged, GGroundOverlay.visibilitychanged). (Since 2.87) function supportsHide : Boolean; // end; // marker class GMarkerOptions=record icon : GIcon; // Chooses the Icon for this class. If not specified, G_DEFAULT_ICON is used. (Since 2.50) dragCrossMove : Boolean; // When dragging markers normally, the marker floats up and away from the cursor. Setting this value to true keeps the marker underneath the cursor, and moves the cross downwards instead. The default value for this option is false. (Since 2.63) title : String; // This string will appear as tooltip on the marker, i.e. it will work just as the title attribute on HTML elements. (Since 2.50) clickable : Boolean; // Toggles whether or not the marker is clickable. Markers that are not clickable or draggable are inert, consume less resources and do not respond to any events. The default value for this option is true, i.e. if the option is not specified, the marker will be clickable. (Since 2.50) draggable : Boolean; // Toggles whether or not the marker will be draggable by users. Markers set up to be dragged require more resources to set up than markers that are clickable. Any marker that is draggable is also clickable, bouncy and auto-pan enabled by default. The default value for this option is false. (Since 2.61) bouncy : Boolean; // Toggles whether or not the marker should bounce up and down after it finishes dragging. The default value for this option is false. (Since 2.61) bounceGravity : Integer; // When finishing dragging, this number is used to define the acceleration rate of the marker during the bounce down to earth. The default value for this option is 1. (Since 2.61) autoPan : Boolean; // Auto-pan the map as you drag the marker near the edge. If the marker is draggable the default value for this option is true. (Since 2.87) // to implement: // zIndexProcess : Function; // This function is used for changing the z-Index order of the markers when they are overlaid on the map and is also called when their infowindow is opened. The default order is that the more southerly markers are placed higher than more northerly markers. This function is passed in the GMarker object and returns a number indicating the new z-index. (Since 2.98) end; TGPoint=class end; TGLatLng=class(TInterfacedObject,IJsClassWrapper) private FLat, FLng:Double; FJsVarName: String; function GetJsVarName: String; procedure SetJsVarName(const Value: String); published constructor Create(aLat,aLng:Double); property Lat:Double read FLat write FLat; property Lng:Double read FLng write FLng; function ToJavaScript:String; function Equals(const AGLatLng:TGLatLng):Boolean; function ToString:String; function JsClassName:String;virtual; property JsVarName:String read GetJsVarName write SetJsVarName; end; TGBounds=class(TInterfacedObject,IJsClassWrapper) private FJsVarName: String; FMinX, FMinY, FMaxX, FMaxY:Double; FMin,FMax,FMid:TGLatLng; function GetMax: TGLatLng; function GetMid: TGLatLng; function GetMin: TGLatLng; procedure SetJsVarName(const Value: String); function GetJsVarName: String; published destructor Destroy;override; property minX : Double read FMinX write FMinX; property minY : Double read FMinY write FMinY; property maxX : Double read FMaxX write FMaxX; property maxY : Double read FMaxY write FMaxY; function ToString:String; function Equals(aGBounds:TGBounds):Boolean; property Min:TGLatLng read GetMin; property Mid:TGLatLng read GetMid; property Max:TGLatLng read GetMax; function JsClassName:String;virtual; property JsVarName:String read GetJsVarName write SetJsVarName; function ToJavaScript:String; end; TGLatLngBounds=class private procedure setNorthEast(const Value: TGLatLng); procedure setSouthWest(const Value: TGLatLng); published constructor Create(sw,ne:TGLatLng); destructor Destroy;override; function contains(aLatLng:TGLatLng):Boolean; deprecated; // Returns true iff the geographical coordinates of the point lie within this rectangle. (Deprecated since 2.88) function containsLatLng(aLatLng:TGLatLng):Boolean; // Returns true iff the geographical coordinates of the point lie within this rectangle. (Since 2.88) function intersects(aGLatLngBounds:TGLatLngBounds):Boolean; function containsBounds(aGLatLngBounds:TGLatLngBounds):Boolean; procedure extend(aLatLng:TGLatLng); // Enlarges this rectangle such that it contains the given point. In longitude direction, it is enlarged in the smaller of the two possible ways. If both are equal, it is enlarged at the eastern boundary. function toSpan() : TGLatLng; // Returns a GLatLng whose coordinates represent the size of this rectangle. function isFullLat() : Boolean ; // Returns true if this rectangle extends from the south pole to the north pole. function isFullLng() : Boolean ; // Returns true if this rectangle extends fully around the earth in the longitude direction. function isEmpty() : Boolean ; // Returns true if this rectangle is empty. function getCenter() : TGLatLng; // Returns the point at the center of the rectangle. (Since 2.52) function getSouthWest() : TGLatLng; // Returns the point at the south-west corner of the rectangle. function getNorthEast() : TGLatLng; // Returns the point at the north-east corner of the rectangle. property SouthWest : TGLatLng read getSouthWest write setSouthWest; property NorthEast : TGLatLng read getNorthEast write setNorthEast; function ToString:String; function Equals(aGLatLngBounds:TGLatLngBounds):Boolean; end; TColor = integer; // abstract class.. subclassed by TGMarker and TGPolygon and TGPolyLine.. TGOverlay=class(TInterfacedObject,IJsClassWrapper,IHidable) private FID: Integer; FGoogleMaps: TGoogleMaps; FName: String; FJsVarName:String; procedure SetID(const Value: Integer); procedure SetGoogleMaps(const Value: TGoogleMaps); procedure SetName(const Value: String); function GetJsVarName: String; procedure SetJsVarName(const Value: String); public procedure hide;virtual; function isHidden: Boolean;virtual; procedure show;virtual; function supportsHide: Boolean;virtual; published property ID:Integer read FID write SetID; function ToJavaScript:String;virtual;abstract; property JsVarName:String read GetJsVarName write SetJsVarName; property GoogleMaps:TGoogleMaps read FGoogleMaps write SetGoogleMaps; property Name:String read FName write SetName; function JsClassName:string;virtual; end; TOverlayList=class(TObjectList) private AutoIncrementID:Integer; function GetItems(Index: Integer): TGOverlay; procedure SetItems(Index: Integer; const Value: TGOverlay); public property Items[Index:Integer]:TGOverlay read GetItems write SetItems; default; published constructor Create; destructor Destroy;override; function Add(aGOverlay:TGOverlay):Integer; procedure Clear;override; function ToString:String; end; TGInfoWindow=class(TGOverlay,IJsClassWrapper,IHidable) procedure Maximize; procedure Restore; private FHTML: String; procedure SetHTML(const Value: String); public property HTML:String read FHTML write SetHTML; function JsClassName:String;override; constructor Create(const aCenter:TGLatLng); destructor Destroy;override; function ToJavaScript:String;override; function supportsHide: Boolean;override; end; // used to show a location on a map // can be dragged, can show a popup, can have custom colors and icon TGMarker=class(TGOverlay,IJsClassWrapper,IHidable) private FCenter: TGLatLng; FDraggingEnabled: Boolean; procedure setLatLng(const Value: TGLatLng); procedure SetDraggingEnabled(const Value: Boolean); public function supportsHide: Boolean;override; published function JsClassName:String;override; constructor Create(const aCenter:TGLatLng); destructor Destroy;override; property Center:TGLatLng read FCenter write setLatLng; property DraggingEnabled:Boolean read FDraggingEnabled write SetDraggingEnabled; function ToJavaScript:String;override; { TODO 3 -oWouter : implement all marker methods and events } procedure openInfoWindow(aContent:String); // Opens the map info window over the icon of the marker. The content of the info window is given as a DOM node. Only option GInfoWindowOptions.maxWidth is applicable. procedure openInfoWindowHtml(aContent:String); // Opens the map info window over the icon of the marker. The content of the info window is given as a string that contains HTML text. Only option GInfoWindowOptions.maxWidth is applicable. { procedure openInfoWindowTabs(tabs, opts?) : none; // Opens the tabbed map info window over the icon of the marker. The content of the info window is given as an array of tabs that contain the tab content as DOM nodes. Only options GInfoWindowOptions.maxWidth and InfoWindowOptions.selectedTab are applicable. procedure openInfoWindowTabsHtml(tabs, opts?) : none; // Opens the tabbed map info window over the icon of the marker. The content of the info window is given as an array of tabs that contain the tab content as Strings that contain HTML text. Only options InfoWindowOptions.maxWidth and InfoWindowOptions.selectedTab are applicable. procedure bindInfoWindow(content, opts?) : none; // Binds the given DOM node to this marker. The content within this node will be automatically displayed in the info window when the marker is clicked. Pass content as null to unbind. (Since 2.85) procedure bindInfoWindowHtml(content, opts?) : none; // Binds the given HTML to this marker. The HTML content will be automatically displayed in the info window when the marker is clicked. Pass content as null to unbind. (Since 2.85) procedure bindInfoWindowTabs(tabs, opts?) : none; // Binds the given GInfoWindowTabs (provided as DOM nodes) to this marker. The content within these tabs' nodes will be automatically displayed in the info window when the marker is clicked. Pass tabs as null to unbind. (Since 2.85) procedure bindInfoWindowTabsHtml(tabs, opts?) : none; // Binds the given GInfoWindowTabs (provided as strings of HTML) to this marker. The HTML content within these tabs will be automatically displayed in the info window when the marker is clicked. Pass tabs as null to unbind. (Since 2.85) procedure closeInfoWindow() : none; // Closes the info window only if it belongs to this marker. (Since 2.85) procedure showMapBlowup(opts?) : none; // Opens the map info window over the icon of the marker. The content of the info window is a closeup map around the marker position. Only options InfoWindowOptions.zoomLevel and InfoWindowOptions.mapType are applicable. procedure getIcon() : GIcon; // Returns the icon of this marker, as set by the constructor. procedure getTitle() : String; // Returns the title of this marker, as set by the constructor via the GMarkerOptions.title property. Returns undefined if no title is passed in. (Since 2.85) procedure getPoint() : GLatLng; // Returns the geographical coordinates at which this marker is anchored, as set by the constructor or by setPoint(). (Deprecated since 2.88) procedure getLatLng() : GLatLng; // Returns the geographical coordinates at which this marker is anchored, as set by the constructor or by setLatLng(). (Since 2.88) procedure setPoint(latlng) : none; // Sets the geographical coordinates of the point at which this marker is anchored. (Deprecated since 2.88) procedure setLatLng(latlng) : none; // Sets the geographical coordinates of the point at which this marker is anchored. (Since 2.88) procedure enableDragging() : none; // Enables the marker to be dragged and dropped around the map. To function, the marker must have been initialized with GMarkerOptions.draggable = true. procedure disableDragging() : none; // Disables the marker from being dragged and dropped around the map. procedure draggable() : Boolean; // Returns true if the marker has been initialized via the constructor using GMarkerOptions.draggable = true. Otherwise, returns false. procedure draggingEnabled() : Boolean; // Returns true if the marker is currently enabled for the user to drag on the map. procedure setImage(url) : none; // Requests the image specified by the url to be set as the foreground image for this marker. Note that neither the print image nor the shadow image are adjusted. Therefore this method is primarily intended to implement highlighting or dimming effects, rather than drastic changes in marker's appearances. (Since 2.75) } end; TGGeoXml=class(TGOverlay,IJsClassWrapper,IHidable) private FUrlOfXml: String; procedure SetUrlOfXml(const Value: String); published // function getTileLayerOverlay: GTileLayerOverlay; // GGeoXml objects may create a tile overlay for optimization purposes in certain cases. This method returns this tile layer overlay (if available). Note that the tile overlay may be null if not needed, or if the GGeoXml file has not yet finished loading. (Since 2.84) // function getDefaultCenter : GLatLng; // Returns the center of the default viewport as a lat/lng. This function should only be called after the file has been loaded. (Since 2.84) // function getDefaultSpan : GLatLng; // Returns the span of the default viewport as a lat/lng. This function should only be called after the file has been loaded. (Since 2.84) // function getDefaultBounds : GLatLngBounds; // Returns the bounding box of the default viewport. This function should only be called after the file has been loaded. (Since 2.84) procedure gotoDefaultViewport(Map:TGoogleMaps); // Sets the map's viewport to the default viewport of the XML file. (Since 2.84) // function hasLoaded : Boolean; // Checks to see if the XML file has finished loading, in which case it returns true. If the XML file has not finished loading, this method returns false. (Since 2.84) // function loadedCorrectly : Boolean; // Checks to see if the XML file has loaded correctly, in which case it returns true. If the XML file has not loaded correctly, this method returns false. If the XML file has not finished loading, this method's return value is undefined. (Since 2.84) function supportsHide : Boolean; override; // Always returns true. (Since 2.87) function JsClassName:String;override; constructor Create(const aUrlOfXml:String); destructor Destroy;override; property UrlOfXml:String read FUrlOfXml write SetUrlOfXml; function ToJavaScript:String;override; end; // polygon class TGPolygon=class(TGOverlay,IJsClassWrapper,IHidable) private FCoordinates:Array of TGLatLng; FOpacity: double; FWeightPx: integer; FColor: TColor; FSimplified: TGPolygon; FIsDirty: Boolean; procedure SetColor(const Value: TColor); procedure SetOpacity(const Value: double); procedure SetWeightPx(const Value: integer); function GetCount: Integer; procedure SetSimplified(const Value: TGPolygon); function GetSimplified: TGPolygon; public constructor Create(const aCoordinates: array of TGLatLng);overload; constructor Create(const aPoints:Array of TPointFloat2D);overload; function supportsHide: Boolean;override; published function JsClassName:String;override; procedure Clear; function ToJavaScript:String;override; function AddPoint(const aGLatLng:TGLatLng):integer; property Color:TColor read FColor write SetColor; property WeightPx:integer read FWeightPx write SetWeightPx; property Opacity:double read FOpacity write SetOpacity;// number between 0 and 1 property Count:Integer read GetCount; destructor Destroy;override; property IsDirty:Boolean read FIsDirty write FIsDirty; property Simplified:TGPolygon read GetSimplified write SetSimplified; function getSimplifiedVersion(Tolerance:Double=DEFAULT_SIMPLIFY_TOLERANCE):TGPolygon; class function PolyTypeStr: String;virtual; end; TGPolyLine=class(TGPolygon,IJsClassWrapper,IHidable) published class function PolyTypeStr:String;override; function JsClassName:String;override; end; TGCopyright=class(TGOverlay,IJsClassWrapper,IHidable) private FminZoom: Integer; Fid: Integer; Fbounds: TGLatLngBounds; Ftext: String; procedure Setbounds(const Value: TGLatLngBounds); procedure Setid(const Value: Integer); procedure SetminZoom(const Value: Integer); procedure Settext(const Value: String); published property id : Integer read Fid write Setid; // A unique identifier for this copyright information. property minZoom : Integer read FminZoom write SetminZoom; // The lowest zoom level at which this information applies. property bounds : TGLatLngBounds read Fbounds write Setbounds; // The region to which this information applies. property text : String read Ftext write Settext; // The text of the copyright message. constructor Create (aId : Integer; aBounds:TGLatLngBounds;aMinZoom:Integer;aText:String); end; TGoogleMaps=class(TPanel) private FWebBrowser:TWebBrowser; FhasEnd: Boolean; FhasStart: Boolean; FLogLines: TStrings; FOverlays: TOverlayList; FMapType: TGoogleMapType; FLatLngCenter: TGLatLng; FEnableDoubleClickZoom: Boolean; FEnableContinuousZoom: Boolean; FStatusPanel: TPanel; FJsVarName: String; procedure LoadHTML(URL:String); procedure SetLogLines(const Value: TStrings); procedure SetOverlays(const Value: TOverlayList); procedure Init; procedure SaveGoogleMapsHtml(const aFileName:String); procedure SetLatLngCenter(const Value: TGLatLng); procedure SetEnableContinuousZoom(const Value: Boolean); procedure SetEnableDoubleClickZoom(const Value: Boolean); function GetLatLngCenter: TGLatLng; property WebBrowser : TWebBrowser read FWebBrowser write FWebBrowser; procedure SetMapType(AMapType:TGoogleMapType); procedure SaveHTML(const FileName:String); function GetHTML: String; property hasStart : Boolean read FhasStart write FhasStart; property hasEnd : Boolean read FhasEnd write FhasEnd; procedure SetStatusPanel(const Value: TPanel); procedure SetJsVarName(const Value: String); property DragKind; property DragMode; property DockSite; property Ctl3D; property BiDiMode; property AutoSize; property HelpContext; property HelpKeyword; property HelpType; property Owner; property ParentBackground; property ParentBiDiMode; property ParentCtl3D; property Showing; property UseDockManager; property VerticalAlignment; property WheelAccumulator; public constructor Create(AOwner: TComponent);override; destructor Destroy;override; procedure SetCenter(Lat,Lng,Alt:Double;doPan:Boolean=false);overload; procedure SetCenter(Lat,Lng:Double;doPan:Boolean=false);overload; procedure SetCenter(LatLng:TGLatLng;doPan:Boolean=false);overload; procedure HandleOnResize(Sender:TObject); function GetJsValue(aJavaScript:String):OleVariant; property HTML: String read GetHTML; procedure CheckResize; published property StatusPanel : TPanel read FStatusPanel write SetStatusPanel; property LogLines : TStrings read FLogLines write SetLogLines; property Overlays : TOverlayList read FOverlays write SetOverlays; property LatLngCenter : TGLatLng read GetLatLngCenter write SetLatLngCenter; property EnableContinuousZoom:Boolean read FEnableContinuousZoom write SetEnableContinuousZoom default true; property EnableDoubleClickZoom:Boolean read FEnableDoubleClickZoom write SetEnableDoubleClickZoom default true; property MapType:TGoogleMapType read FMapType write SetMapType; property JsVarName:String read FJsVarName write SetJsVarName; procedure AddControl(ControlType:TGoogleMapControl); procedure AddStartMarker; procedure AddEndMarker; procedure AddMarker(Lat,Lon:Double); procedure AddPolygon(GPolygon:TGPolygon); procedure AddOverlay(aOverlay:TGOverlay); procedure RemoveOverlay(aOverlay:TGOverlay); procedure RemoveOverlayByIndex(Index:Integer); procedure ClearOverlays; procedure SwapBeginEndMarkers; procedure GetDirections; procedure ShowAddress(const Street,City,State,Country:String); procedure openInfoWindow(aLatlng : TGLatLng; aHTML:String); procedure closeInfoWindow; procedure ExecJavaScript(const aScript:String); procedure WebBrowserDocumentComplete(ASender: TObject; const pDisp: IDispatch; var URL: OleVariant); procedure OnMouseOver; property Align; property OnClick; property OnCanResize; property OnResize; property OnEnter; property OnExit; property OnKeyDown; property OnKeyPress; property OnKeyUp; property OnDblClick; property OnMouseWheel; property OnMouseWheelDown; property OnMouseWheelUp; property OnConstrainedResize; </code></pre> http://stackoverflow.com/questions/1552957/how-to-insert-a-new-page-inside-a-tpagecontrol/1553077#1553077 6 Answer by Wouter van Nifterick for How to 'insert' a new page inside a TPageControl Wouter van Nifterick 2009-10-12T06:50:45Z 2009-10-12T06:50:45Z <p><strong>Rightclick</strong> on the pagecontrol, and click <kbd>New Page</kbd></p> <p>After that, set the <code>PageIndex</code> property to place the new page where you want to have it.</p> http://stackoverflow.com/questions/1547317/what-does-128-bit-os-mean-to-a-software-developer/1547348#1547348 2 Answer by Wouter van Nifterick for What does 128-bit OS mean to a software developer?? Wouter van Nifterick 2009-10-10T08:01:08Z 2009-10-10T08:01:08Z <p>Read carefully. The linkedin profile that is the source of this "leak" says:</p> <blockquote> <p>"Research &amp; Development projects including 128-bit architecture compatibility with the Windows 8 kernel and Windows 9 project plan."</p> </blockquote> <p>Nowhere does it state that any OS will be 128 bit any time soon.</p> http://stackoverflow.com/questions/1542387/mysql-match-against-alternative/1542437#1542437 1 Answer by Wouter van Nifterick for Mysql match against alternative Wouter van Nifterick 2009-10-09T07:55:07Z 2009-10-09T07:55:07Z <p>Something like this would do what you want:</p> <pre><code>select * from myTable order by sum ( itemdate='2009-10-09', title like '%keyword%', text like '%keyword%', criteria4, criteria5 ) </code></pre> <ul> <li>Each criteria returns 0 if false, and 1 if true. </li> <li>You sum each of those and order by the result.</li> <li>Rows that have the most matching criteria will be on top.</li> </ul> <p>You can finetune all this of course by not just having 0 or 1 per criteria. </p> http://stackoverflow.com/questions/1536215/mysql-query-execution-return-value/1536224#1536224 0 Answer by Wouter van Nifterick for MySQL query execution return value? Wouter van Nifterick 2009-10-08T07:43:45Z 2009-10-08T07:43:45Z <p><code>mysql_query()</code> returns a result set on success, or <code>false</code> if something went wrong.</p> <p><a href="http://us3.php.net/manual/en/function.mysql-query.php" rel="nofollow">http://us3.php.net/manual/en/function.mysql-query.php</a></p> http://stackoverflow.com/questions/1528610/split-large-file-without-copy/1529594#1529594 0 Answer by Wouter van Nifterick for Split large file without copy? Wouter van Nifterick 2009-10-07T05:10:58Z 2009-10-07T05:20:45Z <ul> <li><p>If you copy a large number of small files, it usually helps to temporarily disable your <strong>virus scanner</strong> until your copy operation is done.</p></li> <li><p>There's a tool called <strong>TeraCopy</strong> that claims to solve your problem (seems to be made with Delphi): <a href="http://blog.codesector.com/category/code-sector-software/teracopy/" rel="nofollow">http://blog.codesector.com/category/code-sector-software/teracopy/</a> <a href="http://www.codesector.com/teracopy.php" rel="nofollow">http://www.codesector.com/teracopy.php</a></p></li> <li><p>There's another tool called <strong>FastCopy</strong> that might also work. This one can be called from the commandline, which could be an advantage if you need to integrate this with a Delphi program: <a href="http://www.ipmsg.org/tools/fastcopy.html.en" rel="nofollow">http://www.ipmsg.org/tools/fastcopy.html.en</a></p></li> <li><p>I've noticed that the <strong>direction of copying</strong> a large number of files sometimes makes a huge difference. It's a lot faster to copy files away from the machine than it is to initiate the copy from the destination machine.</p></li> <li><p>If all else fails you could always <strong>write your own</strong> client-server application that streams files using your own optimized protocol. One app with readfromdisk/sendovernetwork threads, and one with receivefromnetwork/writetodisk threads.</p></li> </ul> http://stackoverflow.com/questions/1482045/help-me-understand-the-logic-of-complex-sql-queries-in-mysql-and-relational-algeb/1482080#1482080 0 Answer by Wouter van Nifterick for Help me understand the logic of complex SQL queries in MySQL and relational algebra... Wouter van Nifterick 2009-09-26T20:13:53Z 2009-09-26T20:13:53Z <p>Do yourself a favour and get a MySQL client with a GUI. It'll save you tons of time, especially when you're editing more complex queries.</p> <p>I can recommend <a href="http://www.heidisql.com/" rel="nofollow">HeidiSQL</a>, but there are plenty of other ones available for free.</p> <p>Your first question:</p> <pre><code>select dept.did as `department`, avg(age) as `avgAge` from dept,works,emp where emp.eid=works.eid and dept.did=works.did group by dept.did order by 2 desc limit 1 </code></pre> <p>Maybe somebody else wants to do the rest of your homework for you. </p> http://stackoverflow.com/questions/111543/tortoisesvn-error-options-of-https-could-not-connect-to-server/1478120#1478120 1 Answer by Wouter van Nifterick for TortoiseSVN Error: "OPTIONS of 'https://...' could not connect to server (...)" Wouter van Nifterick 2009-09-25T15:50:16Z 2009-09-25T15:50:16Z <p>Late reaction, but I've struggled with this for a while so maybe I can save somebody some time by showing my solution.</p> <p>My problem showed a bit different, but the cause might be the same.</p> <p>In my situation, TortoiseSVN kept on trying to connect via a proxy server. I could access SVN via chrome, firefox and IE fine.</p> <p>Turns out that there is a <strong>configuration file</strong> that has a different configuration than the GUI in TortoiseSVN shows. </p> <p>Mine was located here: <code>C:\Documents and Settings\[username]\Application Data\Subversion\</code>, but you can also open the file via the TortoiseSVN gui.</p> <p><img src="http://www.xs4all.nl/~niff/stuff/tortoiseproxy.png" alt="TortoiseSVN" /></p> <p>In my file, <code>http-proxy-exceptions was empty</code>. After I specified it, everything worked fine.</p> <pre><code>[global] http-proxy-exceptions = 10.1.1.11 http-proxy-host = 197.132.0.223 http-proxy-port = 8080 http-proxy-username = defaultusername http-proxy-password = defaultpassword http-compression = no </code></pre> http://stackoverflow.com/questions/1475316/how-do-you-ensure-code-is-reused-correctly/1475319#1475319 1 Answer by Wouter van Nifterick for How do you ensure code is reused correctly? Wouter van Nifterick 2009-09-25T03:42:43Z 2009-09-25T03:58:56Z <p>Test your preconditions with asserts.</p> <p>Besides that, think of some unit tests to check that your code is robust enough to deal with uncommon or unintended situations.</p> <p>For the rest, make sure that everyone actually understand what the code does, at least on a black-box level. Have a short meeting with a whiteboard and do a little pair programming once people have to start out using code that's new to them.</p> http://stackoverflow.com/questions/1455111/how-to-create-chrome-like-application-in-delphi-which-runs-multiple-processes-ins/1455810#1455810 5 Answer by Wouter van Nifterick for How to create Chrome like application in Delphi which runs multiple processes inside one Window? Wouter van Nifterick 2009-09-21T17:43:48Z 2009-09-21T17:43:48Z <p>Have a look at the <a href="http://heidisql.googlecode.com/svn/trunk/" rel="nofollow">Delphi code</a> of <a href="http://www.heidisql.com" rel="nofollow">HeidiSQL</a>. It's a great open source MySQL client that implements this mechanism.</p> <p>Read this newsitem that was posted when Chrome was released:</p> <p><a href="http://www.heidisql.com/forum/viewtopic.php?t=718" rel="nofollow">"Google playing catch-up with HeidiSQL?"</a> </p> <p>:-)</p> <p><img src="http://www.heidisql.com/images/forum/heidisql-windowlist-2.png" alt="HeidiSQL" /></p> http://stackoverflow.com/questions/1368773/is-mac-experience-important-for-a-future-developer/1435926#1435926 1 Answer by Wouter van Nifterick for Is Mac experience important for a future developer? Wouter van Nifterick 2009-09-16T22:54:20Z 2009-09-16T22:54:20Z <p>Even though many people seem to own Macs at home, I hardly ever see Macs in a corporate environment. The only times I see them during working hours is with graphical designers. </p> <p>However, people around me seem to get iPhones via their work nowadays. Now that they can work with exchange, they are starting to become usable for businesses.</p> <p>Anyway, to secure my future, I wouldn't lay all of my eggs in Apple's nest.</p> http://stackoverflow.com/questions/1432892/what-needs-finalization-in-a-multidimensional-dynamic-array/1435871#1435871 3 Answer by Wouter van Nifterick for What needs finalization in a multidimensional dynamic array? Wouter van Nifterick 2009-09-16T22:34:28Z 2009-09-16T22:34:28Z <blockquote> <p><strong>Quote</strong> : <em>"You call SetLength on the main array</em> <em>and then can call SetLength again on</em> <em>each array element."</em></p> </blockquote> <p>You don't really have to iterate through your arrays. </p> <p><code>SetLength()</code> accepts a list of lengths for each dimension.</p> <p><strong>Example:</strong></p> <pre><code>SetLength(ScheduleArray,200,15,35); </code></pre> <p>Is the same as:</p> <pre><code>SetLength(ScheduleArray,200); for i:=low(ScheduleArray) to high(ScheduleArry) do begin SetLength(ScheduleArray[i],15); for j:=low(ScheduleArray[i]) to high(ScheduleArray[i]) do SetLength(ScheduleArray[i,j],35); end; </code></pre> http://stackoverflow.com/questions/1433971/select-from-table-or-select-id-field1-field2-field3-from-table-best-practic/1434141#1434141 0 Answer by Wouter van Nifterick for Select * from table OR select id,field1, field2, field3 from table - best practice? Wouter van Nifterick 2009-09-16T16:42:27Z 2009-09-16T16:42:27Z <p>I'm not going to tell you to "<strong>never ever</strong>" or "<strong>always</strong>" use one or the other. Advices that start with that are not to be taken literal. </p> <p>If you're working with small sets of data, please don't insist on using silly "optimizations" like replacing <code>*</code> with a list of fields, especially if you're going to specify <strong>all</strong> of the fields. </p> <p>Having readable and easy to maintain SQL code is often worth more than a few saved CPU cycles or a couple of kilobytes less memory usage or network traffic.</p> http://stackoverflow.com/questions/1430973/how-to-design-a-system-which-allows-property-edit/1431010#1431010 0 Answer by Wouter van Nifterick for How to design a system which allows property edit. Wouter van Nifterick 2009-09-16T04:50:50Z 2009-09-16T04:56:22Z <p>Via reflection you can query the structures and values.</p> <p>The general way would be to have a class that you can feed another class that needs to be analysed. You then iterate over the properties of the class and present it in a listview or something similar.</p> <p>When somebody changes the GUI object, you update the class accordingly.</p> <p>Anyway, you didn't specify what environment you'll be using, but there seem to be several implementations that you can just use. Unless you've got specific needs, I wouldn't reinvent the wheel here.</p> <p>If you want to use C#, this looks good to me: <a href="http://www.codeproject.com/KB/miscctrl/objectinspectorBySir%20ZeppaMan.aspx" rel="nofollow">http://www.codeproject.com/KB/miscctrl/objectinspectorBySir%20ZeppaMan.aspx</a></p> <p><img src="http://www.codeproject.com/KB/miscctrl/objectinspectorBySir%20ZeppaMan/objectinspector.jpg" alt="This looks good to me" /></p> <p>For Delphi you could use Raize Inspex. It allows you to edit multiple objects at once.</p> <p><img src="http://www.raize.com/DevTools/Inspex/images/Categories.png" alt="Inspex" /> <img src="http://www.raize.com/DevTools/Inspex/images/DBInspector.png" alt="Inspex multiple" /></p> http://stackoverflow.com/questions/1424402/building-a-team/1424565#1424565 0 Answer by Wouter van Nifterick for Building A Team Wouter van Nifterick 2009-09-15T00:35:24Z 2009-09-15T00:35:24Z <p>University is probably the best place to look..</p> <p>You should be able to find bright people there, who don't have a job/girlfriend/wife/kids or other ties. </p> http://stackoverflow.com/questions/1424481/how-can-i-see-the-type-of-a-property-in-the-object-inspector 6 How can I see the type of a property in the Object Inspector? Wouter van Nifterick 2009-09-15T00:01:47Z 2009-09-15T00:08:26Z <p>In the form designer, I sometimes need to see the <strong>type</strong> of a property, so I know what kind of input it expects. Unfortunately the Object Inspector doesn't seem to show it.</p> <p><hr /></p> <p><strong>Example:</strong></p> <p><img src="http://www.xs4all.nl/~niff/stuff/Delphi%5FObjectInspectorType.png" alt="Near-perfect circle" /></p> <p>This component clearly wants me to link a "Grid", but I have no idea what type of grid I need. TDbGrid? TDrawGrid? TColorGrid? TGridPanel?</p> <p>Of course I can see this by looking into the source of the component, but does anyone know a faster way?</p> http://stackoverflow.com/questions/1414911/intel-x86-assembly-optimization-techniques-in-a-sample-problem/1415014#1415014 13 Answer by Wouter van Nifterick for Intel x86 assembly optimization techniques in a sample problem. Wouter van Nifterick 2009-09-12T12:34:58Z 2009-09-13T15:09:42Z <p>In general, I'd personally stay away from trying to optimize code by using tricks on assembler level, <strong>unless</strong> you really need that extra 2 or 3% of speed, and you're willing to pay the price of code that is harder to read, maintain and port. </p> <p>To squeeze that last 1%, you might even have to maintain several versions optimized per processor, and if newer processors and an improved pascal compiler comes along, you're not going to benefit from it.</p> <p><strong>This Delphi code is faster</strong> than your fastest assembler code:</p> <pre><code>procedure DecodePixels5(EncPixels: Byte; var DecPixels: TDecodedPixels); begin DecPixels[0] := (EncPixels shr 0) and $01; DecPixels[1] := (EncPixels shr 1) and $01; DecPixels[2] := (EncPixels shr 2) and $01; DecPixels[3] := (EncPixels shr 3) and $01; DecPixels[4] := (EncPixels shr 4) and $01; DecPixels[5] := (EncPixels shr 5) and $01; DecPixels[6] := (EncPixels shr 6) and $01; DecPixels[7] := (EncPixels shr 7) and $01; end; Results: Time1 : 1,03096806151283 ms. &lt;- Delphi loop. Time2 : 0,740308641141395 ms. &lt;- Delphi unrolled loop. Time3 : 0,996602425688886 ms. &lt;- BASM loop. Time4a : 0,608267951561275 ms. &lt;- BASM unrolled loop. Time4b : 0,574162510648039 ms. &lt;- BASM unrolled loop instruction switch. Time5 : 0,499628206138524 ms. !!! &lt;- Delphi unrolled loop 5. </code></pre> <p>It's fast because the operations can be done with registers only, instead of needing to store and fetch memory. Modern processors execute this partly in parallel (a new operation can be started before the previous finished), because the results of the consecutive instructions are independent of each other. </p> <p>The machine code looks like this:</p> <pre><code> push ebx; // DecPixels[0] := (EncPixels shr 0) and 1; movzx ecx,al mov ebx,ecx // shr ebx,$00 and bl,$01 mov [edx],bl // DecPixels[1] := (EncPixels shr 1) and 1; mov ebx,ecx shr ebx,1 and bl,$01 mov [edx+$01],bl // DecPixels[2] := (EncPixels shr 2) and 1; mov ebx,ecx shr ebx,$02 and bl,$01 mov [edx+$02],bl // DecPixels[3] := (EncPixels shr 3) and 1; mov ebx,ecx shr ebx,$03 and bl,$01 mov [edx+$03],bl // DecPixels[4] := (EncPixels shr 4) and 1; mov ebx,ecx shr ebx,$04 and bl,$01 mov [edx+$04],bl // DecPixels[5] := (EncPixels shr 5) and 1; mov ebx,ecx shr ebx,$05 and bl,$01 mov [edx+$05],bl // DecPixels[6] := (EncPixels shr 6) and 1; mov ebx,ecx shr ebx,$06 and bl,$01 mov [edx+$06],bl // DecPixels[7] := (EncPixels shr 7) and 1; shr ecx,$07 and cl,$01 mov [edx+$07],cl pop ebx; </code></pre> <p>Edit: As suggested, a table lookup is indeed faster.</p> <pre><code>var PixelLookup:Array[byte] of TDecodedPixels; // You could precalculate, but the performance gain would hardly be worth it because you call this once only. for I := 0 to 255 do DecodePixels5b(I, PixelLookup[I]); procedure DecodePixels7(EncPixels: Byte; var DecPixels: TDecodedPixels); begin DecPixels := PixelLookup[EncPixels]; end; Results: Time1 : 1,03096806151283 ms. &lt;- Delphi loop. Time2 : 0,740308641141395 ms. &lt;- Delphi unrolled loop. Time3 : 0,996602425688886 ms. &lt;- BASM loop. Time4a : 0,608267951561275 ms. &lt;- BASM unrolled loop. Time4b : 0,574162510648039 ms. &lt;- BASM unrolled loop instruction switch. Time5 : 0,499628206138524 ms. !!! &lt;- Delphi unrolled loop 5. Time7 : 0,251533475182096 ms. &lt;- simple table lookup </code></pre> http://stackoverflow.com/questions/1413690/how-to-save-current-local-time-in-database/1413704#1413704 0 Answer by Wouter van Nifterick for how to save current local time in database Wouter van Nifterick 2009-09-11T23:25:12Z 2009-09-11T23:25:12Z <p>Use now() or sysdate() in your insert query:</p> <pre><code>insert into mytable set datetimefield=sysdate() </code></pre> <p>Just make sure that the server time is synchronised, and that it's in the right timezone. Otherwise you'll have to do some extra tricks to shift the date/time.</p> <p>If timing is crucial, keep this in mind:</p> <blockquote> <p>As of MySQL 5.0.13, SYSDATE() returns the time at which it executes. This differs from the behavior for NOW(), which returns a constant time that indicates the time at which the statement began to execute. (Within a stored routine or trigger, NOW() returns the time at which the routine or triggering statement began to execute.)</p> </blockquote> http://stackoverflow.com/questions/1408664/why-is-doublebuffered-disabled-by-default 11 Why is DoubleBuffered disabled by default? Wouter van Nifterick 2009-09-11T02:07:43Z 2009-09-11T14:02:51Z <p>After creating a new form, I usually perform this ritual:</p> <ol> <li>Change the name into something meaningful;</li> <li>Type a <code>Caption</code>;</li> <li>Change the position property (DefaultPosOnly is hardly ever what users expect);</li> <li>Set <code>ShowHint</code> to <code>true</code>;</li> <li><strong>Set <code>DoubleBuffered</code> to <code>true</code></strong>; </li> </ol> <p>I've been wondering for a while why the default value is 'False'. To me it just looks low-tech and crappy, and on my new machine I don't notice any difference in performance.</p> <p>Is doublebuffering problematic on older machines, VNC, Remote Desktop or in Virtual Machines maybe?</p> <p>Do you leave it on or off? Any recommendations?</p> http://stackoverflow.com/questions/1408434/how-do-i-make-the-scrollbars-thumbtrack-resize/1408621#1408621 5 Answer by Wouter van Nifterick for How do I make the scrollbar's thumbtrack resize Wouter van Nifterick 2009-09-11T01:44:51Z 2009-09-11T01:52:34Z <p>You can use the <code>PageSize</code> property to influence the thumb size.</p> <p>Example:</p> <pre><code>ScrollBar1.Min := 0; ScrollBar1.Max := 100; ScrollBar1.Position := 70; ScrollBar1.PageSize := 50; </code></pre> <p>Will look like:</p> <p><img src="http://www.xs4all.nl/~niff/stuff/PageSize.png" alt="Page Size" /></p> http://stackoverflow.com/questions/1402380/encryption-library-for-delphi/1402919#1402919 2 Answer by Wouter van Nifterick for Encryption library for Delphi Wouter van Nifterick 2009-09-10T01:04:58Z 2009-09-10T01:04:58Z <ul> <li><p>As mentioned by Argalatyr, <a href="http://www.cityinthesky.co.uk/cryptography.html" rel="nofollow">DCPCrypt</a> works with Delphi 2009 but it doesn't do RSA;</p></li> <li><p><a href="http://www.example-code.com/delphi/rsa%5FgenerateKey.asp" rel="nofollow">ChillKat</a> does support RSA and AES for Delphi, but it's not free;</p></li> <li><p>Sergey Kirichenko made a free Rijndael implementation that you can download here: <a href="http://rcolonel.tripod.com/dwnload/rc%5Frnd.zip" rel="nofollow">http://rcolonel.tripod.com/dwnload/rc_rnd.zip</a>. The files are dated november 2000, so I don't know if it'll work directly in the newer Delphi's.</p></li> <li><p>There used to be a zipfile with Delphi code for download here: <a href="http://ace.ulyssis.student.kuleuven.ac.be/~triade/GInt/bin/RSA.zip" rel="nofollow">http://ace.ulyssis.student.kuleuven.ac.be/~triade/GInt/bin/RSA.zip</a>, but the developer probably finished his study and the university removed his homepage. On <a href="http://www.pudn.com/downloads/sourcecode/crypt/detail1224.html" rel="nofollow">this chinese webpage</a> I could see the contents of the file (search for RSA.pas on the page and click the link). </p></li> </ul> <p>I don't know exactly what you mean with "long in the tooth" (old?), but I'd just go for Lockbox, because it provides everything you need. Except for the 2009 update, the last official changes were made in 2003. But hey, if it works it works.</p> http://stackoverflow.com/questions/1401370/form-designer-for-dummies/1402310#1402310 3 Answer by Wouter van Nifterick for Form Designer for Dummies... Wouter van Nifterick 2009-09-09T21:48:25Z 2009-09-09T21:48:25Z <p>Delphi is actually one of the fastest options for making realistic looking mockups.</p> <p>For example, the "quick-add" feature that is shown in the Balsamiq demonstration that Jon Skeet linked to is already built into the Delphi IDE. </p> <p><img src="http://www.xs4all.nl/~niff/stuff/DelphiToolPalette.png" alt="Delphi Tool Palette" /></p> <p>You can use the mockup directly in your "real" application once you and your client agree on something nice. </p> http://stackoverflow.com/questions/1381831/simple-sql-count-function/1381949#1381949 1 Answer by Wouter van Nifterick for Simple SQL - count function Wouter van Nifterick 2009-09-04T23:29:09Z 2009-09-04T23:29:09Z <p>How do you know so sure that there are 20 rows?</p> <p>This query:</p> <pre><code>select * from $table </code></pre> <p>should return the same number of rows as this number tells you:</p> <pre><code>select count(*) from $table` </code></pre> <p>If it doesn't, your table has probably been updated in the meanwhile. </p> http://stackoverflow.com/questions/1370565/compare-data-sets-and-return-best-match/1370733#1370733 1 Answer by Wouter van Nifterick for compare data sets and return best match Wouter van Nifterick 2009-09-02T23:42:13Z 2009-09-02T23:42:13Z <p>It would help if you show us your table structures, so I can be more specific.</p> <p>I'm assuming you've got a structure that resembles this:</p> <pre><code>Table item: (id, itemname) 1 item1 2 item2 3 item3 4 item4 5 item5 Table tag: (id, tagname) 1 cool 2 red 3 car Table itemtag: (id, itemid, tagid) 1 1 2 (=item1, red) 2 2 1 (=item2, cool) 3 2 3 (=item2, car) 4 3 1 (=item3, cool) 5 3 2 (=item3, red) 6 3 3 (=item3, car) 7 4 3 (=item3, car) 8 5 3 (=item3, car) </code></pre> <p>In general my approach would be to start out by counting each separate tag.</p> <pre><code>-- make a list of how often a tag was used: select tagid, count(*) as `tagscore` from itemtag group by tagid </code></pre> <p>This shows a row for each tag that was assigned to the item, with a score.</p> <p>In our example, that would be:</p> <pre><code>tag tagscore 1 2 (cool, 2x) 2 2 (red, 2x) 3 4 (car, 4x) set @ItemOfInterest=2; select itemname, sum(tagscore) as `totaltagscore`, GROUP_CONCAT(tags) as `tags` from itemtag join item on itemtag.itemid=item.id join /* join the query from above (scores per tag) */ (select tagid, count(*) as `tagscore` from itemtag group by tagid ) as `TagScores` on `TagScores`.tagid=itemtag.tagid where itemid&lt;&gt;@ItemOfInterest and /* get the taglist of the current item */ tagid in (select distinct tagid from itemtag where itemid=@ItemOfInterest) group by itemid order by 2 desc </code></pre> <p>Explanation: The query has 2 subqueries: One is to obtain the list tags from the item of interest. We only want to work with those. The other subquery generates a list of scores per tag.</p> <p>So in the end, each item in the database has a list of tag scores. Those scores are added up with <code>sum(tagscore)</code>, and that number is used to order the result (highest scores on top). </p> <p>To show a list of available tags, I've used GROUP_CONCAT.</p> <p>The query will result in something like this (I've made the actual data up here):</p> <pre><code>Item TagsScore Tags item3 15 red,cool,car item4 7 red,car item5 7 red item1 5 car item6 5 car </code></pre> http://stackoverflow.com/questions/1890490/upgrade-to-delphi-2010-or-stick-with-delphi-7-forever/1893740#1893740 Comment by Wouter van Nifterick on Upgrade to Delphi 2010, or stick with Delphi 7 "forever"? Wouter van Nifterick 2009-12-12T23:04:22Z 2009-12-12T23:04:22Z No, you need to buy Delphi 2010 ;) http://stackoverflow.com/questions/1747034/how-to-use-assignment-operator-with-timestamp-date-column-in-oracle/1747053#1747053 Comment by Wouter van Nifterick on how to use = assignment operator with timestamp date column in oracle Wouter van Nifterick 2009-11-17T08:58:36Z 2009-11-17T08:58:36Z I still wonder which imbecile invented Yoda date formatting (mmddyyyy) http://stackoverflow.com/questions/1644242/get-drive-information-free-space-etc-for-drives-on-windows-and-populate-a-mem Comment by Wouter van Nifterick on Get drive information (free space, etc.) for drives on Windows and populate a memo box Wouter van Nifterick 2009-10-31T15:02:10Z 2009-10-31T15:02:10Z Lowest rated Delphi question on SO so far. The lowest rated answer (also by Jim Moore) has unfortunately been deleted. I think it deserved some kind of reward. http://stackoverflow.com/questions/1619887/what-is-the-best-database-for-delphi-desktop-applications-that-supports-stored-pr/1620457#1620457 Comment by Wouter van Nifterick on What Is The Best Database For Delphi Desktop Applications That Supports Stored Procedures? Wouter van Nifterick 2009-10-26T03:40:57Z 2009-10-26T03:40:57Z I'll believe you if you say so, but your answer would be more interesting if you'd provide some reasons. http://stackoverflow.com/questions/1600991/are-there-any-advantages-in-using-const-parameters-with-an-ordinal-type/1601124#1601124 Comment by Wouter van Nifterick on Are there any advantages in using const parameters with an ordinal type? Wouter van Nifterick 2009-10-21T18:49:57Z 2009-10-21T18:49:57Z @Rob: Bummer that comments cannot be edited. It's easy to misread your comment as if you're saying that records are always passed as pointers. http://stackoverflow.com/questions/1600318/where-can-i-find-a-good-delphi-or-object-pascal-implementation-for-a-circular-buf/1600378#1600378 Comment by Wouter van Nifterick on Where can I find a good Delphi or Object Pascal implementation for a circular buffer Wouter van Nifterick 2009-10-21T16:37:27Z 2009-10-21T16:37:27Z The sources that you mean can be downloaded here: <a href="http://www.boyet.com/Code/ToDADS_source.zip" rel="nofollow">boyet.com/Code/ToDADS_source.zip</a>. It looks like you can get the book for $28 here: <a href="http://www.lulu.com/content/435417" rel="nofollow">lulu.com/content/435417</a> http://stackoverflow.com/questions/1582960/assembly-language-je-jump-function/1582978#1582978 Comment by Wouter van Nifterick on Assembly language je jump function Wouter van Nifterick 2009-10-17T19:15:46Z 2009-10-17T19:15:46Z Edsger Dijkstra must've hated assembler; it's full of GOTO's :-) http://stackoverflow.com/questions/1270850/mysql-how-can-i-find-last-mondays-date/1271041#1271041 Comment by Wouter van Nifterick on MYSQL: How can I find 'last monday's date' Wouter van Nifterick 2009-10-16T11:44:43Z 2009-10-16T11:44:43Z The trick here is that the value is calculated once and then cached manually. You could try what the optimizer does. It might be smart enough to cache it too, but you can't really rely on it. http://stackoverflow.com/questions/1528610/split-large-file-without-copy/1529594#1529594 Comment by Wouter van Nifterick on Split large file without copy? Wouter van Nifterick 2009-10-08T03:43:08Z 2009-10-08T03:43:08Z @Rob: Others answered that already. I read the question and realised that the OP doesn't especially want to split a file without copying it. He wants to copy a large number of files fast. I thought it would be helpful to assist him in getting that job done. http://stackoverflow.com/questions/1490839/result-of-previous-line-c-programming/1490884#1490884 Comment by Wouter van Nifterick on Result of previous line (C programming) Wouter van Nifterick 2009-10-01T03:59:35Z 2009-10-01T03:59:35Z The code works, but it somehow feels wrong to teach a beginning programmer to rely on implicit rounding. http://stackoverflow.com/questions/377188/best-practises-increase-mood-for-coding/377346#377346 Comment by Wouter van Nifterick on Best Practises - Increase Mood for Coding Wouter van Nifterick 2009-10-01T03:36:33Z 2009-10-01T03:36:33Z +1 for the heroin tip. -1 for RTS. Net result: 0. :-) http://stackoverflow.com/questions/1484927/winforms-floating-windows-like-delphi7-ide/1484997#1484997 Comment by Wouter van Nifterick on WinForms floating windows (like Delphi7 IDE) Wouter van Nifterick 2009-09-29T01:13:17Z 2009-09-29T01:13:17Z This question is tagged &quot;Delphi&quot;, and you're basically saying that Delphi's UI is crap and that it should be more like Visual Studio. Oooooooh! I think it's safer to walk into a Hell's Angels bar and shout: &quot;I JUST PISSED ON YOUR STUPID MOPEDS YOU FAGS!&quot;. http://stackoverflow.com/questions/1484207/how-to-enumerate-all-available-wifi-networks-using-delphi/1484221#1484221 Comment by Wouter van Nifterick on How to enumerate all available WiFi networks using Delphi Wouter van Nifterick 2009-09-27T19:20:34Z 2009-09-27T19:20:34Z -1: Not helpful http://stackoverflow.com/questions/1478589/delphi-5-itemindex-select-doesnt Comment by Wouter van Nifterick on Delphi 5 itemindex select doesn't Wouter van Nifterick 2009-09-26T00:50:56Z 2009-09-26T00:50:56Z The question is legitimate... If you have multiselect on, setting <code>itemindex</code> focuses the selected item but doesn't select it. James, please read up on the selected property, and you don't need your own procedure to clear a listbox. Just call <code>ListBox1.ClearSelection</code> http://stackoverflow.com/questions/1478589/delphi-5-itemindex-select-doesnt/1478667#1478667 Comment by Wouter van Nifterick on Delphi 5 itemindex select doesn't Wouter van Nifterick 2009-09-26T00:47:31Z 2009-09-26T00:47:31Z -1. You just wrapped the non-working code in a procedure. How is that going to make it work?