Does anyone know of some sample code th开发者_如何学JAVAat shows how Delphi 2010 can read RAW files using its new COM interface to WIC?
I have the following record definition E3Vector3T = packed record public x: E3FloatT; y: E3FloatT; z: E3FloatT;
does Delphi 2010 have C# Style XML comments that show up开发者_Go百科 when hovering over the method call?
Those 3 types are very similar... TArray is the generic version of TBytes. Both can be casted to PByteArray and used as buffer for calls to Windows API. (with the same restrictions as string to Pchar
I\'m trying to use RTTI to add an event handler to a control, that may already have an event handler set. The code looks something like this:
I have been using FindResource, LoadResource and LockResource to access resources in a res file. I have a wave file which I want extract and play through my Delphi application.
I need to implement a tag system for video program and before I build something myself, is there an attractive drag-n-drop tag component that will filter a table for m开发者_JAVA百科e?
How does one convert a stand-alone .tlb file created in a pre-2009 version of Delphi to a .ridl file using Delphi 2010? .tlb files that are part of projects get automatically converted, but this parti
I tried to set the tick style to tsManual, the min and max position to 1 and 100 respectively and add ticks at 9, 19, 79 and 89 and no ticks are shown at all except the detault first and last which th
can anyone explain why the code below fails? type TIDEThemeObserverFunc = reference to procedure(foo: integer);