User HX_unbanned - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T19:59:59Zhttp://stackoverflow.com/feeds/user/132296http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1502689/code-length-in-ide-w-o-modeling-support-versus-code-efficiecy-in-compilation0Code Length in IDE ( w/o modeling support ) versus Code Efficiecy in Compilation in DelphiHX_unbanned2009-10-01T08:43:16Z2009-10-01T17:30:59Z
<p>So - highly hypothetical question and more like discussion about your coding style and practice you use daily.</p>
<p>I will take as example: CodeGear RAD Studio 2009 (sorry to all D7 fans, but Unicode rulles ).</p>
<p>I have capability to expand/collapse functions/procedures/records and few other complex data structures, but what if code is lengthy?</p>
<p>What makes the task and its acomplishment efficient - the time required to add comments ( its req actually ) and expand/collapse necessary area or use OMT offered possibilities?</p>
<p>To give example input from myself - I have small app, about 1,5k lines and I do not use Modeling. Is it smart enough or do I lose a lot of time if I need to find some simple references or (event) calls?</p>
<p>P.S. Good morining for those @ ~ GTM .. GTM + 4 living ... </p>
http://stackoverflow.com/questions/1096498/delphi-and-hdd-i-o-quoting-resource-pre-caching-read-write-seek-parameter-lim1Delphi and HDD I/O Quoting , Resource Pre-Caching , Read/Write/seek parameter limiting.HX_unbanned2009-07-08T06:58:33Z2009-09-28T06:15:49Z
<p>Hello proggies!</p>
<p>I have dynamic array filled with bytes, which are read from .raw file with BlockRead() and this operation, logically, requieres hell of a Shell resources and I wanned to know if there is any methods to reserve some amount or limit maximum amount of Read/Write/Seek used for Program runetime from Hard Disk Drive*****</p>
<p><strong>[Clarification]</strong>: I meant to set maximum reading speed from HDD while performing action with windows shell / internal app resources. In this moment app is very sensitive to hdd's performance, but it causes on several machines to freez / lock because system cannot manage disk operations...</p>
<p>I wanted to know about any methods, tutorials, in worst case unit in which function declarations and class info can be found.</p>
<p>As much I know, Pascal as the base of Deplhi does not provide very easy approach as the best could be TStream or TPipeline usage (TSocket should not be good, right?)... As much I have used streams, I did not like it because there were some underwater stones with TFileStream ...</p>
<p>Anyway - please give me at least intro to disk performance management...</p>
http://stackoverflow.com/questions/1285204/delphi-program-execution-and-internal-procedure-function-calling-from-cmd-or-usi0Delphi: Program Execution and internal procedure/function calling from CMD or using Doubleclick on associated extensionHX_unbanned2009-08-16T19:52:09Z2009-08-18T21:02:46Z
<p>So - recently I run on some problems determining from which way program was called, if in both times parameters is the same - like: /something /something.
I associate icon with program at runetime and i can use cmd to call it, but, whenever i doubleclikc on associated file ( with the icon ), progam simply opens, but does not calls needed rotine because i dont have necessary trigger / attribute / parameter that if execution was made doubleclick, not Run... > appname.exe /something /something.</p>
<p>Can you give simple example or write theoretically all with requiered functions etc.</p>
<p>Currently, as you can guess, I use ParamStr / ParamCount / blablabla / FindCMDLineSwitch / and some other functions ... but ... still ... :(</p>
http://stackoverflow.com/questions/1181278/component-disabling-and-enabling-at-runtime-in-delphi-2k9-weird-problem1Component disabling and enabling at runtime in Delphi 2K9. Weird problem...HX_unbanned2009-07-25T05:22:27Z2009-07-26T09:30:24Z
<p>Here is code:</p>
<pre><code>procedure DisableContrlOL(const cArray : array of string; ReEnable : boolean = False);
// can be called from VKP / RAW / Generation clicks
var
AComponent: TComponent;
CompListDis, CompListEna : TStringList;
begin
CompListDis := TStringList.Create;
CompListEna := TStringList.Create;
for i := Low(cArray) to High(cArray) do begin
AComponent := FindComponent(cArray[i]);
if Assigned(AComponent) then
if (AComponent is TControl) then begin
if TControl(AComponent).Enabled then
CompListEna.Add(TControl(AComponent).Name)
else
CompListDis.Add(TControl(AComponent).Name);
ShowMessage(TControl(AComponent).Name);
if ReEnable then begin // if reenabling needed, then all whi
if not TControl(AComponent).Enabled then
TControl(AComponent).Enabled := True;
end else if (TControl(AComponent).Enabled) then
TControl(AComponent).Enabled := False;
end;
end;
end;
</code></pre>
<p>I think no more explanations are needed.
The ShowMessage correctly shows name of each component, but nothing is added in StringLists. Why?</p>
<p><hr /></p>
<p>UPDATE: As question has gone pretty wild, I did confirm answer, which a bit helped me.</p>
<p>I understand that I did write things pretty unclear, but I am very limited, because these code lines is part of commercial project, and my hobby and heart thing. The main problem was found already 6h ago, but Rob just wanted to extend this whole question :D No, no offense, mate, it's OK. I am happy to receive so willing and helpful posts. Thanks again.</p>
http://stackoverflow.com/questions/1180701/whats-the-best-way-to-introduce-decrypting-and-showing-passwords-in-delphi/1182566#11825660Answer by HX_unbanned for Whats the best way to introduce decrypting and showing passwords in delphi.HX_unbanned2009-07-25T17:28:15Z2009-07-25T17:28:15Z<p>Also be aware that in latest CodeGear RAD Studio version are very wide Indy, IW Component package included. The help also is improved, so there is possible to even find some WinAPI included functions.</p>
<p>Some time ago I had to deal with very simple and very unhandy internet rss / file downlaoding solution requiring dynamic dll loadings and there the beast and the easyies one I had to work with was TdFTP class functions, which integrates password and login interface using settable SSL/TSL password encriptions. Pretty basic, but imho effective approach to use as password handler, even if there are no real file transferring requiered.</p>
<p>Unfourtinately I dodnt remember excat password storaging method or file or interfac</p>
<p>Hope this was useful answer, even if I did not provide detailed information.</p>
<p>YOU MAY WANT TO TAKE A LOOK AT: <a href="http://www.filetransit.com/view.php?id=34536" rel="nofollow">CSC</a></p>
http://stackoverflow.com/questions/1152782/bring-form-on-top-of-others-when-clicked-on-taskbar-button-in-delphi0Bring form on top of others when clicked on taskbar button in Delphi.HX_unbanned2009-07-20T10:25:03Z2009-07-20T11:07:37Z
<p>Base question: <a href="http://stackoverflow.com/questions/1141544/tstatusbar-flickers-when-calling-update-procedure-ways-to-painlessly-fix-this">http://stackoverflow.com/questions/1141544/tstatusbar-flickers-when-calling-update-procedure-ways-to-painlessly-fix-this</a> </p>
<p>The executed code is in the questions first posts first part ( you can see light grey separating line ) ...</p>
<p>But - problem is that while this code is executed, form does not automatically activate and focus on the top of all other applications.</p>
<p>I have read these articles:</p>
<p><a href="http://www.installationexcellence.com/articles/VistaWithDelphi/Original/Index.html" rel="nofollow">http://www.installationexcellence.com/articles/VistaWithDelphi/Original/Index.html</a><br>
<a href="http://delphi.about.com/od/formsdialogs/l/aa073101b.htm" rel="nofollow">http://delphi.about.com/od/formsdialogs/l/aa073101b.htm</a></p>
<p>but according to them it should be working no matter what. I tried all the TApplicationEvents and TForm events with Show; Visible: Repaint; Refresh; BringToFront; ... nothing works.</p>
<p>So - I think I have two options - multithreading or trapping WM_SYSCOMMAND message and in the SC_ACTIVE event simply repaint form. Could this scenario become successful?</p>
http://stackoverflow.com/questions/1141544/tstatusbar-flickers-when-calling-update-procedure-ways-to-painlessly-fix-this2TStatusBar flickers when calling Update procedure. Ways to painlessly fix this...HX_unbanned2009-07-17T05:39:18Z2009-07-20T09:05:21Z
<p>So, here is the discussion I have just read:
<a href="http://www.mail-archive.com/delphi@delphi.org.nz/msg02315.html" rel="nofollow">http://www.mail-archive.com/delphi@delphi.org.nz/msg02315.html</a></p>
<p>BeginUpdate and EndUpdate is not thi procedures I need ...</p>
<p>Overriding API Call? I tried to get Update procedures code from ComCtrls unit, nut did not found...</p>
<p>Maybe you could post here a code to fix thi flicker of statusbar compoent if the only text changes in it? I mean - something like TextUpdate or some kind of TCanvas method or PanelsRepaint ... ?</p>
<p>The flickering is caused by this code: </p>
<pre><code>Repeat
BlockRead(Fp, BuffArrayDebug[LineIndex], DataCapac, TestByteBuff); // DataCapac = SizeOf(DWORD)
ProgressBar1.StepIt;
if RAWFastMode.Checked then begin // checks for fast mode and modifyies progressbar
if BuffArrayDebug[LineIndex] = 0 then begin ProgressBar2.Max := FileSize(Fp) - DataCapac; ProgressBar2.Position := (LineIndex + 1) * DataCapac; LineDecr := True; end;
end else begin ProgressBar2.Max := FileSize(Fp); ProgressBar2.Position := LineIndex * DataCapac end;
if PreviewOpn.Caption = '<' then begin // starts data copying to preview area if expanded
Memo1.Lines.BeginUpdate;
if (LineIndex mod DataCapac) > 0 then HexMerge := HexMerge + ByteToHex(BuffArrayDebug[LineIndex]) else
begin
Memo1.Lines.Add(HexMerge); HexMerge := '';
end;
Memo1.Lines.EndUpdate;
end;
StatusBar1.Panels[0].Text := 'Line: ' + Format('%.7d',[LineIndex]) + ' | Data: ' + Format('%.3d',[BuffArrayDebug[LineIndex]]) + ' | Time: ' + TimeToStr(Time - TimeVarStart); StatusBar1.Update;
if FindCMDLineSwitch(ParamStr(1)) then begin
TrayIcon.BalloonTitle := 'Processing ' + ExtractFileName(RAWOpenDialog.FileName) + ' and reading ...';
TrayIcon.BalloonHint := 'Current Line: ' + inttostr(LineIndex) + #10#13 + ' Byte Data: ' + inttostr(TestByteBuff) + #10#13 + ' Hex Data: ' + ByteToHex(TestByteBuff);
TrayIcon.ShowBalloonHint;
end;
Inc(LineIndex);
Until EOF(Fp);
</code></pre>
<p>Any ideas?</p>
<p><hr /></p>
<p>There was comment with this link ( <a href="http://www.stevetrefethen.com/blog/UsingTheWSEXCOMPOSITEWindowStyleToEliminateFlickerOnWindowsXP.aspx" rel="nofollow">http://www.stevetrefethen.com/blog/UsingTheWSEXCOMPOSITEWindowStyleToEliminateFlickerOnWindowsXP.aspx</a> ) and there is procedure that works ( no flickering whastsoever ), BUT IT IS VVVVVVVEEEEEERRRRRRYYYYYY SLOW!</p>
<pre><code> 1 type
2 TMyForm = class(TForm)
3 protected
4 procedure CreateParams(var Params: TCreateParams); override;
5 end;
6
7 ...
8
9 procedure TMyForm.CreateParams(var Params: TCreateParams);
10 begin
11 inherited;
12 // This only works on Windows XP and above
13 if CheckWin32Version(5, 1) then
14 Params.ExStyle := Params.ExStyle or WS_EX_COMPOSITED;
15 end;
16
</code></pre>
<p>Also - the target is not the form, but the StatusBar ... how to assign this method to statusbar?</p>
http://stackoverflow.com/questions/1115443/tapplicationevents-as-dynamic-component-or-static-for-tracing-called-routine-in-d1TApplicationEvents as dynamic component or static for tracing called routine in Delphi.HX_unbanned2009-07-12T06:52:51Z2009-07-12T15:04:13Z
<p>Hello and good morning!</p>
<p>Unfortunately I am not writing this question from my Developing PC so I might do some mistakes. Please sorry about it...
So - my question - what approach you use to implement error logging in your application?</p>
<p>In web ( <a href="http://delphi.about.com" rel="nofollow">http://delphi.about.com</a> ) is nice event handler, but it just copies system error in file, but I would like to expand its capabilities by trapping memory and stack ( and processor information, if I will have time ). Should I aware if I call it dynamically, not adding its component on the form?</p>
<pre><code>procedure TForm1.ApplicationEvents1Exception(Sender: TObject; E: Exception) ;
var
ErrorLogFileName : string;
ErrorFile : TextFile;
ErrorData : string;
begin
ErrorLogFileName := ChangeFileExt(Application.ExeName,'.error.log') ;
AssignFile(ErrorFile, ErrorLogFileName) ;
//either create an error log file, or append to an existing one
if FileExists(ErrorLogFileName) then
Append(ErrorFile)
else
Rewrite(ErrorFile) ;
try
//add the current date/time and the exception message to the log
ErrorData := Format('%s : %s',[DateTimeToStr(Now),E.Message]) ;
WriteLn(ErrorFile,ErrorData) ;
finally
CloseFile(ErrorFile)
end;
//Show the exception
Application.ShowException(E) ;
end;
</code></pre>
<p>... and <a href="http://delphi.about.com/cs/adptips2001/a/bltip0101_2.htm" rel="nofollow">http://delphi.about.com/cs/adptips2001/a/bltip0101_2.htm</a></p>
<p>As we know, Delphi also provides memory management a bit like C - using ampersands and Pascal functions, but what would be the most effective logging?</p>
<p>Thanks before! Hopefully this topic will be useful to other quality programmers.</p>
http://stackoverflow.com/questions/1096702/delphi-and-performance-coding-statement-performance-and-code-length-results0Delphi and Performance Coding. Statement Performance and code length results.HX_unbanned2009-07-08T08:00:29Z2009-07-08T21:00:57Z
<p>Hi. Lets simply fantasize and talk about performance.</p>
<p>As I have read the article in about.delphi.com called performance programming, there was interesting paragraphs claiming that Case statement ( in fact I prefer calling it as structure ) is faster than If ; For is faster than While and Repeat, but While is the slowest loop operator. I probably understand why While is the slowest, but ... what about others.</p>
<p>Have you tested / played / experimented or even gained real performance boost if changed, for example, all IF statements to Cases where possible?</p>
<p>Also I would like to talk about other - modified - loop and if statement behaviors in Delphi IDE, but it would be another question.</p>
<p>Shall we start, ladies and gentleman?</p>
http://stackoverflow.com/questions/1097717/closing-process-of-a-delphi-app-under-vista/1097794#1097794-4Answer by HX_unbanned for Closing Process of a Delphi App under VistaHX_unbanned2009-07-08T12:36:14Z2009-07-08T12:45:58Z<p>... and if you need to close single form, then use:</p>
<pre><code>Form.Close;
</code></pre>
<ul>
<li>GUI AND HANDLER DELETED. Reference and some parts of memory is left to provide access to variables, constants, etc.</li>
</ul>
<p>If you need to hide ( something like Minimize, only GUI is cleared ) form, then:</p>
<pre><code>Form.Hide;
</code></pre>
<ul>
<li>GUI is cleared, leaving internal resources untoauched ( reference, handler, memory )</li>
</ul>
<p>If form is dynamic ( created at runetime ), then use:</p>
<pre><code>Form.Destroy;
</code></pre>
<ul>
<li>ALL RESOURCES WILL BE CLEARED FROM MEMORY, leaving reference and handlers attached so you could access its location in memory.</li>
</ul>
<p>If form is dynamic and you will not use it for the same interface, then:</p>
<pre><code>Form.Free;
</code></pre>
<ul>
<li>ALL RESOURCES, REFERENCES, HANDLERS ARE DELETED. I recommend to use this to VCL TComponent class, not for TForm class.</li>
</ul>
<p>Also, there is Form.FreeAndNill, but my guess that it deleted all memory and loaded handlers, only allowing to use same memory space in the same interface again... (I might be wrong though).</p>
<p>P.S. I hope I am not writing wrong things as the last time I read the theory was a long, long time ago... and it was about Destructor DESTROY in general ...</p>
<p>P.P.S ALSO PLEASE BE CAREFUL if you're writing a Vista-ready app - that it includes UAC Handling with manifests / runtime code and SuperBar compatibility requirement. Also Aero requires some additional megabytes to output file due its Aero feature ... :P</p>
http://stackoverflow.com/questions/1078179/windows-and-hints-in-delphi4Windows and Hints in DelphiHX_unbanned2009-07-03T07:27:35Z2009-07-04T01:19:05Z
<p>Hello again!</p>
<p>This morning I finally made my mind and decided to ask you for help. Problem is that in my Delphi application no hints are shown at all...
I have read about THintAction problem, I have read guides/tutorials/manuals, tried to invoke Hint windows ( firing event handlers ) manually, but nothing worked. They just doesnt show.
I have run out of ideas ...</p>
<p>I have tried to: setting parent showhints on components, forms, from event handlers, application activatehint() ...</p>
<p>Is there any other way to do this ( except API calls, of course )? </p>
http://stackoverflow.com/questions/1078472/using-findvclwindow-to-call-winhelp32-winxp-pro-sp3-32bit-in-delphi0Using FindVCLWindow to call WinHelp32 (WinXP Pro SP3 32bit) in DelphiHX_unbanned2009-07-03T09:05:33Z2009-07-03T10:43:49Z
<p>what is wrong there?</p>
<pre><code>procedure TForm1.VCLHelpClick(Sender: TObject);
var Ctrl : TWinControl;
begin
Ctrl := FindVCLWindow(Mouse.CursorPos);
if Ctrl <> nil then
if Form2.Cursor = crHelp then begin
if Ctrl = CreatorEdit then Application.HelpCommand(HELP_CONTEXT,001);
if Ctrl = EditorEdit then Application.HelpCommand(HELP_CONTEXT,002);
if Ctrl = UpdaterEdit then Application.HelpCommand(HELP_CONTEXT,003);
if Ctrl = IdeaEdit then Application.HelpCommand(HELP_CONTEXT,004);
if Ctrl = PorterEdit then Application.HelpCommand(HELP_CONTEXT,005);
end;
end;
</code></pre>
<p>The idea is simple - i have form border icons for Help button and when i click it, cursors changes to crHelp. If i click under control for any of IFs, it invokes Help System and Opens associated help file with context from command. But it doesnt work ... Is this because I have not added support for KLink / ELinks in Help file itself?</p>
<p>For help authoring and developing I am using ShalomHelpMaker Software.</p>
http://stackoverflow.com/questions/1078472/using-findvclwindow-to-call-winhelp32-winxp-pro-sp3-32bit-in-delphi/1078808#10788080Answer by HX_unbanned for Using FindVCLWindow to call WinHelp32 (WinXP Pro SP3 32bit) in DelphiHX_unbanned2009-07-03T10:43:49Z2009-07-03T10:43:49Z<p>Working code:</p>
<pre><code>procedure TForm1.VCLHelpClick(Sender: TObject);
var WCtrl : TWinControl;
begin
WCtrl := FindVCLWindow(Mouse.CursorPos);
if WCtrl <> nil then
Application.HelpCommand(HELP_CONTEXT, wCtrl.HelpContext);
end;
</code></pre>
<p>P.S. all previous code probobly was ok too, but i rechecked my event handlers and found that in one tlabel it was missing ( althought when I clicked to the ones that had onclick, it did not work). Plus ... problem probobly was the faulty cursor check.</p>
<p>Ok, thanks for support, guys!</p>
http://stackoverflow.com/questions/1078312/return-value-of-process/1078336#10783360Answer by HX_unbanned for Return value of processHX_unbanned2009-07-03T08:19:47Z2009-07-03T08:19:47Z<p>ShellExecute() in its native is 16-bit call, so it is not intended to give feedback / callback althought you can saerch thread / process / memory adress ( if you locate usable memory space ) and its flags ( if there would be no such a thing as bloody flags, WinAPI (32-bit) would be much simpatic than it is now ).
To provide full feedback, you can try extended version or CreateProcess() function with is pure 32-bit function.
Unfourtinately I cannot give you any detailed info about flags / Lparameters and other API parameters.</p>
<p>Besides, mainly all executive function/procedures/methods retur booleans, so you always can start with [if..then] statement as return provider.</p>
<p>Opps, while i was writing this, already three answers were made.</p>
http://stackoverflow.com/questions/1078073/do-you-ever-try-to-explain-how-fun-programming-is/1078136#10781362Answer by HX_unbanned for Do you ever try to explain how fun programming is?HX_unbanned2009-07-03T07:13:14Z2009-07-03T07:13:14Z<p>Well, for me it is like mixing fantazing when I make a drawing or scatch on a paper and playing with lego bricks when I was younger. Its like magic and passion.
And yes - development is only for those who are fighters in their hearts - if you encounter problem and dont have solution on-the-fly, then it feels heel of a great if you can google / syntisize a solution. Its almost one of things worth to live and programm.</p>
http://stackoverflow.com/questions/1502689/code-length-in-ide-w-o-modeling-support-versus-code-efficiecy-in-compilation/1503119#1503119Comment by HX_unbanned on Code Length in IDE ( w/o modeling support ) versus Code Efficiecy in Compilation in DelphiHX_unbanned2009-10-01T11:01:00Z2009-10-01T11:01:00ZHmmm, thank you very much for your info, mate! The prob is that I have not official emplojee for now, so 99 euro is reasonable money ... :)
But - I will check your links for sure!http://stackoverflow.com/questions/1502689/code-length-in-ide-w-o-modeling-support-versus-code-efficiecy-in-compilation/1502789#1502789Comment by HX_unbanned on Code Length in IDE ( w/o modeling support ) versus Code Efficiecy in Compilation in DelphiHX_unbanned2009-10-01T09:14:55Z2009-10-01T09:14:55ZYes, u got the idea. Ok, thanks for your info ;)
Anbody else, please?!http://stackoverflow.com/questions/1285204/delphi-program-execution-and-internal-procedure-function-calling-from-cmd-or-usi/1285228#1285228Comment by HX_unbanned on Delphi: Program Execution and internal procedure/function calling from CMD or using Doubleclick on associated extensionHX_unbanned2009-08-16T20:42:47Z2009-08-16T20:42:47Zyes. exeatly that what i need. Hm ... damn, but I think that thisbasic /dl parameter is best solution after all ...http://stackoverflow.com/questions/1181278/component-disabling-and-enabling-at-runtime-in-delphi-2k9-weird-problemComment by HX_unbanned on Component disabling and enabling at runtime in Delphi 2K9. Weird problem...HX_unbanned2009-07-25T17:17:01Z2009-07-25T17:17:01ZI was forced. Time limit and job schedule is pretty bad - I have to work even in school holidays, and there is other project which I need to start asap ...http://stackoverflow.com/questions/1181278/component-disabling-and-enabling-at-runtime-in-delphi-2k9-weird-problemComment by HX_unbanned on Component disabling and enabling at runtime in Delphi 2K9. Weird problem...HX_unbanned2009-07-25T17:05:46Z2009-07-25T17:05:46ZPardon. I have to jump between forum I moderate, this site and Delphi simutainosly, so I'm very haotic at this moment.http://stackoverflow.com/questions/1181278/component-disabling-and-enabling-at-runtime-in-delphi-2k9-weird-problem/1181396#1181396Comment by HX_unbanned on Component disabling and enabling at runtime in Delphi 2K9. Weird problem...HX_unbanned2009-07-25T16:48:01Z2009-07-25T16:48:01ZAnd - it is working OK now, although I will set your latest post as Comfired Answer, Rob ;)http://stackoverflow.com/questions/1181278/component-disabling-and-enabling-at-runtime-in-delphi-2k9-weird-problem/1181396#1181396Comment by HX_unbanned on Component disabling and enabling at runtime in Delphi 2K9. Weird problem...HX_unbanned2009-07-25T16:46:51Z2009-07-25T16:46:51ZHm, Rob, Ok, i cannot show case because it covers about three very large functions, witch is directly linked by others, so it would be hard for you to understand. The main function I vahe had already copied here.
The idea was that I call this procedure from other procedure. cArray contains all components with whom procedure will operate ( disable / enable ). ReEnable parameter is "trigger" which dont enable back components that was disabled ( if it is False ), so no matter of count of involved components, all will stay disabled after procedures end. And-CompListDis for later program upgrades.http://stackoverflow.com/questions/1181278/component-disabling-and-enabling-at-runtime-in-delphi-2k9-weird-problem/1182230#1182230Comment by HX_unbanned on Component disabling and enabling at runtime in Delphi 2K9. Weird problem...HX_unbanned2009-07-25T15:10:55Z2009-07-25T15:10:55ZYes, thank you, problem theoretically found and eliminated.
Thank you for this to, but stringlists were for sorting - which is enabled in the time of execution and which comopoent is not. Thasthow I could determine by reenable parameter whenever to enable them or disable.
This was not covered by my question because I just thought no value was saved in stringlists at all.
Thanks again, sorry for my unreasonable attitude.
At this point everybody has the correct answer. ;)http://stackoverflow.com/questions/1181278/component-disabling-and-enabling-at-runtime-in-delphi-2k9-weird-problem/1181396#1181396Comment by HX_unbanned on Component disabling and enabling at runtime in Delphi 2K9. Weird problem...HX_unbanned2009-07-25T09:50:18Z2009-07-25T09:50:18ZJust checked with Text property. Suprising ( for me ), but it really does add the name correctly. This means that continuous code has some bug.
Thanks for the breakpoint tip, Rob!
And - I know what scope is. I consider this question a bit humiliating and harrasing to me ...
http://stackoverflow.com/questions/1181278/component-disabling-and-enabling-at-runtime-in-delphi-2k9-weird-problem/1181396#1181396Comment by HX_unbanned on Component disabling and enabling at runtime in Delphi 2K9. Weird problem...HX_unbanned2009-07-25T07:43:01Z2009-07-25T07:43:01Zand - it is procedure. It is meant to not provide return, because component status is detected on every execution. Only necessarry trigger is reenable parameter.http://stackoverflow.com/questions/1181278/component-disabling-and-enabling-at-runtime-in-delphi-2k9-weird-problem/1181396#1181396Comment by HX_unbanned on Component disabling and enabling at runtime in Delphi 2K9. Weird problem...HX_unbanned2009-07-25T07:34:53Z2009-07-25T07:34:53Zbi know it because when i step it with breakpoints, there are no items in stringlist pllus when i devug with dcus, thetre are no varable or memory address picked up and in the continuous code, if i use the code that i need (currently it is just for modular testing), i get runetime list out-of-bounds error. thats how i know there is something wrong.http://stackoverflow.com/questions/1181278/component-disabling-and-enabling-at-runtime-in-delphi-2k9-weird-problem/1181396#1181396Comment by HX_unbanned on Component disabling and enabling at runtime in Delphi 2K9. Weird problem...HX_unbanned2009-07-25T06:51:23Z2009-07-25T06:51:23Z
Hmm, thank you for tip about stringlist, Rob! About that reenable parameter - nop, tyhere is a bit different reason. It would be pretty long to explain I would need to coppy some part of apps source. Also, thans for tip about Components. I knew this, but I was not sure, because in almost every example i find this code ...http://stackoverflow.com/questions/1181278/component-disabling-and-enabling-at-runtime-in-delphi-2k9-weird-problem/1181284#1181284Comment by HX_unbanned on Component disabling and enabling at runtime in Delphi 2K9. Weird problem...HX_unbanned2009-07-25T05:54:37Z2009-07-25T05:54:37ZNop, does not work. Nothing at all happens to any of stringlists. FindComponenet(); just takes the controls name and thats all...
P.S. I used dcu's ...http://stackoverflow.com/questions/1181278/component-disabling-and-enabling-at-runtime-in-delphi-2k9-weird-problem/1181285#1181285Comment by HX_unbanned on Component disabling and enabling at runtime in Delphi 2K9. Weird problem...HX_unbanned2009-07-25T05:39:21Z2009-07-25T05:39:21ZRax, no, I wanted to disable all components un false statements, so wrong shot. But thanks for halp anyway ;)http://stackoverflow.com/questions/1141544/tstatusbar-flickers-when-calling-update-procedure-ways-to-painlessly-fix-this/1152072#1152072Comment by HX_unbanned on TStatusBar flickers when calling Update procedure. Ways to painlessly fix this...HX_unbanned2009-07-20T09:39:49Z2009-07-20T09:39:49Z@mghie - Ok, never mind then. I suppose I am thinking the wrong way after all. Don't get confused - I'm just learning delphi.
imho all vcl components connect during runetime directly to os shell and takes from them all the resources. the os api then manages shells resources, so i think that they are pretty dependent. Maybe I am wrong? If yes, please give some links to read and learn.
P.S. Sorry if I disinform you and other members and readers. We all are just humans..