User inzKulozik - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T08:08:25Z http://stackoverflow.com/feeds/user/9786 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1632421/digitally-sign-token-with-rsa-sha1-base64-encryption/1633712#1633712 2 Answer by inzKulozik for Digitally sign token with RSA-SHA1 Base64 encryption inzKulozik 2009-10-27T21:12:07Z 2009-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#1601361 0 Answer by inzKulozik for How to use AccessibleObjectFromWindow WinAPI function in Delphi? inzKulozik 2009-10-21T14:50:58Z 2009-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#1515785 1 Answer by inzKulozik for Need a name=value class similar to TStringList but the value part is variant inzKulozik 2009-10-04T06:54:17Z 2009-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#1513297 0 Answer by inzKulozik for Checking if multiple processes are running inzKulozik 2009-10-03T09:19:31Z 2009-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#1202824 3 Answer by inzKulozik for Is there Delphi's ActionManager alternative in Visual Studio inzKulozik 2009-07-29T20:27:49Z 2009-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#1147488 4 Answer by inzKulozik for How can I encode a stream so that it can be stored in an xml file? inzKulozik 2009-07-18T13:00:37Z 2009-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#526073 1 Answer by inzKulozik for Timers In Delphi inzKulozik 2009-02-08T17:29:14Z 2009-02-08T17:29:14Z <p>Next time, start from read Delphi sources.</p> <pre><code>procedure TTimer.SetEnabled(Value: Boolean); begin if Value &lt;&gt; FEnabled then begin FEnabled := Value; UpdateTimer; end; end; procedure TTimer.UpdateTimer; begin KillTimer(FWindowHandle, 1); if (FInterval &lt;&gt; 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#518017 1 Answer by inzKulozik for How do I send a string from one instance of my Delphi program to another? inzKulozik 2009-02-05T21:26:21Z 2009-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#489551 2 Answer by inzKulozik for Is there .NET equivalent to Delphi's ActionList? inzKulozik 2009-01-28T21:49:19Z 2009-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#444888 1 Answer by inzKulozik for PostMessage occasionally loses a message inzKulozik 2009-01-14T22:04:37Z 2009-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#429456 3 Answer by inzKulozik for What is the best way to implement C#'s BackgroundWorker in Delphi? inzKulozik 2009-01-09T19:52:57Z 2009-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#423573 3 Answer by inzKulozik for How can I access SQL server using ADO through a proxy? inzKulozik 2009-01-08T08:12:37Z 2009-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#403770 2 Answer by inzKulozik for Delphi object persistence, what is the best way inzKulozik 2008-12-31T18:49:18Z 2008-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#401736 2 Answer by inzKulozik for How do I compress multiple files into a single archive with Delphi inzKulozik 2008-12-30T22:39:11Z 2008-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#398932 1 Answer by inzKulozik for How do I implement this type of OOP structure? inzKulozik 2008-12-29T22:35:40Z 2008-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#392779 1 Answer by inzKulozik for String truncation error in Delphi DBExpress/Firebird paramatised queries inzKulozik 2008-12-25T12:24:07Z 2008-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#401736 Comment by inzKulozik on How do I compress multiple files into a single archive with Delphi inzKulozik 2009-10-08T21:24:31Z 2009-10-08T21:24:31Z Check 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#1515785 Comment by inzKulozik on Need a name=value class similar to TStringList but the value part is variant inzKulozik 2009-10-04T10:10:30Z 2009-10-04T10:10:30Z Yes, 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/&hellip;</a> http://stackoverflow.com/questions/1513695/showing-message-only-once/1513753#1513753 Comment by inzKulozik on Showing message only once inzKulozik 2009-10-03T18:16:56Z 2009-10-03T18:16:56Z @Nick D: you forgot try..finally ;) http://stackoverflow.com/questions/1476884/what-does-underscore-mean-in-delphi4/1476901#1476901 Comment by inzKulozik on what does underscore mean in Delphi4 inzKulozik 2009-09-25T21:05:41Z 2009-09-25T21:05:41Z I start with underscore for global variables. http://stackoverflow.com/questions/1280476/delphi-interbase-json-server/1282453#1282453 Comment by inzKulozik on Delphi Interbase JSON server inzKulozik 2009-08-16T14:55:30Z 2009-08-16T14:55:30Z Better: 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#958253 Comment by inzKulozik on Why is it bad practice to call an eventhandler from code? inzKulozik 2009-06-05T23:02:46Z 2009-06-05T23:02:46Z Different 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#532891 Comment by inzKulozik on Delphi: how to automatically remove unused vars ("Variable 'x' is declared but never used" hint) inzKulozik 2009-02-10T15:59:33Z 2009-02-10T15:59:33Z &gt; 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#445877 Comment by inzKulozik on Want to read a file to a TStringList inzKulozik 2009-01-16T18:43:09Z 2009-01-16T18:43:09Z Do 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#429456 Comment by inzKulozik on What is the best way to implement C#'s BackgroundWorker in Delphi? inzKulozik 2009-01-09T20:36:20Z 2009-01-09T20:36:20Z You're right - edited. http://stackoverflow.com/questions/416046/what-is-the-best-tool-to-detect-memory-leaks-in-delphi/416091#416091 Comment by inzKulozik on What is the best tool to detect memory leaks in Delphi inzKulozik 2009-01-06T18:33:30Z 2009-01-06T18:33:30Z with getChoices do try .. finally free; end; http://stackoverflow.com/questions/415958/how-to-automatically-free-classes-objects/416418#416418 Comment by inzKulozik on How to automatically free classes/objects? inzKulozik 2009-01-06T18:31:38Z 2009-01-06T18:31:38Z After 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#409771 Comment by inzKulozik on Does a strings length equal the byte size? inzKulozik 2009-01-03T20:34:36Z 2009-01-03T20:34:36Z In 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-queries Comment by inzKulozik on String truncation error in Delphi DBExpress/Firebird paramatised queries inzKulozik 2009-01-03T09:42:08Z 2009-01-03T09:42:08Z Maybe you should set maximum length limit in user controls?