User Andreas - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T02:40:39Zhttp://stackoverflow.com/feeds/user/44005http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/814648/delphi-what-are-your-dos-and-donts-tips/814904#81490413Answer by Andreas for Delphi: What are your "Do's and Don'ts" tips?Andreas2009-05-02T13:58:36Z2009-12-08T06:55:49Z<ol>
<li><p>As a Delphi 2009 user turn off the StringChecks option in the project settings. This causes an immense performance loss and code bloat if it is on (what it is by default). It is only needed due to the lack of a C++Builder unicode migration tool, but all Delphi users have to pay for it.</p></li>
<li><p>Don't use "raise E;"</p>
<pre><code>on E: Exception do
begin
...
raise E;
end;
</code></pre>
<p>This will lead to an access violation because E is destroyed in the "end;". Change the code to "raise;" which calls the RTL function System.RaiseAgain instead of System.RaiseExcept(E)</p></li>
<li><p>Use "const" for managed types (string, dynamic array, variant, interface). This will increase the speed of your application.</p></li>
<li><p>Don't call the constructor after "try" because the variable will be uninitialized in the "finally" if the constructor throws an exception. Alternatively you can assign "nil" to the variable before the "try" and then call the constructor in the "try".</p></li>
<li><p>Don't use strings for buffers. Strings are String and not Byte-Arrays. Especially if you plan to migrate your code to Delphi 2009 where SizeOf(Char) <> SizeOf(Byte).</p></li>
<li><p>Don't combine "not" with a relation ("if not i <> 2") because "not" has a higher evaluation priority and will execute a bitwise not before the relation is evaluated resulting in odd results. Furthermore every relation operator has its counter-operator which makes the usage of "not" unnecessary.</p></li>
<li><p>Use the overloaded Date/Time/Float functions with a self defined FormatSettings parameter if you write or read from files. If one of your customers use different format settings (e.g. "," as decimal separator), your application will fail otherwise.</p></li>
</ol>
http://stackoverflow.com/questions/1810055/which-is-the-correct-text-comparison-method-for-an-international-application-an/1810290#18102906Answer by Andreas for which is the correct text comparison method for an international application...AnsiCompareText or CompareText?Andreas2009-11-27T19:14:03Z2009-11-27T19:14:03Z<p>CompareText does an ASCII comparision while AnsiCompareText uses the ANSI codepage (or in Delphi 2009+ the unicode table) to compare characters. So CompareText only works if you have plain English text.</p>
http://stackoverflow.com/questions/1805537/delphi-5-ide-command-line-return-codes/1805581#18055815Answer by Andreas for Delphi 5 IDE command-line return codesAndreas2009-11-26T20:47:40Z2009-11-26T20:47:40Z<p>The only help refers to the command line compiler dcc32.exe and not the IDE.</p>
<p>Replacing the delphi32.exe by dcc32.exe should solve your problem.</p>
http://stackoverflow.com/questions/1694001/is-there-a-fast-gettoken-routine-for-delphi/1695884#16958843Answer by Andreas for Is There A Fast GetToken Routine For Delphi?Andreas2009-11-08T09:43:14Z2009-11-08T09:43:14Z<p>Your new function (the one with PChar) should declare "Delim" as <strong>Char</strong> and not as <strong>String</strong>. In your current implementation the compiler has to convert the PLine^ char into a string to compare it with "Delim". And that happens in a tight loop resulting is an enormous performance hit.</p>
<pre><code>function GetTok(const Line: string; const Delim: Char{<<==}; const TokenNum: Byte): string;
{ LK Feb 12, 2007 - This function has been optimized as best as possible }
{ LK Nov 7, 2009 - Reoptimized using PChars instead of calls to Pos and PosEx }
{ See; http://stackoverflow.com/questions/1694001/is-there-a-fast-gettoken-routine-for-delphi }
var
I: integer;
PLine, PStart: PChar;
begin
PLine := PChar(Line);
PStart := PLine;
inc(PLine);
for I := 1 to TokenNum do begin
while (PLine^ <> #0) and (PLine^ <> Delim) do
inc(PLine);
if I = TokenNum then begin
SetString(Result, PStart, PLine - PStart);
break;
end;
if PLine^ = #0 then begin
Result := '';
break;
end;
inc(PLine);
PStart := PLine;
end;
end; { GetTok }
</code></pre>
http://stackoverflow.com/questions/1603427/delphi-2010-new-rtti-setting-propertyvalue-to-arbitary-value/1603530#16035305Answer by Andreas for Delphi 2010: New RTTI, setting propertyvalue to arbitary valueAndreas2009-10-21T20:51:09Z2009-10-21T20:51:09Z<p>TValue is not a Variant. You can only read the datatype that "you" put into it.</p>
<p>TValue.Cast doesn't work because it has the same semantic that implicit type casts have. You cannot assign an integer to a string or vice versa. But you can assign an integer to a float, or you can assign an integer to a int64.</p>
http://stackoverflow.com/questions/1505617/how-can-i-make-a-component-disappear-in-the-form-designer/1505716#150571611Answer by Andreas for How can I make a component disappear in the form designer?Andreas2009-10-01T18:40:17Z2009-10-01T18:40:17Z<p>You can set the "csNoDesignVisible" ControlStyle flag of the control. If that flag is set the Visible property will work as it does at runtime.</p>
http://stackoverflow.com/questions/1505088/how-can-i-make-a-tcheckbox-without-transparent-text-ie-it-ignores-themes/1505343#15053432Answer by Andreas for how can i make a TCheckbox without transparent text (ie: it ignores themes)?Andreas2009-10-01T17:33:58Z2009-10-01T17:33:58Z<p>A simple solution would be to put enough space characters into the TGroupBox.Caption property. A more complicated solution would be to derive from TGroupBox and use FillRect/DrawParentBackground in the Paint method to over paint the line.</p>
http://stackoverflow.com/questions/1129864/imagelistadd-returns-1-on-pc-controlled-with-pcanywhere1ImageList_Add returns -1 on PC controlled with pcAnywhereAndreas2009-07-15T07:12:31Z2009-09-24T23:02:19Z
<p>One of our applications fails on computers that are controlled via pcAnywhere because the ImageList_Add() WinAPI function fails to add the image/mask after some time. The function returns -1 and the number of icons in the imagelist doesn't change. On all other computers this is no problem. What is interesting is that we can add 99 bitmaps (LoadBitmap) to the imagelist but by adding the 100th bitmap ImageList_Add stops working.</p>
<p>I tried to write a simple test application that fills the imagelist by a specified number of bitmaps but that didn't cause the problem. So I'm standing in the rain. Does anybody have seen this strange behavior or has a solution or explanation for it?</p>
http://stackoverflow.com/questions/1386546/delphi-jvcl-jvwizard-page-add-at-runtime/1386634#13866342Answer by Andreas for Delphi & JVCL - JvWizard, page add at runtimeAndreas2009-09-06T20:24:46Z2009-09-06T20:24:46Z<p>Instead of calling Pages.Insert you must set the Page.Wizard property to the Wizard component. This will set the parent and inserts the page.</p>
<pre><code>procedure TForm1.FormCreate(Sender: TObject);
var
Page: TJvWizardCustomPage;
begin
Page := TJvWizardWelcomePage.Create(Self);
Page.Wizard := JvWizard1;
JvWizard1.ActivePage := Page;
end;
</code></pre>
http://stackoverflow.com/questions/1385344/is-there-a-way-to-install-delphi-2010-on-windows-2000/1385816#13858166Answer by Andreas for Is there a way to install Delphi 2010 on Windows 2000Andreas2009-09-06T14:42:19Z2009-09-06T14:42:19Z<p>You could try to start the setup.exe with the /Win2K parameter. Maybe this helps. But I heard from a German forum that a user who installed Delphi 2010 into Windows 2000 had lots of problems with the IDE. So use the /Win2K parameter at your own risk.</p>
<p>And you must have at least .NET 2.0 <strong>SP1</strong> installed</p>
http://stackoverflow.com/questions/1355258/delphi-7-forms-anchors-not-working-in-vista/1356859#13568594Answer by Andreas for Delphi 7 forms, anchors not working in VistaAndreas2009-08-31T10:41:32Z2009-08-31T10:41:32Z<p>Maybe it is related to the "Windows Kernel stack overflow" problem that occurs if your control has many parents. And if you run it on a 64 bit system the kernel stack overflow happens much faster. (more about this here: <a href="http://news.jrsoftware.org/news/toolbar2000/msg07779.html" rel="nofollow">http://news.jrsoftware.org/news/toolbar2000/msg07779.html</a>)</p>
<p>On Embarcadero's CodeCentral is a workaround for this bug (which is also copied almost 1:1 into the Delphi 2009 VCL): <a href="http://cc.embarcadero.com/Item/25646" rel="nofollow">http://cc.embarcadero.com/Item/25646</a></p>
http://stackoverflow.com/questions/1136581/why-my-child-class-doesnt-inherit-all-methods-from-the-parent-class/1136618#11366185Answer by Andreas for Why my child class doesn't inherit all methods from the parent class?Andreas2009-07-16T10:07:26Z2009-07-16T10:07:26Z<p>A private method is (unit) private. What you need is a protected method. Protected methods can be accessed by any class that inherits from the base class even if they are in different units. User code can't access them (unless he inherits from the class).</p>
<pre><code>unit A;
interface
type
TBase = class(TObject)
private
procedure PrivateTest;
protected
procedure ProtectedTest;
end;
implementation
procedure TBase.PrivateTest;
begin
end;
procedure TBase.ProtectedTest;
begin
end;
end.
</code></pre>
<p>#</p>
<pre><code>unit B;
interface
uses
A;
type
TDerived = class(TBase)
public
procedure Test;
end;
implementation
procedure TDerived.Test;
begin
// PrivateTest; // compile error
ProtectedTest; // accepted by the compiler
end;
end.
</code></pre>
<p>#</p>
<pre><code>unit C;
interface
uses
A, B;
implementation
var
Base: TBase;
Derived: TDerived;
initialization
Base := TBase.Create;
Derived := TDerived.Create;
// Base.PrivateTest; // compile error
// Base.ProtectedTest; // compile error
// Derived.PrivateTest; // compile error
// Derived.ProtectedTest; // compile error
Derived.Test; // accepted by the compiler
Derived.Free;
Base.Free;
end;
</code></pre>
http://stackoverflow.com/questions/1118643/how-to-raise-exceptions-in-delphi/1118655#111865520Answer by Andreas for How to raise exceptions in Delphi?Andreas2009-07-13T10:12:35Z2009-07-13T10:12:35Z<p>The exception class "Exception" is declared in the unit SysUtils. So you must add "SysUtils" to your uses-clause.</p>
<pre><code>uses
SysUtils;
procedure RaiseMyException;
begin
raise Exception.Create('Hallo World!');
end;
</code></pre>
http://stackoverflow.com/questions/997767/installing-multiple-library-versions-in-delphi-cbuilder/998096#9980965Answer by Andreas for Installing multiple library versions in Delphi / C++BuilderAndreas2009-06-15T20:03:30Z2009-06-15T20:03:30Z<p>We had the same problem, supporting older versions compiled with different versions of the components. Our solution was/is to use the IDE's " -r " command line option. With this switch it is possible to use different library paths and packages (at the same time). The only problem that we encountered with this approach was that some of us regularly tried to open an older project version in the wrong IDE instance.</p>
<pre><code>[Old version 1.0] bds.exe -rVersion1.0
[trunk version ] bds.exe
</code></pre>
<p>How to setup those:</p>
<ol>
<li>Start your IDE as you are used to it.</li>
<li>Install everything you need for "Version 1.0"</li>
<li>Close the IDE</li>
<li>Install all (old) packages (JCL/JVCL/...)</li>
<li>Start regedit.exe</li>
<li>Export the registry key HKCU\Software\CodeGear\BDS\5.0 to a *.reg file</li>
<li>Start nodepad.exe and do a search&replace in the *.reg file for "CodeGear\BDS\5.0" and replace it with "CodeGear\Version1.0\5.0"</li>
<li>Import the *.reg file (by double clicking it in the Windows Explorer)</li>
<li>Create a copy of your RAD Studio 2007 startmenu link and change the command line to include the "-rVersion1.0" key.</li>
</ol>
<p>Now you have two IDE configurations that are equal. You can now change the IDE that doesn't use the " -r " command option to your trunk version's packages.
When you install all the packages, you must not use the default BPL and DCP directories unless the different package versions use different file names (like the JCL and JVCL do).</p>
<pre><code>CodeGear\BDS\5.0 = Delphi 2007
CodeGear\BDS\6.0 = Delphi 2009
Borland\BDS\4.0 = Delphi 2006
Borland\Delphi\7.0 = Delphi 7
</code></pre>
http://stackoverflow.com/questions/997795/how-are-the-basic-delphi-types-related-to-each-other/997990#9979904Answer by Andreas for How are the basic Delphi types related to each other?Andreas2009-06-15T19:44:08Z2009-06-15T19:44:07Z<pre><code>UInt8 = Byte
Int8 = ShortInt
UInt16 = Word
Int16 = SmallInt
UInt32 = LongWord
Int32 = LongInt
UInt64 = UInt64
Int64 = Int64
int = Integer
uint = Cardinal
NativeInt (generic, depends on CPU register size)
NativeUInt (generic, depends on CPU register size)
</code></pre>
<p>Cardinal and Integer are generic types. For 16 bit they were 16 byte large and for 32 bit they are 32 bit large. For 64 bit the Windows 64bit platform (<a href="http://msdn.microsoft.com/en-us/library/aa384083%28VS.85%29.aspx" rel="nofollow">LLP64</a>) defines them as 32 bit. The new NativeInt and NativeUInt types are now the CPU register sized types.</p>
http://stackoverflow.com/questions/967115/how-to-temporarily-turn-off-snap-to-anything-in-delphi-ide-visual-designer/969268#9692684Answer by Andreas for How to temporarily turn off "snap-to" (anything) in Delphi IDE /visual designer (D2007)Andreas2009-06-09T10:30:36Z2009-06-09T10:30:36Z<p>In Delphi 2009 CodeGear has changed the behavior of ALT+Move to also disable the designer guide lines. But in Delphi 2007 this feature can't be turned off without an external tool.</p>
<p>On of those tools (and I think the only that can do this) is the <a href="http://andy.jgknet.de/blog/?page%5Fid=10" rel="nofollow">DDevExtensions 1.6 IDE plugin</a> that adds this ability to ALT+Move for Delphi 2007.</p>
http://stackoverflow.com/questions/947068/non-modal-child-window-that-allows-mainform-to-be-drawn-on-top-delphi/948772#9487725Answer by Andreas for Non-Modal Child Window That Allows Mainform To Be Drawn On Top - DelphiAndreas2009-06-04T05:52:42Z2009-06-04T05:52:42Z<p>With Delphi 2007/2009 the VCL changed its behavior regarding the parent of a form. In Delphi 1-2006 the parent of a form was the hidden application window (Application.Handle). In Delphi 2007/2009 the parent of a form is the main form and the main form's parent is the desktop.</p>
<p>If you want to change this you can either change the *.dpr line <code>Application.MainFormOnTaskbar</code> to <code>False</code> what gives you the the old behavior back but also makes your application look strange in Vista and Windows 7. Or you can override the virtual CreateParams method in all your non-modal child forms and set the <code>Params.WndParent</code> field to the desktop (<code>HWND_DESKTOP</code>) or the still existing <code>Application.Handle</code>.</p>
<pre><code>type
TMyChildForm = class(TForm)
protected
procedure CreateParams(var Params: TCreateParams); override;
end;
procedure TForm1.CreateParams(var Params: TCreateParams);
begin
inherited CreateParams(Params);
Params.WndParent := Application.Handle;
end;
</code></pre>
http://stackoverflow.com/questions/924659/how-can-i-cast-an-object-to-a-generic/925402#92540210Answer by Andreas for How can I cast an object to a generic?Andreas2009-05-29T10:45:59Z2009-05-29T12:15:55Z<p>I'm using a typecast helper class that does the typecasts and also checks if the two classes are compatible.</p>
<pre><code>class function TPersistGeneric<T>.Init: T;
var
o : TXPersistent; // root class
begin
case PTypeInfo(TypeInfo(T))^.Kind of
tkClass : begin
// xpcreate returns txpersistent, a root class of T
o := XPCreate(GetTypeName(TypeInfo(T))); // has a listed of registered classes
Result := TTypeCast.DynamicCast<TXPersistent, T>(o);
end;
else
result := Default(T);
end;
</code></pre>
<p>Here is the class:</p>
<pre><code>type
TTypeCast = class
public
// ReinterpretCast does a hard type cast
class function ReinterpretCast<ReturnT>(const Value): ReturnT;
// StaticCast does a hard type cast but requires an input type
class function StaticCast<T, ReturnT>(const Value: T): ReturnT;
// DynamicCast is like the as-operator. It checks if the object can be typecasted
class function DynamicCast<T, ReturnT>(const Value: T): ReturnT;
end;
class function TTypeCast.ReinterpretCast<ReturnT>(const Value): ReturnT;
begin
Result := ReturnT(Value);
end;
class function TTypeCast.StaticCast<T, ReturnT>(const Value: T): ReturnT;
begin
Result := ReinterpretCast<ReturnT>(Value);
end;
class function TTypeCast.DynamicCast<T, ReturnT>(const Value: T): ReturnT;
var
TypeT, TypeReturnT: PTypeInfo;
Obj: TObject;
LClass: TClass;
ClassNameReturnT, ClassNameT: string;
FoundReturnT, FoundT: Boolean;
begin
TypeT := TypeInfo(T);
TypeReturnT := TypeInfo(ReturnT);
if (TypeT = nil) or (TypeReturnT = nil) then
raise Exception.Create('Missing Typeinformation');
if TypeT.Kind <> tkClass then
raise Exception.Create('Source type is not a class');
if TypeReturnT.Kind <> tkClass then
raise Exception.Create('Destination type is not a class');
Obj := TObject(Pointer(@Value)^);
if Obj = nil then
Result := Default(ReturnT)
else
begin
ClassNameReturnT := UTF8ToString(TypeReturnT.Name);
ClassNameT := UTF8ToString(TypeT.Name);
LClass := Obj.ClassType;
FoundReturnT := False;
FoundT := False;
while (LClass <> nil) and not (FoundT and FoundReturnT) do
begin
if not FoundReturnT and (LClass.ClassName = ClassNameReturnT) then
FoundReturnT := True;
if not FoundT and (LClass.ClassName = ClassNameT) then
FoundT := True;
LClass := LClass.ClassParent;
end;
//if LClass <> nil then << TObject doesn't work with this line
if FoundT and FoundReturnT then
Result := ReinterpretCast<ReturnT>(Obj)
else
if not FoundReturnT then
raise Exception.CreateFmt('Cannot cast class %s to %s',
[Obj.ClassName, ClassNameReturnT])
else
raise Exception.CreateFmt('Object (%s) is not of class %s',
[Obj.ClassName, ClassNameT]);
end;
end;
</code></pre>
http://stackoverflow.com/questions/921551/decal-and-delphi-2009/921605#9216053Answer by Andreas for DeCAL and Delphi 2009Andreas2009-05-28T15:47:42Z2009-05-28T15:47:42Z<p>Here is a DeCAL version that works with Delphi 2009.
<a href="http://cc.embarcadero.com/Item/26159" rel="nofollow">http://cc.embarcadero.com/Item/26159</a></p>
<p>There is also a rewrite of DeCAL using generics but that would require you to rewrite your code. <a href="http://cc.codegear.com/Item/26124" rel="nofollow">http://cc.codegear.com/Item/26124</a></p>
http://stackoverflow.com/questions/907406/interfaces-with-generics-setting-to-nil/907418#90741811Answer by Andreas for Interfaces with Generics - Setting to NILAndreas2009-05-25T17:04:20Z2009-05-25T17:04:20Z<p>Instead of <code>nil</code> you must use the new <code>Default(T)</code> which returns the default value for the generic parameter type. And for interfaces it is <code>nil</code></p>
<pre><code>procedure TFoo<T>.Clear;
begin
FField := Default(T);
end;
</code></pre>
http://stackoverflow.com/questions/859307/delphi-tolecontrol-puts-activecontrol-in-wrong-state/861735#8617351Answer by Andreas for Delphi: TOleControl puts ActiveControl in wrong state?Andreas2009-05-14T05:53:12Z2009-05-14T05:53:12Z<p>I have overcome this issue by using TEmbeddedWB (which is much better than the standard TWebBrowser) and then I had to add this OnShowUI event:</p>
<pre><code>function THtmlFrame.webBrowserShowUI(const dwID: Cardinal;
const pActiveObject: IOleInPlaceActiveObject;
const pCommandTarget: IOleCommandTarget; const pFrame: IOleInPlaceFrame;
const pDoc: IOleInPlaceUIWindow): HRESULT;
begin
try
if WebBrowser.CanFocus then
WebBrowser.SetFocus; // tell the VCL that the web-browser is focused
except
on E: EInvalidOperation do
; // ignore "Cannot focus inactive or invisible control"
end;
Result := S_FALSE;
end;
</code></pre>
<p><br>
But if you must use TWebBrowser you need to write more code:</p>
<pre><code>type
IDocHostUIHandler = interface(IUnknown)
['{bd3f23c0-d43e-11cf-893b-00aa00bdce1a}']
function ShowContextMenu(const dwID: DWORD; const ppt: PPOINT;
const CommandTarget: IUnknown; const Context: IDispatch): HRESULT; stdcall;
function GetHostInfo(var pInfo: TDOCHOSTUIINFO): HRESULT; stdcall;
function ShowUI(const dwID: DWORD; const pActiveObject: IOleInPlaceActiveObject;
const pCommandTarget: IOleCommandTarget; const pFrame: IOleInPlaceFrame;
const pDoc: IOleInPlaceUIWindow): HRESULT; stdcall;
function HideUI: HRESULT; stdcall;
function UpdateUI: HRESULT; stdcall;
function EnableModeless(const fEnable: BOOL): HRESULT; stdcall;
function OnDocWindowActivate(const fActivate: BOOL): HRESULT; stdcall;
function OnFrameWindowActivate(const fActivate: BOOL): HRESULT; stdcall;
function ResizeBorder(const prcBorder: PRECT; const pUIWindow: IOleInPlaceUIWindow; const fRameWindow: BOOL): HRESULT; stdcall;
function TranslateAccelerator(const lpMsg: PMSG; const pguidCmdGroup: PGUID; const nCmdID: DWORD): HRESULT; stdcall;
function GetOptionKeyPath(out pchKey: POLESTR; const dw: DWORD): HRESULT; stdcall;
function GetDropTarget(const pDropTarget: IDropTarget; out ppDropTarget: IDropTarget): HRESULT; stdcall;
function GetExternal(out ppDispatch: IDispatch): HRESULT; stdcall;
function TranslateUrl(const dwTranslate: DWORD; const pchURLIn: POLESTR; out ppchURLOut: POLESTR): HRESULT; stdcall;
function FilterDataObject(const pDO: IDataObject; out ppDORet: IDataObject): HRESULT; stdcall;
end; // IDocHostUIHandler
ICustomDoc = interface(IUnknown)
['{3050f3f0-98b5-11cf-bb82-00aa00bdce0b}']
function SetUIHandler(const pUIHandler: IDocHostUIHandler): HResult; stdcall;
end;
TDocHostUIHandler = class(TInterfacedObject, IDocHostUIHandler)
private
FWebBrowser: TWebBrowser;
protected
function EnableModeless(const fEnable: BOOL): HResult; stdcall;
function FilterDataObject(const pDO: IDataObject; out ppDORet: IDataObject): HResult; stdcall;
function GetDropTarget(const pDropTarget: IDropTarget; out ppDropTarget: IDropTarget): HResult; stdcall;
function GetExternal(out ppDispatch: IDispatch): HResult; stdcall;
function GetHostInfo(var pInfo: TDocHostUIInfo): HResult; stdcall;
function GetOptionKeyPath(var pchKey: POLESTR; const dw: DWORD): HResult; stdcall;
function HideUI: HResult; stdcall;
function OnDocWindowActivate(const fActivate: BOOL): HResult; stdcall;
function OnFrameWindowActivate(const fActivate: BOOL): HResult; stdcall;
function ResizeBorder(const prcBorder: PRECT; const pUIWindow: IOleInPlaceUIWindow;
const fFrameWindow: BOOL): HResult; stdcall;
function ShowContextMenu(const dwID: DWORD; const ppt: PPOINT;
const pcmdtReserved: IInterface; const pdispReserved: IDispatch): HResult; stdcall;
function ShowUI(const dwID: DWORD; const pActiveObject: IOleInPlaceActiveObject;
const pCommandTarget: IOleCommandTarget; const pFrame: IOleInPlaceFrame;
const pDoc: IOleInPlaceUIWindow): HResult; stdcall;
function TranslateAccelerator(const lpMsg: PMSG; const pguidCmdGroup: PGUID; const nCmdID: DWORD): HResult; stdcall;
function TranslateUrl(const dwTranslate: DWORD; const pchURLIn: POLESTR; var ppchURLOut: POLESTR): HResult; stdcall;
function UpdateUI: HResult; stdcall;
public
constructor Create(AWebBrowser: TWebBrowser);
property WebBrowser: TWebBrowser read FWebBrowser;
end;
{ TDocHostUIHandler }
function TDocHostUIHandler.EnableModeless(const fEnable: BOOL): HResult;
begin
Result := S_OK;
end;
function TDocHostUIHandler.FilterDataObject(const pDO: IDataObject; out ppDORet: IDataObject): HResult;
begin
ppDORet := nil;
Result := S_FALSE;
end;
function TDocHostUIHandler.GetDropTarget(const pDropTarget: IDropTarget; out ppDropTarget: IDropTarget): HResult;
begin
ppDropTarget := nil;
Result := E_FAIL;
end;
function TDocHostUIHandler.GetExternal(out ppDispatch: IDispatch): HResult;
begin
ppDispatch := nil;
Result := E_FAIL;
end;
function TDocHostUIHandler.GetHostInfo(var pInfo: TDocHostUIInfo): HResult;
begin
Result := S_OK;
end;
function TDocHostUIHandler.GetOptionKeyPath(var pchKey: POLESTR; const dw: DWORD): HResult;
begin
Result := E_FAIL;
end;
function TDocHostUIHandler.HideUI: HResult;
begin
Result := S_OK;
end;
function TDocHostUIHandler.OnDocWindowActivate(const fActivate: BOOL): HResult;
begin
Result := S_OK;
end;
function TDocHostUIHandler.OnFrameWindowActivate(const fActivate: BOOL): HResult;
begin
Result := S_OK;
end;
function TDocHostUIHandler.ResizeBorder(const prcBorder: PRECT; const pUIWindow: IOleInPlaceUIWindow; const fFrameWindow: BOOL): HResult;
begin
Result := S_FALSE;
end;
function TDocHostUIHandler.ShowContextMenu(const dwID: DWORD; const ppt: PPOINT; const pcmdtReserved: IInterface; const pdispReserved: IDispatch): HResult;
begin
Result := S_FALSE
end;
function TDocHostUIHandler.TranslateAccelerator(const lpMsg: PMSG; const pguidCmdGroup: PGUID; const nCmdID: DWORD): HResult;
begin
Result := S_FALSE;
end;
function TDocHostUIHandler.TranslateUrl(const dwTranslate: DWORD; const pchURLIn: POLESTR; var ppchURLOut: POLESTR): HResult;
begin
Result := E_FAIL;
end;
function TDocHostUIHandler.UpdateUI: HResult;
begin
Result := S_OK;
end;
function TDocHostUIHandler.ShowUI(const dwID: DWORD; const pActiveObject: IOleInPlaceActiveObject; const pCommandTarget: IOleCommandTarget;
const pFrame: IOleInPlaceFrame; const pDoc: IOleInPlaceUIWindow): HResult;
begin
try
if WebBrowser.CanFocus then
WebBrowser.SetFocus; // tell the VCL that the web-browser is focused
except
on E: EInvalidOperation do
; // ignore "Cannot focus inactive or invisible control"
end;
Result := S_OK;
end;
// install the DocHostUIHandler into the WebBrowser
var
CustomDoc: ICustomDoc;
begin
if WebBrowser1.Document.QueryInterface(ICustomDoc, CustomDoc) = S_OK then
CustomDoc.SetUIHandler(TDocHostUIHandler.Create(WebBrowser1));
end;
</code></pre>
http://stackoverflow.com/questions/831099/optimizing-class-size-in-delphi-is-there-something-like-packed-classes/834080#8340801Answer by Andreas for Optimizing Class Size in Delphi. Is there something like "packed classes"?Andreas2009-05-07T11:14:37Z2009-05-07T11:14:37Z<blockquote>
<p>I will expect it to use 6 bytes, but, due to alignment it ends up using 12 bytes</p>
</blockquote>
<p>Even if you write "TMyClass = class end;" the class will inherit from TObject which has virtual methods.</p>
<p>That makes</p>
<pre><code> 4 Bytes (VMT)
+ 4 Bytes (member1: Integer)
+ 1 Byte (member2: Boolean)
+ 1 Byte (member3: Byte);
+ 2 Bytes (alignment)
---------
12 Bytes
</code></pre>
<p>So if you disabled the alignment, you will win only 2 Bytes.</p>
<p>By ordering the fields by there data type size (in the larger class that you mention) can eliminate some alignment holes. And $A- (Delphi 5) or $A1 (newer) doesn't work. Neither in Delphi 7 nor in Delphi 2009.</p>
<p>BTW: in Delphi 2009 you have additional 4 Bytes for the "Thread.Monitor" increasing the total class size to <strong>16</strong> Bytes.</p>
http://stackoverflow.com/questions/776174/jcldotnet-and-some-odd-calling-patterns-using-assembler/776522#7765225Answer by Andreas for JclDotNet, and some odd calling patterns using assemblerAndreas2009-04-22T10:27:55Z2009-04-22T10:27:55Z<p>The assembler code removes CorBindToRuntimeEx's stackframe.
If you call CorBindToRuntimeEx all parameters are pushed to the stack (=> stdcall). The function then calls GetProcedureAddress to initialize the global _CorBindToRuntimeEx variable that now points to the 'CorBindToRuntimeEx' function.</p>
<p>After GetProcedureAddress returns the _CorBindToRuntimeEx function must be called. But here we have a problem. Delphi automatically added a "push ebp; mov ebp,esp" to the code (where the "begin" is). And in order to remove that stackframe the "mov esp,ebp; pop ebp" is used. The "jmp [_CorBindToRuntimeEx]" then sets the execution pointer to the _CorBindToRuntimeEx function which then uses the return address from our CorBindToRuntimeEx function.</p>
http://stackoverflow.com/questions/665143/delphi-2010-beta-whats-on-your-wishlist/665611#6656111Answer by Andreas for Delphi 2010 Beta: What's on your wishlist?Andreas2009-03-20T10:28:36Z2009-03-20T10:28:36Z<p>"Beta". Doesn't that mean that no new feature will be added. Only dropping of features. Or have I misunderstood the word "Beta". (rhetorical question)</p>
http://stackoverflow.com/questions/573392/delphi-2009-onkeydown-does-not-trap-as-delphi-2007-does/573446#57344612Answer by Andreas for Delphi 2009 OnKeyDown does not trap as Delphi 2007 doesAndreas2009-02-21T17:38:53Z2009-02-21T17:38:53Z<p>Are you sure that this worked in Delphi 2007? I just tried the code in Delphi 2007 and 2009. And both behave the same (No key stroke is eaten) If you want to accept only digits you should use the OnKeyPress event and set the Key parameter to #0.</p>
http://stackoverflow.com/questions/423955/how-to-include-link-c-lib-files-in-a-delphi-project/423975#4239758Answer by Andreas for How to include/link C .lib files in a Delphi project.Andreas2009-01-08T11:37:10Z2009-01-08T11:37:10Z<p>You can use the tlib.exe tool that comes with C++Builder. If you don't have C++Builder you can download the free C++Compiler 5.5 (<a href="http://cc.codegear.com/Free.aspx?id=24778" rel="nofollow">http://cc.codegear.com/Free.aspx?id=24778</a>) and use the tlib.exe from it.</p>
http://stackoverflow.com/questions/374304/how-can-i-make-delphi-2009-open-my-application-in-the-second-monitor-by-default/374311#37431110Answer by Andreas for How can I make Delphi 2009 open my application in the second monitor by default?Andreas2008-12-17T11:51:02Z2008-12-17T11:51:02Z<p>Delphi doesn't have his feature.</p>
<p>What I do is to add code to the OnCreate handler of the main form that moves the form to the second monitor if the Delphi-Debugger is attached to the application.</p>
<pre><code> if (DebugHook <> 0) and (Screen.MonitorCount > 1) then
Left := Screen.Monitors[1].Left;
</code></pre>
http://stackoverflow.com/questions/368913/whats-a-good-way-to-serialize-delphi-object-tree-to-xml-using-rtti-and-not-cust/368972#36897212Answer by Andreas for What's a good way to serialize Delphi object tree to XML--using RTTI and not custom code?Andreas2008-12-15T16:44:06Z2008-12-15T16:44:06Z<p>You can use the JVCL TJvAppXMLFileStorage component to serialize TPersistent derived classes.</p>
<pre><code>uses
JvAppXMLStorage;
var
Storage: TJvAppXMLFileStorage;
begin
Storage := TJvAppXMLFileStorage.Create(nil);
try
Storage.WritePersistent('', MyObject);
Storage.Xml.SaveToFile('S:\TestFiles\Test.xml');
Storage.Xml.LoadFromFile('S:\TestFiles\Test.xml');
Storage.ReadPersistent('', MyObject);
finally
Storage.Free;
end;
end;
</code></pre>
http://stackoverflow.com/questions/352479/delphi-warning-w1002-symbol-filesetdate-is-specific-to-a-platform/352528#3525284Answer by Andreas for Delphi warning - W1002 Symbol 'FileSetDate' is specific to a platformAndreas2008-12-09T11:57:01Z2008-12-09T11:57:01Z<p>You can turn off the platform unit and platform symbol compiler warnings. They are obsolete (and disabled in Delphi 2009 by default). They were introduced when there was a Delphi for Linux (Kylix). They do not have a meaning anymore. Especially with the replacement of Delphi.NET with Delphi Prism.
You can turn them off for the whole project in the Project Options dialog (Compiler Messages).</p>
http://stackoverflow.com/questions/347871/d2009-vcl-unit-that-wont-compile/348257#3482575Answer by Andreas for D2009 VCL unit that won't compile.Andreas2008-12-07T22:50:51Z2008-12-07T22:50:51Z<p>Does it help if you add the following line at the top of the DB.pas unit.</p>
<p>{$A8,B-,C+,D+,E-,F-,G+,H+,I+,J-,K-,L+,M-,N-,O+,P+,Q-,R-,S-,T-,U-,V+,W-,X+,Y+,Z1}</p>
<p>If it works after using this line, then your project options are not compatible with the settings that CodeGear used to compile the RTL/VCL.</p>
<p>BTW: Line 2536 is a line that contains only the text "type". Have you changed the file? Or are you missing Update 1?</p>
http://stackoverflow.com/questions/1862116/application-is-visible-on-taskbarComment by Andreas on Application is visible on taskbar?Andreas2009-12-07T20:44:59Z2009-12-07T20:44:59ZI think you gave too less information. An VCL Delphi application always has a taskbar button, so the answer would be "You know because it is always there".http://stackoverflow.com/questions/1649048/case-insensitive-bob-jenkins-hashComment by Andreas on Case-insensitive Bob Jenkins Hash?Andreas2009-10-30T15:18:31Z2009-10-30T15:18:31ZCompareText() and UpperCase() are also wrong for AnsiStrings because they only operate on ASCII strings.http://stackoverflow.com/questions/1574086/how-to-hunt-a-heisenbugComment by Andreas on How to hunt a HeisenbugAndreas2009-10-16T10:05:56Z2009-10-16T10:05:56Z@onnodb: The enum type is nothing else than a Byte/Word/Integer (depending on the $MINENUMSIZE). And without initialization it can contain data that fits into the Integer range but not into the enum range. The same is for Sets. A Set can consists of up to 32 Bytes. And without initialization the bits can be set for "elements" that aren't elements.http://stackoverflow.com/questions/1548909/delphi-most-successful-applications-developedComment by Andreas on Delphi - most successful applications developedAndreas2009-10-10T20:07:40Z2009-10-10T20:07:40ZBecause it contains a DVCLAL resource and has DFM file resources in the monolithic EXE ;-)http://stackoverflow.com/questions/1530548/how-to-call-a-dll-with-pascal-calling-convention-from-delphi/1530570#1530570Comment by Andreas on How to call a dll with "_pascal calling convention" from Delphi ?Andreas2009-10-07T15:25:23Z2009-10-07T15:25:23ZBetter make it PAnsiChar and AnsiString because in C a "char" is a 1 byte char.http://stackoverflow.com/questions/467391/what-is-the-best-way-to-stop-an-application-being-copied-and-used-without-the-own/1445134#1445134Comment by Andreas on What is the best way to stop an application being copied and used without the owner’s permission?Andreas2009-09-18T18:55:06Z2009-09-18T18:55:06ZDo you mean the SAP model? :-)http://stackoverflow.com/questions/1385344/is-there-a-way-to-install-delphi-2010-on-windows-2000/1385449#1385449Comment by Andreas on Is there a way to install Delphi 2010 on Windows 2000Andreas2009-09-06T14:35:25Z2009-09-06T14:35:25Z@dummzeuch: .NET 2.0 is not enough, they require .NET 3.5 which is not available for Windows 2000. I don't know what requires .NET 3.5 in the IDE but the installer has it as a prerequisite.http://stackoverflow.com/questions/1385344/is-there-a-way-to-install-delphi-2010-on-windows-2000/1385367#1385367Comment by Andreas on Is there a way to install Delphi 2010 on Windows 2000Andreas2009-09-06T11:46:51Z2009-09-06T11:46:51ZI can also target Windows 95 with Delphi 2010 if I modify the System.pas. But targeting a system is something completely different than running the application (aka IDE) that targets the system.http://stackoverflow.com/questions/1355258/delphi-7-forms-anchors-not-working-in-vista/1356859#1356859Comment by Andreas on Delphi 7 forms, anchors not working in VistaAndreas2009-09-01T10:20:52Z2009-09-01T10:20:52ZIt depends on how many WH_CALLWNDPROC window hooks are system-wide installed. (Logitech for example uses WH_CALLWNDPROC hooks, and so does the TActionManager).http://stackoverflow.com/questions/1319273/how-can-i-find-the-size-of-the-memory-referenced-by-a-pointer/1319360#1319360Comment by Andreas on How can I find the size of the memory referenced by a pointer?Andreas2009-08-23T21:42:04Z2009-08-23T21:42:04ZDelphi 6 also doesn't use malloc. It uses the Borland Memory Manager (See System.pas and GetMem.inc)http://stackoverflow.com/questions/1282015/the-fastest-way-to-compare-a-partial-string/1282151#1282151Comment by Andreas on The fastest way to compare a partial string?Andreas2009-08-15T23:03:49Z2009-08-15T23:03:49ZYou mean something like this: <a href="http://docs.embarcadero.com/products/rad_studio/" rel="nofollow">docs.embarcadero.com/products/rad_studio</a>http://stackoverflow.com/questions/1282015/the-fastest-way-to-compare-a-partial-string/1282151#1282151Comment by Andreas on The fastest way to compare a partial string?Andreas2009-08-15T19:32:49Z2009-08-15T19:32:49ZDelphi already has a AnsiStartsStr (case-sensitive) /AnsiStartsText (case-insensitive) function. There is no need to reimplement it. Just use the "StrUtils" unit.http://stackoverflow.com/questions/1132561/how-to-leak-a-string-in-delphi/1134704#1134704Comment by Andreas on How to leak a string in DelphiAndreas2009-07-16T10:12:58Z2009-07-16T10:12:58ZIt doesn't AV because in Delphi 2009 the "const" looses its functionality if $STRINGCHECKS are ON.http://stackoverflow.com/questions/1118736/is-it-possible-to-create-a-type-method-in-delphi/1118765#1118765Comment by Andreas on Is it possible to create a type method in Delphi?Andreas2009-07-13T10:49:16Z2009-07-13T10:49:16ZYou cannot create wrapper for "Exit" as you cannot create a wrapper for "return" in C#/Java/C++/.... The "Exit" would executed be for the wrapper and not for the caller.http://stackoverflow.com/questions/1005042/is-each-source-line-address-in-a-detailed-map-file-a-valid-address-to-insert-a-in/1005705#1005705Comment by Andreas on Is each source line address in a detailed MAP file a valid address to insert a Int3h? Andreas2009-06-17T10:34:45Z2009-06-17T10:34:45ZNot all code lines are executable code. For example the System._LStrToPChar function has data (@@zeroByte) in the code segment.