Search Results

1
vote
1answer
81 views

ImageList_Add returns -1 on PC controlled with pcAnywhere

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 th …
7
votes

Can Dataset filtering be done from outside the dataset?

If you're using a TClientDataSet, you can clone the cursor (TClientDataSet.CloneCursor) into another TClientDataSet that doesn't have the ProviderName property set. Both ClientDataSet now point to …
16
votes

Unhandled exceptions in delphi

You can get the memory address where the exception was thrown by using the ExceptAddr variable (System unit). But if you want a stack trace you could use one of the 3rdParty tools MadExcept, Eureka …
6
votes

What’s the best way to store a Delphi set in a dataset?

You could use a TBytesField or a TBlobField ClientDataSet1MySet: TBytesField, Size=32 var MySet: set of Byte; Bytes: array of Byte; begin MySet := [1, 2, 4, 8, 16]; …
5
votes

D2009 VCL unit that won’t compile.

Does it help if you add the following line at the top of the DB.pas unit. {$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} If it works after using th …
4
votes

Delphi warning - W1002 Symbol ‘FileSetDate’ is specific to a platform

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). …
12
votes

What’s a good way to serialize Delphi object tree to XML--using RTTI and not custom code?

You can use the JVCL TJvAppXMLFileStorage component to serialize TPersistent derived classes. uses JvAppXMLStorage; var Storage: TJvAppXMLFileStorage; begin Storage := TJvApp …
10
votes

How can I make Delphi 2009 open my application in the second monitor by default?

Delphi doesn't have his feature. 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 applic …
8
votes

How to include/link C .lib files in a Delphi project.

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 ( …
12
votes

Delphi 2009 OnKeyDown does not trap as Delphi 2007 does

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 O …
1
vote

Delphi 2010 Beta: What’s on your wishlist?

"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) …
5
votes

JclDotNet, and some odd calling patterns using assembler

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 initia …
13
votes

Delphi: What are your “Do’s and Don’ts” tips?

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 neede …
1
vote

Optimizing Class Size in Delphi. Is there something like “packed classes”?

I will expect it to use 6 bytes, but, due to alignment it ends up using 12 bytes Even if you write "TMyClass = class end;" the class will inherit from TObject w …
1
vote

Delphi: TOleControl puts ActiveControl in wrong state?

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: function THtmlFrame.webBrowserShowUI …

1 2 3 next
15 30 50 per page