User Lars Fosdal - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T20:31:55Zhttp://stackoverflow.com/feeds/user/10002http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/346492/why-werent-you-at-coderage-iii/362142#3621420Answer by Lars Fosdal for Why Weren't You at CodeRage III?Lars Fosdal2008-12-12T07:46:13Z2008-12-12T07:46:13Z<p>Time constraints. Just too much to do atm.
Will want to pick and choose from the recordings, though.</p>
http://stackoverflow.com/questions/170038/activex-events-between-apartments/179903#1799031Answer by Lars Fosdal for ActiveX events between apartmentsLars Fosdal2008-10-07T19:11:34Z2008-10-07T19:11:34Z<p>Are you accessing objects that were created in the same thread as the event handler or were the COM object created in the main thread? If you are not in the same thread context in the eventhandler as the thread that created the object, you may get access violations when you try accessing the COM object.</p>
<p>A quick fix workaround can be to post a message to the main thread from the event handler, and have the main thread access the COM object in the main thread context, instead of directly in the COM event handler.</p>
<p>Threads and COM is not less complicated that threads without COM.</p>
http://stackoverflow.com/questions/150011/precision-of-reals-through-writeln-readln-in-delphi/156699#1566990Answer by Lars Fosdal for Precision of reals through writeln/readln in DelphiLars Fosdal2008-10-01T08:28:14Z2008-10-01T08:28:14Z<p>Depending on how much processing you need to do, an alternative could be to keep the numbers in BCD format to retain original accuracy.</p>
http://stackoverflow.com/questions/107617/what-is-the-best-or-cheapest-library-for-creating-pdf-files-in-delphi/126007#1260072Answer by Lars Fosdal for What is the best or cheapest library for creating PDF files in Delphi?Lars Fosdal2008-09-24T08:22:33Z2008-09-24T08:22:33Z<p><a href="http://gnostice.com/" rel="nofollow">Gnostice</a> have some very neat native VCL components (<a href="http://gnostice.com/edoc_engineOverview.asp" rel="nofollow">eDocEngine</a>, <a href="http://gnostice.com/PDFtoolkitoverview.asp" rel="nofollow">PDFToolKit</a>) for Delphi and C++Builder.</p>
http://stackoverflow.com/questions/84798/whats-the-best-logging-package-for-delphi/84890#848901Answer by Lars Fosdal for What's the Best Logging Package for Delphi?Lars Fosdal2008-09-17T16:09:58Z2008-09-17T16:09:58Z<p>Duplicate of<br />
<a href="http://stackoverflow.com/questions/72983/which-logging-library-is-better">http://stackoverflow.com/questions/72983/which-logging-library-is-better</a><br />
Also partially answered in<br />
<a href="http://stackoverflow.com/questions/72562/exception-handling-in-delphi">http://stackoverflow.com/questions/72562/exception-handling-in-delphi</a></p>
http://stackoverflow.com/questions/72562/exception-handling-in-delphi/72709#727094Answer by Lars Fosdal for Exception handling in DelphiLars Fosdal2008-09-16T14:12:32Z2008-09-16T17:25:44Z<p>Any exception not explicitly or generally handled at a specific level will trickle upwards in the call stack. The Delphi RTL (Run Time Library) will generate a set of different exception classes - (mathematical errors, access errors, class specific errors etc). You can chose to handle them specifically or generally in the different try except blocks.</p>
<p>You don't really need to declare any new exception classes unless you need to propagate a specific functional context with the exception.</p>
<p>As previous commenters wrote, you can also add a mother of all exception handlers like MadExcept or EurekaLog to catch the uncaught.</p>
<p>edit: This is a blanket insurance against unhandled exceptions</p>
<pre><code>try
ThisFunctionMayFail;
except
// but it sure won't crash the application
on e:exception
do begin
// something sensible to handle the error
// or perhaps log and/or display the the generic e.description message
end
end;
</code></pre>
http://stackoverflow.com/questions/74614/delphi-out-of-resources/74678#746781Answer by Lars Fosdal for Delphi Out of resourcesLars Fosdal2008-09-16T17:14:01Z2008-09-16T17:14:01Z<p>Most likely a corrupted project.res file. Try renaming the old and see if it is successfully recreated?</p>
http://stackoverflow.com/questions/74386/using-dlr-from-unmanaged-code/74456#744564Answer by Lars Fosdal for Using DLR from Unmanaged CodeLars Fosdal2008-09-16T16:51:53Z2008-09-16T16:51:53Z<p>Yes. Delphi for Win32 example here: <a href="http://interop.managed-vcl.com/" rel="nofollow">http://interop.managed-vcl.com/</a><br />
Shows how to use a C# as well as a Delphi.NET assembly from Delphi for Win32.</p>
http://stackoverflow.com/questions/73895/delphi-component-serialization/74300#743003Answer by Lars Fosdal for Delphi Component SerializationLars Fosdal2008-09-16T16:36:10Z2008-09-16T16:36:10Z<p>The built-in RTTI based system for serializing published properties is vulnerable to changes in the components. Going forwards is manageable as long as old properties are kept in new objects. I.e. you leave the property interface as is, but can toss away the contents if you like. Going backwards is worse - as a newer version saved property can't be opened in older version load, and that will be a problem.</p>
<p>There are components / libs (<a href="http://www.torry.net/quicksearchd.php?String=RTTI&Title=Yes" rel="nofollow">http://www.torry.net/quicksearchd.php?String=RTTI&Title=Yes</a>) that can add serialization in XML format and this may help a bit as you can choose to skip content you don't know.</p>
<p>You still need to be mindful about how you design your published content and should probably find a way to "ignore but propagate" content that your current version don't understand. This will allow you to open and change a file in a newer format while attempting to keep newer attributes, instead of stripping them.</p>
http://stackoverflow.com/questions/71766/class-static-constants-in-delphi/71889#718893Answer by Lars Fosdal for Class/Static Constants in DelphiLars Fosdal2008-09-16T12:55:21Z2008-09-16T13:04:07Z<pre><code> TMyObject = class
private
class var FLogger : TLogLogger;
procedure SetLogger(value:TLogLogger);
property Logger : TLogLogger read FLogger write SetLogger;
end;
procedure TMyObject.SetLogger(value:TLogLogger);
begin
// sanity checks here
FLogger := Value;
end;
</code></pre>
<p>Note that this class variable will be writable from any class instance, hence you can set it up somewhere else in the code, usually based on some condition (type of logger etc.).</p>
<p>Edit: It will also be the same in all descendants of the class. Change it in one of the children, and it changes for all descendant instances.
You could also set up default instance handling.</p>
<pre><code> TMyObject = class
private
class var FLogger : TLogLogger;
procedure SetLogger(value:TLogLogger);
function GetLogger:TLogLogger;
property Logger : TLogLogger read GetLogger write SetLogger;
end;
function TMyObject.GetLogger:TLogLogger;
begin
if not Assigned(FLogger)
then FLogger := TSomeLogLoggerClass.Create;
Result := FLogger;
end;
procedure TMyObject.SetLogger(value:TLogLogger);
begin
// sanity checks here
FLogger := Value;
end;
</code></pre>
http://stackoverflow.com/questions/33336/documenting-delphi/71267#712670Answer by Lars Fosdal for Documenting DelphiLars Fosdal2008-09-16T11:08:59Z2008-09-16T11:08:59Z<p>Another option would be Pascal Browser (PAB) from <a href="http://www.peganza.com/#PAB" rel="nofollow">http://www.peganza.com/#PAB</a><br />
The Pascal Analyzer from Peganza is also worth a look.</p>
http://stackoverflow.com/questions/63607/rendering-svg-and-delphi/71124#711241Answer by Lars Fosdal for Rendering SVG and DelphiLars Fosdal2008-09-16T10:44:02Z2008-09-16T10:44:02Z<p>Adobe's own SVG Viewer (<a href="http://www.adobe.com/svg/viewer/install/" rel="nofollow">http://www.adobe.com/svg/viewer/install/</a>) is COM based and can be used in Delphi by wrapping it with the import tools. The Adobe SVG viewer is discontinued, but will be available for download until end of 2008. I don't know of any direct COM based replacements at the point of writing this, but there are some products mentioned here (<a href="http://wiki.svg.org/Viewer_Implementations" rel="nofollow">http://wiki.svg.org/Viewer_Implementations</a>).</p>
<p>You can control the SVG container and DOM in detail, and it supports interaction and dynamic SVG documents.</p>
http://stackoverflow.com/questions/15190/changing-current-save-default-directory-in-delphi-2007-without-using-save-as/70200#702000Answer by Lars Fosdal for Changing CURRENT save/default directory in Delphi 2007 without using Save-AsLars Fosdal2008-09-16T07:53:00Z2008-09-16T07:53:00Z<p>Do NOT use a path relative to .exe path. That will get you into trouble with Windows XP in limited access mode, as well as with Windows Vista.</p>
<p>Do you need one database for all users?
Use a path relative to All Users\Application Data directory.</p>
<p>Do you need separate databases per user?
Use a path relative to user's private User\Application Data directory.</p>
<p>Do you need multiple databases per user?
Use a path relative to user's My Documents directory.</p>
<p>Use any of the above as default, but add registry keys that allow you to override the settings.</p>
http://stackoverflow.com/questions/12685/what-is-needed-to-get-delphi-back-on-top/70085#700853Answer by Lars Fosdal for What is needed to get Delphi back on top?Lars Fosdal2008-09-16T07:32:47Z2008-09-16T07:32:47Z<p>Let's see what the Embarcadero era will bring. It is no secret that the Inprise/Borland period was a period of missing focus when it came to the Delphi/C++Builder tools.</p>
<p>Having used Turbo Pascal and Delphi since their conception, I still haven't managed to find other tools that equally rich in function, performance and ease of use. It is even harder to find a language that surpass Delphi code in readability and maintainability. </p>
<p>Yes - there are areas where Java, Python, Ruby, C# or even C++ work better, but if you are doing native Windows applications - there simply is no better tool available. It is also a glittering tool for writing data servers.</p>
<p>With Delphi 2009 and Generics, Unicode and other assorted tidbits - Delphi has enough vitality to hold it's own against the steady flow of "new and shiny". With the next versions heading for parallelism and 64-bit - the future looks solid.</p>
<p>Some tool designs just keep working and cuts through your work.<br />
<strong>Delphi is nostalgic in the same way as a knife is nostalgic</strong>. </p>
http://stackoverflow.com/questions/61418/how-to-disable-a-warning-in-delphi-about-return-value-might-be-undefined/69778#697781Answer by Lars Fosdal for How to disable a warning in Delphi about "return value ... might be undefined"?Lars Fosdal2008-09-16T06:21:32Z2008-09-16T06:21:32Z<p>I am not sure that I want to see the code for this unit... after all, the error occurs at line 6939 ... Maybe some internal compiler table have been exceeded?</p>
http://stackoverflow.com/questions/133325/minimize-a-external-application-with-delphi/134011#134011Comment by Lars Fosdal on Minimize a external application with DelphiLars Fosdal2008-10-01T08:36:19Z2008-10-01T08:36:19ZNote that this will not work on Windows Vista unless your application run with elevated privileges.http://stackoverflow.com/questions/123534/is-delphi-still-a-viable-choice-for-development/123699#123699Comment by Lars Fosdal on Is Delphi still a viable choice for development?Lars Fosdal2008-09-28T06:14:01Z2008-09-28T06:14:01ZIndeed - C# f.x. is the spitting image of Delphi. A Delphi developer will learn C# faster than a Java or C++ developer.http://stackoverflow.com/questions/102254/hidden-features-of-delphi/102585#102585Comment by Lars Fosdal on Hidden Features of DelphiLars Fosdal2008-09-24T08:10:44Z2008-09-24T08:10:44ZFor older versions, Ctrl-K,Ctrl<0-9> creates a bookmark, while Ctrl-Q, Ctrl-<0-n> jumps to the bookmark (if it exists).http://stackoverflow.com/questions/84798/whats-the-best-logging-package-for-delphi/84890#84890Comment by Lars Fosdal on What's the Best Logging Package for Delphi?Lars Fosdal2008-09-17T16:46:54Z2008-09-17T16:46:54ZLoggers and Exception tracers are two different tools, IMO.
The two most used exception tracing packages would be (as mentioned in the exception handling thread): MadExcept and EurekaLog. MadExcept is free for certain uses.http://stackoverflow.com/questions/71766/class-static-constants-in-delphi/71889#71889Comment by Lars Fosdal on Class/Static Constants in DelphiLars Fosdal2008-09-17T16:40:10Z2008-09-17T16:40:10ZIn theory, yes. Adding a crit.section would help - but that comes at a price. Best thing would be a class method, such as in the init section example, combined with an assert in the get routine. You might even want an assert in the setter to avoid multiple setters. YMMV.http://stackoverflow.com/questions/82113/do-delphi-class-vars-have-global-or-thread-local-storage/82148#82148Comment by Lars Fosdal on Do Delphi class vars have global or thread local storage?Lars Fosdal2008-09-17T11:48:07Z2008-09-17T11:48:07ZDaniel's answer is correct and I voted it up. I do wonder if you can use a little trickery by referring the class var to a thread var? Haven't tried - and not gonna try either :)http://stackoverflow.com/questions/73895/delphi-component-serialization/74244#74244Comment by Lars Fosdal on Delphi Component SerializationLars Fosdal2008-09-17T06:46:45Z2008-09-17T06:46:45ZYou can make new releases able to read old streams as long as you still have read support for old and obsolete parameters. The problem lies in getting old releases to read new streams which cannot be done without custom serialization.http://stackoverflow.com/questions/37185/whats-the-idiomatic-way-to-do-async-socket-programming-in-delphi/44613#44613Comment by Lars Fosdal on What's the idiomatic way to do async socket programming in Delphi?Lars Fosdal2008-09-17T06:41:47Z2008-09-17T06:41:47ZI guess you would still have to worry about data access sync'ing while using closures or is all the communication serialized? How does this combine with f.x. asynch. database responses providing data to the large number of incoming requests? Use work thread pools? You should blog this.http://stackoverflow.com/questions/71766/class-static-constants-in-delphi/73486#73486Comment by Lars Fosdal on Class/Static Constants in DelphiLars Fosdal2008-09-16T16:46:00Z2008-09-16T16:46:00ZThere is a few drawback with putting stuff in init section: Even if you don't use the class, it will be linked in as long as you use the unit. Also, the init order may not always be what you think it is, and will change as you change the position of units in the uses clause.