User inzKulozik - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T08:08:25Zhttp://stackoverflow.com/feeds/user/9786http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1632421/digitally-sign-token-with-rsa-sha1-base64-encryption/1633712#16337122Answer by inzKulozik for Digitally sign token with RSA-SHA1 Base64 encryptioninzKulozik2009-10-27T21:12:07Z2009-10-27T21:12:07Z<p><a href="http://stackoverflow.com/questions/1402380/encryption-library-for-delphi">http://stackoverflow.com/questions/1402380/encryption-library-for-delphi</a> ?</p>
http://stackoverflow.com/questions/1599599/how-to-use-accessibleobjectfromwindow-winapi-function-in-delphi/1601361#16013610Answer by inzKulozik for How to use AccessibleObjectFromWindow WinAPI function in Delphi?inzKulozik2009-10-21T14:50:58Z2009-10-21T14:50:58Z<pre><code>function AccessibleObjectFromEvent(H : HWND; dwID, dwChildID : DWORD; out Acc : IAccessible; var varChild : Variant) : HRESULT; stdcall;
</code></pre>
http://stackoverflow.com/questions/1514656/need-a-namevalue-class-similar-to-tstringlist-but-the-value-part-is-variant/1515785#15157851Answer by inzKulozik for Need a name=value class similar to TStringList but the value part is variantinzKulozik2009-10-04T06:54:17Z2009-10-04T12:39:57Z<pre><code>PVariantRec = ^TVariantRec;
TVariantRec = record
Value : Variant;
end;
var
lItem : PVariantRec;
lMyStringList : TStringList;
lMyStringList := TStringList.Create;
lMyStringList.Sorted := true;
lMyStringList.OwnObjects := false;
//add
New(lItem);
lItem.Value := 'zzz';
lMyStringList.Add('name', TObject(lItem));
//remove
lItem := PVariantRec( lMyStringList.Objects[0] );
Dispose(lItem);
lMyStringList.Delete(0);
</code></pre>
http://stackoverflow.com/questions/1512951/checking-if-multiple-processes-are-running/1513297#15132970Answer by inzKulozik for Checking if multiple processes are runninginzKulozik2009-10-03T09:19:31Z2009-10-03T09:19:31Z<p>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 previous one. Where is the problem?</p>
<p><a href="http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q%5F20827426.html" rel="nofollow">How obtain Windows processes list?</a><br>
<a href="http://delphi.about.com/od/objectpascalide/a/quicksort.htm" rel="nofollow">Implementing QuickSort Sorting Algorithm in Delphi</a></p>
http://stackoverflow.com/questions/1201776/is-there-delphis-actionmanager-alternative-in-visual-studio/1202824#12028243Answer by inzKulozik for Is there Delphi's ActionManager alternative in Visual StudioinzKulozik2009-07-29T20:27:49Z2009-07-29T20:27:49Z<p><a href="http://stackoverflow.com/questions/489376/is-there-net-equivalent-to-delphis-actionlist/489551#489551">http://stackoverflow.com/questions/489376/is-there-net-equivalent-to-delphis-actionlist/489551#489551</a></p>
http://stackoverflow.com/questions/1147175/how-can-i-encode-a-stream-so-that-it-can-be-stored-in-an-xml-file/1147488#11474884Answer by inzKulozik for How can I encode a stream so that it can be stored in an xml file?inzKulozik2009-07-18T13:00:37Z2009-07-18T13:00:37Z<p>Encode stream to base64 string. <a href="http://stackoverflow.com/questions/690475/saving-a-base64-string-to-disk-as-a-binary-using-delphi-2007/690570#690570" rel="nofollow" title="Example">See example.</a></p>
http://stackoverflow.com/questions/525416/timers-in-delphi/526073#5260731Answer by inzKulozik for Timers In DelphiinzKulozik2009-02-08T17:29:14Z2009-02-08T17:29:14Z<p>Next time, start from read Delphi sources.</p>
<pre><code>procedure TTimer.SetEnabled(Value: Boolean);
begin
if Value <> FEnabled then
begin
FEnabled := Value;
UpdateTimer;
end;
end;
procedure TTimer.UpdateTimer;
begin
KillTimer(FWindowHandle, 1);
if (FInterval <> 0) and FEnabled and Assigned(FOnTimer) then
if SetTimer(FWindowHandle, 1, FInterval, nil) = 0 then
raise EOutOfResources.Create(SNoTimers);
end;
</code></pre>
http://stackoverflow.com/questions/512366/how-do-i-send-a-string-from-one-instance-of-my-delphi-program-to-another/518017#5180171Answer by inzKulozik for How do I send a string from one instance of my Delphi program to another?inzKulozik2009-02-05T21:26:21Z2009-02-05T23:09:50Z<p>Create GlobalAtom and send its handle (and size of string) via message.</p>
http://stackoverflow.com/questions/489376/is-there-net-equivalent-to-delphis-actionlist/489551#4895512Answer by inzKulozik for Is there .NET equivalent to Delphi's ActionList?inzKulozik2009-01-28T21:49:19Z2009-01-28T21:49:19Z<p>For example:<br>
<a href="http://www.codeproject.com/KB/miscctrl/actionlist.aspx" rel="nofollow">http://www.codeproject.com/KB/miscctrl/actionlist.aspx</a> <br>
<a href="http://www.codeproject.com/KB/miscctrl/CradsActions.aspx" rel="nofollow">http://www.codeproject.com/KB/miscctrl/CradsActions.aspx</a></p>
http://stackoverflow.com/questions/444787/postmessage-occasionally-loses-a-message/444888#4448881Answer by inzKulozik for PostMessage occasionally loses a messageinzKulozik2009-01-14T22:04:37Z2009-01-14T22:04:37Z<blockquote>
<p>If the queue is empty when the enqueue
function is called, the function will
use PostMessage to tell A that there
is data in the queue. The function
checks to make sure the call to
PostMessage is executed successfully
and repeatedly calls PostMessage if it
is not successful (PostMessage has yet
to fail).</p>
</blockquote>
<p>I would use event instead of message.</p>
http://stackoverflow.com/questions/429210/what-is-the-best-way-to-implement-cs-backgroundworker-in-delphi/429456#4294563Answer by inzKulozik for What is the best way to implement C#'s BackgroundWorker in Delphi?inzKulozik2009-01-09T19:52:57Z2009-01-09T22:18:12Z<pre><code>// lWorker := TBackgroundWorker.Create;
// with lWorker do
// begin
//// DoWork :=
//// WorkCompleted :=
//// WorkException :=
//// Arguments :=
//// Resume();
// end;//with
TBackgroundWorker_TaskArguments = array of TObject;
TBackgroundWorker_DoWorkEvent = procedure( ASender : TObject; AArguments : TBackgroundWorker_TaskArguments ) of object;
TBackgroundWorker_ExceptionEvent = procedure( ASender : TObject; AException : Exception ) of object;
TBackgroundWorker = class( TThread )
private
FSynchronizeEvents : Boolean;
FE : Exception;
protected
FArguments : TBackgroundWorker_TaskArguments;
FDoWorkEvent : TBackgroundWorker_DoWorkEvent;
FWorkExceptionEvent : TBackgroundWorker_ExceptionEvent;
FWorkCompletedEvent : TNotifyEvent;
procedure Execute; override;
procedure WorkExceptionEvent;
procedure WorkCompletedEvent;
public
constructor Create( ASynchronizeEvents : boolean = true ); reintroduce;
destructor Destroy; override;
property DoWork : TBackgroundWorker_DoWorkEvent write FDoWorkEvent;
property WorkCompleted : TNotifyEvent write FWorkCompletedEvent;
property WorkException : TBackgroundWorker_ExceptionEvent write FWorkExceptionEvent;
property Arguments : TBackgroundWorker_TaskArguments read FArguments write FArguments;
end;
implementation
constructor TBackgroundWorker.Create( ASynchronizeEvents : boolean );
begin
inherited Create(True);
FSynchronizeEvents := ASynchronizeEvents;
end;
destructor TBackgroundWorker.Destroy;
begin
if Assigned( FArguments ) then
FreeAndNil( FArguments );
inherited;
end;
procedure TBackgroundWorker.Execute;
var lOK : boolean;
begin
lOk := false;
try
try
if Assigned( FDoWorkEvent ) then
FDoWorkEvent( self, FArguments );
lOK := true;
except
on e : exception do
if Assigned( FWorkExceptionEvent ) then
begin
FE := e;
if FSynchronizeEvents then
Synchronize( WorkExceptionEvent )
else
WorkExceptionEvent;
end;
end;
finally
if lOk and Assigned( FWorkCompletedEvent ) then
if FSynchronizeEvents then
Synchronize( WorkCompletedEvent )
else
WorkCompletedEvent;
end;
end;
procedure TBackgroundWorker.WorkCompletedEvent;
begin
FWorkCompletedEvent( Self );
end;
procedure TBackgroundWorker.WorkExceptionEvent;
begin
FWorkExceptionEvent( self, FE );
end;
</code></pre>
http://stackoverflow.com/questions/422588/how-can-i-access-sql-server-using-ado-through-a-proxy/423573#4235733Answer by inzKulozik for How can I access SQL server using ADO through a proxy?inzKulozik2009-01-08T08:12:37Z2009-01-08T08:12:37Z<p><a href="http://msdn.microsoft.com/en-us/library/ms190801.aspx" rel="nofollow">MSDN: Connecting to SQL Server Through a Proxy Server</a></p>
http://stackoverflow.com/questions/396550/delphi-object-persistence-what-is-the-best-way/403770#4037702Answer by inzKulozik for Delphi object persistence, what is the best wayinzKulozik2008-12-31T18:49:18Z2008-12-31T18:49:18Z<p><a href="http://www.delphi3000.com/articles/article_2969.asp?SK=" rel="nofollow">Component serialization</a> - all you should know about it in one place.</p>
http://stackoverflow.com/questions/400627/how-do-i-compress-multiple-files-into-a-single-archive-with-delphi/401736#4017362Answer by inzKulozik for How do I compress multiple files into a single archive with DelphiinzKulozik2008-12-30T22:39:11Z2008-12-30T22:39:11Z<p>You can also use <a href="http://sourceforge.net/projects/tpabbrevia/" rel="nofollow">Abbrevia</a></p>
<pre><code>with TAbZipper.Create(nil) do
try
AutoSave := False;
DeflationOption := doSuperFast;
StoreOptions := [soStripDrive, soRemoveDots, soRecurse, soFreshen, soReplace];
Password := 'SecretPassword';
OnArchiveProgress := ArchiveProgress; //procedure ArchiveProgress(Sender : TObject; Progress : Byte; var Abort : Boolean);
BaseDirectory := 'c:\' ;
FileName := 'c:\windows.zip';
try
AddFiles('c:\windows\*.*', 0);
Save;
finally
CloseArchive;
end;
finally
Free;
end;
</code></pre>
http://stackoverflow.com/questions/398781/how-do-i-implement-this-type-of-oop-structure/398932#3989321Answer by inzKulozik for How do I implement this type of OOP structure?inzKulozik2008-12-29T22:35:40Z2008-12-29T22:35:40Z<p>Blankman, this is for you <a href="http://en.wikipedia.org/wiki/Polymorphism_in_object-oriented_programming" rel="nofollow">http://en.wikipedia.org/wiki/Polymorphism_in_object-oriented_programming</a></p>
http://stackoverflow.com/questions/391348/string-truncation-error-in-delphi-dbexpress-firebird-paramatised-queries/392779#3927791Answer by inzKulozik for String truncation error in Delphi DBExpress/Firebird paramatised queriesinzKulozik2008-12-25T12:24:07Z2008-12-25T12:30:58Z<pre><code>l_input := copy(l_input,**0**,fieldLength-1);
</code></pre>
<p>You can't copy substring from position 0!</p>
<p>Try this:</p>
<pre><code>l_input := LeftStr(l_input, fieldLength);
</code></pre>
<p>or </p>
<pre><code>ActiveSQL.ParamByName('AMYFIELD').AsString := LeftStr('Some random string that is to long for the field', ActiveSQL.ParamByName('AMYFIELD').Size);
</code></pre>
<p>or</p>
<pre><code>with ActiveSQL.ParamByName('AMYFIELD') do
AsString := LeftStr('Some random string that is to long for the field', Size);
</code></pre>
http://stackoverflow.com/questions/400627/how-do-i-compress-multiple-files-into-a-single-archive-with-delphi/401736#401736Comment by inzKulozik on How do I compress multiple files into a single archive with DelphiinzKulozik2009-10-08T21:24:31Z2009-10-08T21:24:31ZCheck this link <a href="http://www.songbeamer.com/delphi/" rel="nofollow">songbeamer.com/delphi</a>http://stackoverflow.com/questions/1514656/need-a-namevalue-class-similar-to-tstringlist-but-the-value-part-is-variant/1515785#1515785Comment by inzKulozik on Need a name=value class similar to TStringList but the value part is variantinzKulozik2009-10-04T10:10:30Z2009-10-04T10:10:30ZYes, its safe. <a href="http://stackoverflow.com/questions/367130/i-want-to-assign-a-record-to-tstringlist-objects" rel="nofollow" title="i want to assign a record to tstringlist objects">stackoverflow.com/questions/367130/…</a>http://stackoverflow.com/questions/1513695/showing-message-only-once/1513753#1513753Comment by inzKulozik on Showing message only onceinzKulozik2009-10-03T18:16:56Z2009-10-03T18:16:56Z@Nick D: you forgot try..finally ;)http://stackoverflow.com/questions/1476884/what-does-underscore-mean-in-delphi4/1476901#1476901Comment by inzKulozik on what does underscore mean in Delphi4 inzKulozik2009-09-25T21:05:41Z2009-09-25T21:05:41ZI start with underscore for global variables.http://stackoverflow.com/questions/1280476/delphi-interbase-json-server/1282453#1282453Comment by inzKulozik on Delphi Interbase JSON serverinzKulozik2009-08-16T14:55:30Z2009-08-16T14:55:30ZBetter: JSON - SuperObject <a href="http://www.progdigy.com/?page_id=6" rel="nofollow">progdigy.com/?page_id=6</a>http://stackoverflow.com/questions/956255/why-is-it-bad-practice-to-call-an-eventhandler-from-code/958253#958253Comment by inzKulozik on Why is it bad practice to call an eventhandler from code?inzKulozik2009-06-05T23:02:46Z2009-06-05T23:02:46ZDifferent behaviour you can have if you pass nil as sender ;)
http://stackoverflow.com/questions/531873/delphi-how-to-automatically-remove-unused-vars-variable-x-is-declared-but-ne/532891#532891Comment by inzKulozik on Delphi: how to automatically remove unused vars ("Variable 'x' is declared but never used" hint)inzKulozik2009-02-10T15:59:33Z2009-02-10T15:59:33Z> I know the compiler figures out that they aren't used right now, but is that correct,
Any example?http://stackoverflow.com/questions/445871/want-to-read-a-file-to-a-tstringlist/445877#445877Comment by inzKulozik on Want to read a file to a TStringListinzKulozik2009-01-16T18:43:09Z2009-01-16T18:43:09ZDo not call Destroy directly in an application. Instead, call Free, which checks that the TFileStream reference is not nil and only then calls Destroy.http://stackoverflow.com/questions/429210/what-is-the-best-way-to-implement-cs-backgroundworker-in-delphi/429456#429456Comment by inzKulozik on What is the best way to implement C#'s BackgroundWorker in Delphi?inzKulozik2009-01-09T20:36:20Z2009-01-09T20:36:20ZYou're right - edited.http://stackoverflow.com/questions/416046/what-is-the-best-tool-to-detect-memory-leaks-in-delphi/416091#416091Comment by inzKulozik on What is the best tool to detect memory leaks in DelphiinzKulozik2009-01-06T18:33:30Z2009-01-06T18:33:30Zwith getChoices do try .. finally free; end;http://stackoverflow.com/questions/415958/how-to-automatically-free-classes-objects/416418#416418Comment by inzKulozik on How to automatically free classes/objects?inzKulozik2009-01-06T18:31:38Z2009-01-06T18:31:38ZAfter FreeAndNil() MyObject = nil and when you try access to MyObject after that then you get Access Violation immediately. There is no need to call FreeAndNil() instead Free() when (for example) your MyObject isn't global object and is used only by one thread.http://stackoverflow.com/questions/409765/does-a-strings-length-equal-the-byte-size/409771#409771Comment by inzKulozik on Does a strings length equal the byte size?inzKulozik2009-01-03T20:34:36Z2009-01-03T20:34:36ZIn Delphi shortstring has one extra byte, but others string types has extra four bytes.http://stackoverflow.com/questions/391348/string-truncation-error-in-delphi-dbexpress-firebird-paramatised-queriesComment by inzKulozik on String truncation error in Delphi DBExpress/Firebird paramatised queriesinzKulozik2009-01-03T09:42:08Z2009-01-03T09:42:08ZMaybe you should set maximum length limit in user controls?