Search Results

1
vote

String truncation error in Delphi DBExpress/Firebird paramatised queries

l_input := copy(l_input,**0**,fieldLength-1); You can't copy substring from position 0! Try this: l_input := LeftStr(l_input, fieldLength); …
2
votes

How do I compress multiple files into a single archive with Delphi

You can also use Abbrevia with TAbZipper.Create(nil) do try AutoSave := False; DeflationOption := doSupe …
2
votes

Delphi object persistence, what is the best way

Component serialization - all you should know about it in one place. …
3
votes

How can I access SQL server using ADO through a proxy?

MSDN: Connecting to SQL Server Through a Proxy Server …
3
votes

What is the best way to implement C#’s BackgroundWorker in Delphi?

// lWorker := TBackgroundWorker.Create; // with lWorker do // begin //// DoWork := //// WorkCompleted := //// WorkException := //// Arguments := //// Resume(); // end;//w …
2
votes

Is there .NET equivalent to Delphi’s ActionList?

For example: http://www.codeproject.com/KB/miscctrl/actionlist.aspx …
1
vote

How do I send a string from one instance of my Delphi program to another?

Create GlobalAtom and send its handle (and size of string) via message. …
1
vote

Timers In Delphi

Next time, start from read Delphi sources. procedure TTimer.SetEnabled(Value: Boolean); begin if Value <> FEnabled then begin FEnabled := Value; UpdateTimer; end …
4
votes

How can I encode a stream so that it can be stored in an xml file?

Encode stream to base64 string. See exa …
3
votes

Is there Delphi’s ActionManager alternative in Visual Studio

http://stackoverflow.com/questions/489376/is-there-net-equivalent-to-delphis-actionli …
0
votes

Checking if multiple processes are running

Algorithm is very simple. 1) Read a list of running processes and remember it in sorted array of cardinal (you can store only process PID). 2) After second, read again and compare new list with pre …
1
vote

Need a name=value class similar to TStringList but the value part is variant

PVariantRec = ^TVariantRec; TVariantRec = record Value : Variant; end; var lItem : PVariantRec; lMyStringList : TStringList; lMyStringList := TStringList.Create; lMyStringList.Sorte …
0
votes

How to use AccessibleObjectFromWindow WinAPI function in Delphi?

function AccessibleObjectFromEvent(H : HWND; dwID, dwChildID : DWORD; out Acc : IAccessible; var varChild : Variant) : HRESULT; stdcall; …
2
votes

Digitally sign token with RSA-SHA1 Base64 encryption

http://stackoverflow.com/questions/1402380/encryption-library-for-delphi ? …