User Lars Truijens - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T10:05:40Z http://stackoverflow.com/feeds/user/1242 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1933650/how-can-i-bind-a-property-of-a-user-control-to-a-properties-of-that-same-control/1933694#1933694 2 Answer by Lars Truijens for How can I bind a property of a user control to a properties of that same control in WPF? Lars Truijens 2009-12-19T18:08:23Z 2009-12-19T21:02:44Z <p>Name your UserControl in XAML and refer to it from the binding like so:</p> <pre><code>&lt;UserControl x:Name = "MyUserControl"&gt; &lt;ComboBox HorizontalAlignment="Left" Margin="21,0,0,41" Name="cbAddSolution" Width="194" Height="21" VerticalAlignment="Bottom" ItemsSource="{Binding ElementName=MyUserControl, Path=Solutions}" /&gt; &lt;/UserControl&gt; </code></pre> <p>If you want proper binding your UserControl should implement INotifyPropertyChanged for that property or make that property a Dependency Property</p> <p><strong>Update</strong></p> <p>Or use RelativeSource if you don't want to name the UserControl</p> <pre><code>&lt;UserControl&gt; &lt;ComboBox HorizontalAlignment="Left" Margin="21,0,0,41" Name="cbAddSolution" Width="194" Height="21" VerticalAlignment="Bottom" ItemsSource="{Binding Path=Solutions, RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}" /&gt; &lt;/UserControl&gt; </code></pre> http://stackoverflow.com/questions/1932616/fastsharemem-still-necessary-in-delphi-2010/1932886#1932886 3 Answer by Lars Truijens for FastShareMem still necessary in Delphi-2010? Lars Truijens 2009-12-19T13:10:14Z 2009-12-19T18:24:48Z <p>Short answer: No, SimpleShareMem comes with Delphi 2010</p> <p>Long answer: Yes, Delphi still has <a href="http://docs.embarcadero.com/products/rad%5Fstudio/delphiAndcpp2009/HelpUpdate2/EN/html/devcommon/sharememory%5Fxml.html" rel="nofollow">its own memory manager</a> and memory claimed from one memory manager (exe) can not be returned to another (dll). But since Delphi 2006 Delphi comes with a new memory manager called <a href="http://sourceforge.net/projects/fastmm/" rel="nofollow">FastMM</a> which can do the same as FastShareMem and also does not require any extra dlls to be distributed. You need to use a unit called SimpleShareMem. FastMM also has other <a href="http://edn.embarcadero.com/article/33416" rel="nofollow">nice features</a> you might want to check out. FastMM is also available for Delphi 7 BTW.</p> <p>You don't need to use any of those tricks if you compile with runtime packages, since the memory manager is then shared. It also comes with the advantage of sharing the same types. No more TFont can not be assigned to TFont problems. Of course this does mean you have to distribute the runtime packages.</p> http://stackoverflow.com/questions/1922225/how-to-do-remote-debugging-of-dll-in-delphi-7-from-scratch/1922273#1922273 4 Answer by Lars Truijens for How to do remote debugging of DLL in delphi 7 from scratch Lars Truijens 2009-12-17T14:52:13Z 2009-12-17T15:11:24Z <ol> <li>Compile the DLL with remote debugging symbols and deploy both (.dll, .rsm, etc) on the server machine</li> <li>Install the remote debugger on the server machine</li> <li>Start the remote debugger on the server machine </li> <li>Start Delphi on the client machine and load the DLL project</li> <li>Start a remote debugging session from Delphi by choosing Run - Attach to process and fill in the server machine</li> <li>Select the process on the server machine which loaded the DLL </li> <li>Debug remote</li> </ol> <p>Also see <a href="http://delphi.wikia.com/wiki/Remote%5FDebugger" rel="nofollow">http://delphi.wikia.com/wiki/Remote%5FDebugger</a></p> http://stackoverflow.com/questions/1797537/wpf-design-usercontrol-datatemplate-problem/1797799#1797799 0 Answer by Lars Truijens for WPF design UserControl / DataTemplate problem Lars Truijens 2009-11-25T15:42:44Z 2009-11-25T15:42:44Z <p>You could add <a href="http://msdn.microsoft.com/en-us/library/system.windows.input.routedcommand.aspx" rel="nofollow">Commands</a> to your usercontrol class and have the buttons execute the commands. This is a much used pattern in <a href="http://en.wikipedia.org/wiki/Model%5FView%5FViewModel" rel="nofollow">MVVM</a>. See <a href="http://codingcontext.wordpress.com/2008/12/10/commandbindings-in-mvvm/" rel="nofollow">http://codingcontext.wordpress.com/2008/12/10/commandbindings-in-mvvm/</a> or <a href="http://www.codeproject.com/KB/WPF/VMCommanding.aspx" rel="nofollow">http://www.codeproject.com/KB/WPF/VMCommanding.aspx</a></p> http://stackoverflow.com/questions/1797105/what-are-the-defaults-for-binding-modedefault-for-wpf-controls/1797172#1797172 3 Answer by Lars Truijens for What are the defaults for Binding.Mode=Default for WPF controls? Lars Truijens 2009-11-25T14:14:44Z 2009-11-25T14:14:44Z <blockquote> <p>Similar to UpdateSourceTrigger, the default value for the Mode property varies for each property. User-editable properties such as TextBox.Text, ComboBox.Text, MenuItem.IsChecked, etc, have TwoWay as their default Mode value. To figure out if the default is TwoWay, look at the Dependency Property Information section of the property. If it says BindsTwoWayByDefault is set to true, then the default Mode value of the property is TwoWay. To do it programmatically, get the property metadata of the property by calling GetMetadata and then check the boolean value of the BindsTwoWayByDefault property.</p> </blockquote> <p>Source: <a href="http://blogs.msdn.com/wpfsdk/archive/2006/10/19/wpf-basic-data-binding-faq.aspx" rel="nofollow">http://blogs.msdn.com/wpfsdk/archive/2006/10/19/wpf-basic-data-binding-faq.aspx</a></p> <p>The safest way would be to always be explicit what kind of binding mode you want from a binding.</p> http://stackoverflow.com/questions/1784514/multithreaded-tthread-delphi-application-will-not-terminate/1784866#1784866 4 Answer by Lars Truijens for Multithreaded (TThread) Delphi application will not terminate Lars Truijens 2009-11-23T17:57:59Z 2009-11-23T17:57:59Z <p>As you can read in the msdn using <a href="http://msdn.microsoft.com/en-us/library/ms686717%28VS.85%29.aspx" rel="nofollow">TerminateThread</a> is dangerous. </p> <blockquote> <p>TerminateThread is a dangerous function that should only be used in the most extreme cases. You should call TerminateThread only if you know exactly what the target thread is doing, and you control all of the code that the target thread could possibly be running at the time of the termination.</p> </blockquote> <p>But it also is very effective in killing threads. Are you sure you are right in your conclusions? Maybe the thread is killed, but another thread is still running? Maybe your handles are not thread handles? Could you show us some code? Or even better: A small working example we could try for ourselves?</p> http://stackoverflow.com/questions/1779600/how-do-i-wait-for-a-ttimer-to-finish/1779659#1779659 0 Answer by Lars Truijens for How do I wait for a TTimer to finish? Lars Truijens 2009-11-22T19:15:53Z 2009-11-22T19:27:50Z <p><a href="http://stackoverflow.com/questions/1779600/how-do-i-wait-for-a-ttimer-to-finish/1779640#1779640">Smasher's suggestion</a> could be implemented using Delphi 2009's anonymous methods.</p> <pre><code>procedure TForm.DoStuff; begin DoSomeLogicStuff; fraDisplay.AnimateResult.OnFinished := procedure (Sender: TObject) begin DoSomeOtherLogicStuff; fraDisplay.AnimateEndResult.OnFinished := procedure (Sender: TObject) begin fraDisplay.Finalize; end; fraDisplay.AnimateEndResult; end; fraDisplay.AnimateResult; end; </code></pre> <p>BTW: Actually, WaitForAnimationToFinish will let OnTimer fire, since it uses windows messages that are dispatched when calling ProcessMessages. But it is a bad idea anyway since it uses lots of CPU without actually needing it. </p> http://stackoverflow.com/questions/1778449/is-there-any-way-to-bind-a-method-to-a-datatemplate-of-a-listbox/1778480#1778480 0 Answer by Lars Truijens for Is there any way to bind a method to a DataTemplate of a ListBox? Lars Truijens 2009-11-22T11:36:35Z 2009-11-22T11:36:35Z <p>Maybe through an <a href="http://msdn.microsoft.com/en-us/library/system.windows.data.objectdataprovider.aspx" rel="nofollow">ObjectDataProvider</a>. See <a href="http://bea.stollnitz.com/blog/?p=22" rel="nofollow">http://bea.stollnitz.com/blog/?p=22</a></p> <pre><code>&lt;ObjectDataProvider ObjectInstance="{StaticResource odp1}" MethodName="WeightOnPlanet" x:Key="odp2"&gt; &lt;ObjectDataProvider.MethodParameters&gt; &lt;system:Double&gt;95&lt;/system:Double&gt; &lt;/ObjectDataProvider.MethodParameters&gt; &lt;/ObjectDataProvider&gt; </code></pre> <p>Or write your own <a href="http://msdn.microsoft.com/en-us/library/ms747254.aspx" rel="nofollow">Markup Extension</a>. See <a href="http://joyfulwpf.blogspot.com/2008/12/creating-custom-wpf-markup-extension-to.html" rel="nofollow">http://joyfulwpf.blogspot.com/2008/12/creating-custom-wpf-markup-extension-to.html</a></p> http://stackoverflow.com/questions/1743962/jvcl-component-documentation/1743982#1743982 5 Answer by Lars Truijens for JVCL Component Documentation Lars Truijens 2009-11-16T18:31:08Z 2009-11-16T18:39:51Z <p>Didn't your installation come with Help? Well, you can find it here: <a href="http://sourceforge.net/projects/jvcl/files/JVCL%20Help%20Files/" rel="nofollow">http://sourceforge.net/projects/jvcl/files/JVCL%20Help%20Files/</a> or use the online help at <a href="http://help.delphi-jedi.org/" rel="nofollow">http://help.delphi-jedi.org/</a></p> <p>You can find a list of the available types on <a href="http://help.delphi-jedi.org/browse.php?Id=12&amp;types=1" rel="nofollow">http://help.delphi-jedi.org/browse.php?Id=12&amp;types=1</a>. A similar list is included in the offline help. Not every part seems to be documented yet. That might be the price to pay for using open source.</p> <blockquote> <p><strong>TJvEdit</strong> <br>Supports extended features such as alignment, password protection, custom caret and disabling clipboard commands.</p> <p>TJvEdit implements the generic behavior introduced in TJvCustomEdit:<br> <br> * Use Alignment to align the text in the edit box.<br> * Use MaxPixel to limit the maximum text size in pixels.<br> * Use DisabledColor and DisabledTextColor to specify a disabled color and text color.<br> * Use ClipboardCommands to disable specific clipboard commands.<br> * Use Caret to provide a custom caret shape.<br></p> <p><strong>TJvSpecialImage</strong> <br>Supports extended features such as fade in, fade out and image flipping.</p> <p>TJvSpecialImage is an image that can be used to create special effects.<br> <br> For example, you can use the methods FadeIn, and FadeOut to let an image slowly appear and disappear on the form. The same effect can be accomplished by using the property Brightness, which sets the brightness of the image. Set Stretch to True to reduce flickering.<br> <br> Use the Flipped and Mirrored to flip the image vertically or horizontally. Use Inverted to invert the image.<br> <br> Call Reset to restore the image to its original state.<br></p> </blockquote> http://stackoverflow.com/questions/1734644/how-to-start-stop-a-monitoring-delphi-thread-on-demand/1734661#1734661 1 Answer by Lars Truijens for How to start/stop a monitoring Delphi thread on demand? Lars Truijens 2009-11-14T16:03:25Z 2009-11-14T16:03:25Z <p>Instead in INFINITE you should have WaitForSingleObject time out after a period. That way the loop continues and Terminated is checked.</p> <pre><code>procedure TRegMonitorThread.Execute; begin InitThread; // method omitted here while not Terminated do begin if WaitForSingleObject(FEvent, 1000) = WAIT_OBJECT_0 then begin fChangeData.RootKey := RootKey; fChangeData.Key := Key; SendMessage(Wnd, WM_REGCHANGE, RootKey, LongInt(PChar(Key))); ResetEvent(FEvent); RegNotifyChangeKeyValue(FReg.CurrentKey, 1, Filter, FEvent, 1); end; end; end; </code></pre> <p>The methods TThread.Suspend and TThread.Resume could theoretically be used to temporary stop threads, but as Delphi 2010 now acknowledges they are not safe for use. See <a href="http://stackoverflow.com/questions/1418333/tthread-resume-is-deprecated-in-delphi-2010-what-should-be-used-in-place">http://stackoverflow.com/questions/1418333/tthread-resume-is-deprecated-in-delphi-2010-what-should-be-used-in-place</a> and <a href="http://msdn.microsoft.com/en-us/library/ms686345%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms686345%28VS.85%29.aspx</a></p> http://stackoverflow.com/questions/1703593/how-convert-string-to-integer-in-delphi-prism/1703953#1703953 4 Answer by Lars Truijens for How convert string to integer in Delphi Prism Lars Truijens 2009-11-09T21:27:45Z 2009-11-09T22:33:32Z <p>RRUZ has the correct answer, but if you can't say good-bye to all the functions and classes you where used to in Delphi win32 you could take a look at <a href="http://code.remobjects.com/p/shineon/" rel="nofollow">ShineOn</a>. It's an open source library written in Delphi Prism to port Delphi win32 functions and classes to .Net. Not surprisingly it also contains <a href="http://code.remobjects.com/p/shineon/source/tree/HEAD/trunk/Source/ShineOn.RTL/SysUtils.pas" rel="nofollow">IntToStr and StrToInt</a>.</p> http://stackoverflow.com/questions/1703225/question-about-specific-lines-in-a-dproj-file/1703463#1703463 1 Answer by Lars Truijens for Question about specific lines in a .DPROJ file Lars Truijens 2009-11-09T20:15:05Z 2009-11-09T21:23:34Z <p>These are <a href="http://www.borland.com/us/products/together/index.html" rel="nofollow">Together</a> files. To display your code as UML class diagram for example. I'm not sure but the delay could be from the Together packages loading or maybe the diagrams loading or updating.</p> <p>There is no harm in removing them, unless you wanted to use the model support. Some refactorings also require them.</p> <p>.dproj files are Microsoft msbuild files of which the structure is documented <a href="http://msdn.microsoft.com/en-us/library/0k6kkbsd.aspx" rel="nofollow">here</a>, but there is not documentation of my knowledge of the Delphi specific use of msbuild there.</p> http://stackoverflow.com/questions/1697772/what-is-dcc-fatal-error-frmtest-pas381-f2084-internal-error-c15700/1697830#1697830 2 Answer by Lars Truijens for What is "[DCC Fatal Error] frm_Test.pas(381): F2084 Internal Error: C15700"? Lars Truijens 2009-11-08T20:28:52Z 2009-11-08T20:28:52Z <p>These are bugs in the compiler/linker. You can find many references of these bugs on the internet in different Delphi versions, but they are not always the same bugs. That makes it difficult to give one solution for all those different kind of problems.</p> <p>General solutions that might fix it are</p> <ul> <li>Remove *.dcp *.dcpil *.dcu *.dcuil *.bpl *.dll </li> <li>Rewrite your code in another way </li> <li>Tinker with compiler options </li> <li>Get the latest Delphi version</li> </ul> <p>More information can be found <a href="http://www.stevetrefethen.com/wiki/InternalErrors.ashx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1695201/what-is-the-best-practice-for-building-a-multilingual-application-using-delphi-2/1696307#1696307 1 Answer by Lars Truijens for What Is The Best Practice For Building A Multilingual Application Using Delphi 2010? Lars Truijens 2009-11-08T12:51:40Z 2009-11-08T12:51:40Z <p>Tools like <a href="http://www.multilizer.com" rel="nofollow">Multilizer</a> can read the resourcestrings and forms from your binaries. In Multilizer the translators can translate the resourcestrings and forms and even layout the form different or change bitmaps or fonts. You might need this if the translated text is longer then the original. No need to write any extra code, just make sure all the text in code are resourcestrings. Multilizer then generates translated binaries for each language. No extra DLLs needed.</p> http://stackoverflow.com/questions/1652189/accessing-resources-in-xaml-across-projects-dlls/1652228#1652228 2 Answer by Lars Truijens for Accessing resources in Xaml across projects/dlls Lars Truijens 2009-10-30T20:47:11Z 2009-10-30T20:47:11Z <p>According to <a href="http://stackoverflow.com/questions/338056/wpf-resource-dictionary-in-a-separate-assembly">http://stackoverflow.com/questions/338056/wpf-resource-dictionary-in-a-separate-assembly</a></p> <pre><code>&lt;ResourceDictionary.MergedResources&gt; &lt;ResourceDictionary Source="pack://application:,,,/YourAssembly;component/Subfolder/YourResourceFile.xaml"/&gt; &lt;/ResourceDictionary.MergedResources&gt; </code></pre> http://stackoverflow.com/questions/1629779/msbuild-builds-always-debug/1629806#1629806 3 Answer by Lars Truijens for msbuild builds always debug Lars Truijens 2009-10-27T10:10:29Z 2009-10-27T10:10:29Z <p>That depends on the contents of that buildscript. VisualStudio C# uses the parameter Configuration to switch beteen Release and Debug. Not buildmode. You might want to try the following:</p> <pre><code>msbuild LP.sln /p:Configuration=Release </code></pre> http://stackoverflow.com/questions/1623665/what-is-the-applet-replacement-in-net/1623673#1623673 2 Answer by Lars Truijens for What is the Applet replacement in .Net Lars Truijens 2009-10-26T08:34:23Z 2009-10-26T08:34:23Z <p><a href="http://silverlight.net/" rel="nofollow">Silverlight</a> is a flash like browser plugin which runs .Net code. Silverlight also runs on Linux and MacOSX. Another alternative is <a href="http://www.xbap.org/" rel="nofollow">XBAP</a> but that only works on Windows.</p> http://stackoverflow.com/questions/1595879/any-way-to-force-a-program-with-a-hung-ocx-to-close/1595927#1595927 0 Answer by Lars Truijens for Any way to "force" a program with a hung OCX to close? Lars Truijens 2009-10-20T16:46:51Z 2009-10-21T10:05:42Z <p>An OCX control is like a dll. It unloads one way or the other when the process is terminated. Windows reclaims all memory when a process is closed. Where do you see this memory? Only is this program called Activity Monitor? Could it be that that program is incorrect?</p> <p>UPDATE: After the new information you gave it is clear it is not about freeing memory, but about a process not being closed/terminated.</p> <p>This could happen if some threads are still running. The 3rd party control might creat threads and has not terminated them yet. This might be a bug or maybe you have to call some finalize/uninitialize/dispose/close method on the 3rd party control?</p> http://stackoverflow.com/questions/1585760/when-and-why-should-i-use-tstringbuilder/1585792#1585792 5 Answer by Lars Truijens for When and Why Should I Use TStringBuilder? Lars Truijens 2009-10-18T19:28:21Z 2009-10-18T19:28:21Z <p>According to <a href="http://blog.marcocantu.com/blog/not%5Fso%5Ffast%5Ftstringbuilder.html" rel="nofollow">Marco Cantu</a> not for speed, but you might get cleaner code and better code compatibility with .Net. <a href="http://www.deltics.co.nz/blog/?p=349" rel="nofollow">Here</a> (and some corrections <a href="http://www.deltics.co.nz/blog/?p=375" rel="nofollow">here</a>) another speed test with TStringBuilder not being faster.</p> http://stackoverflow.com/questions/1537731/version-number-of-a-dll-in-net/1537764#1537764 12 Answer by Lars Truijens for Version number of a dll in .NET Lars Truijens 2009-10-08T13:20:59Z 2009-10-08T13:26:50Z <p>Yes, using <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.fileversioninfo.aspx" rel="nofollow">System.Diagnostics.FileVersionInfo</a>.</p> <pre><code>string fileVersion = FileVersionInfo.GetVersionInfo(file).FileVersion; string productVersion = FileVersionInfo.GetVersionInfo(file).ProductVersion; </code></pre> <p>Be advised that the file version of an assembly could be different from its assembly version. The assembly version is part of the assembly's identity.</p> http://stackoverflow.com/questions/1530170/what-errors-exceptions-trigger-windows-error-reporting/1530583#1530583 1 Answer by Lars Truijens for What errors / exceptions trigger Windows Error Reporting? Lars Truijens 2009-10-07T09:46:22Z 2009-10-07T09:46:22Z <p>Exceptions occurring in initialization and finalization sections would escape your global exception handler and trigger WER. </p> http://stackoverflow.com/questions/1505084/combobox-databinding-as-an-element-inside-of-a-listbox-in-wpf/1505176#1505176 2 Answer by Lars Truijens for Combobox Databinding as an element inside of a Listbox in WPF Lars Truijens 2009-10-01T16:55:31Z 2009-10-01T16:55:31Z <p>Check out the SelectedItem property. Also <a href="http://www.hardcodet.net/2009/01/xaml-binding-declaration-order-matters" rel="nofollow">the order seems to matter</a>.</p> <pre><code>&lt;ComboBox SelectedItem="{Binding Path=Category}" ItemsSource="{Binding Source={StaticResource ODPTaskCategories}}" FontFamily="Tahoma" FontSize="14" Height="24.91" Margin="278,66.96,8,0" Name="ddlCategory" VerticalAlignment="Top" VerticalContentAlignment="Center" HorizontalAlignment="Stretch" Width="Auto" SelectionChanged="ddlCategory_SelectionChanged" /&gt; </code></pre> http://stackoverflow.com/questions/1499717/eoutofmemory-creating-large-xml-using-delphi/1499955#1499955 2 Answer by Lars Truijens for EOutOfMemory Creating Large XML Using Delphi Lars Truijens 2009-09-30T18:43:32Z 2009-09-30T19:50:10Z <p>TXMDocument is a DOM style interface and keeps the whole document in memory. Memory gets used up rather quick that way. Even when the resulting file is not that big. You don't really need TXMLDocument to write out a simple XML. Why not write directly to a file in xml format?</p> <p>That being said: It could also be an error due to heap fragmentation or be a real memory leak. You might want to try a tool like mentioned here: <a href="http://stackoverflow.com/questions/291631/profiler-and-memory-analysis-tools-for-delphi">http://stackoverflow.com/questions/291631/profiler-and-memory-analysis-tools-for-delphi</a></p> http://stackoverflow.com/questions/1479245/wpf-listing-all-control-names-in-an-application/1479326#1479326 1 Answer by Lars Truijens for Wpf: Listing all control Names in an application Lars Truijens 2009-09-25T20:06:53Z 2009-09-25T20:06:53Z <p>xaml files are a xml format. You can use any xml parser to parse the xaml file. You might notice that not all parts in a xaml file are controls (elements) and controls do not have to have a name specified for it to work.</p> <p>If you want to do it runtime you could use the <a href="http://msdn.microsoft.com/en-us/library/system.windows.logicaltreehelper.aspx" rel="nofollow">LogicalTreeHelper</a> or <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.visualtreehelper.aspx" rel="nofollow">VisualTreeHelper</a> as already suggested.</p> http://stackoverflow.com/questions/61699/adding-assemblies-to-the-gac-from-inno-setup/1476781#1476781 2 Answer by Lars Truijens for Adding assemblies to the GAC from Inno Setup Lars Truijens 2009-09-25T11:28:48Z 2009-09-25T11:47:49Z <p>According to <a href="http://jrsoftware.org/files/is5-whatsnew.htm" rel="nofollow">http://jrsoftware.org/files/is5-whatsnew.htm</a> you should be able to do it with v5.3 and above</p> <blockquote> <p>Added .NET support (these cause an internal error if used on a system with no .NET Framework present):</p> <pre><code>* Added new [Files] section flag: gacinstall. * Added new [Files] section parameter: StrongAssemblyName. * Added new constants: {regasmexe}, {regasmexe32}, {regasmexe64}. </code></pre> </blockquote> http://stackoverflow.com/questions/1455629/app-using-tidftp-not-migrating-from-delphi-5-to-delphi-2009-corrupt-uploads/1456486#1456486 0 Answer by Lars Truijens for app using TIdFTP not migrating from Delphi 5 to Delphi 2009...corrupt uploads Lars Truijens 2009-09-21T19:50:47Z 2009-09-21T19:50:47Z <p>A big difference between Delphi 5 and Delphi 2009 is that Delphi 2009 uses Unicode. Maybe you're mixing unicode and non-unicode up? Receiving ASCII, but treating it like UTF8 for example?</p> http://stackoverflow.com/questions/1455111/how-to-create-chrome-like-application-in-delphi-which-runs-multiple-processes-ins/1455582#1455582 6 Answer by Lars Truijens for How to create Chrome like application in Delphi which runs multiple processes inside one Window? Lars Truijens 2009-09-21T16:59:47Z 2009-09-21T17:54:56Z <p>I guess basically you would create multiple processes each of which creates a window/form. One of the processes has the master window in which every child window is embedded. That is as simple as calling <a href="http://msdn.microsoft.com/en-us/library/ms633541%28VS.85%29.aspx" rel="nofollow">SetParent</a>. The windows in different processes would talk to each other using an IPC (Inter Process Communication) mechanism like <a href="http://msdn.microsoft.com/en-us/library/aa365590%28VS.85%29.aspx" rel="nofollow">named pipes</a> or window messages.</p> <p>See <a href="http://stackoverflow.com/questions/796883/how-to-shell-to-another-app-and-have-it-appear-in-a-delphi-form">this question</a> for an embedding example of using SetParent in Delphi. See <a href="http://stackoverflow.com/questions/512366/how-do-i-send-a-string-from-one-instance-of-my-delphi-program-to-another">this question</a> for an example of using named pipes in Delphi.</p> http://stackoverflow.com/questions/1450502/show-items-in-an-itemscontrol-in-two-columns-wpf/1451518#1451518 1 Answer by Lars Truijens for Show items in an itemscontrol in two columns (WPF) Lars Truijens 2009-09-20T17:26:54Z 2009-09-20T17:26:54Z <p>Use a ListBox and specify a DataTemplate in which you put both the TextBlock and TextBox. Use bindings to populate them both. See <a href="http://msdn.microsoft.com/en-us/library/ms742521.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms742521.aspx</a> for more examples.</p> <pre><code>&lt;ListBox x:Name="TheListBox"&gt; &lt;ListBox.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;Grid&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Width="Auto" SharedSizeGroup="Key" /&gt; &lt;ColumnDefinition Width="*" /&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;TextBlock Text="{Binding Name}" /&gt; &lt;TextBox Grid.Column="1" Text="{Binding Value }" /&gt; &lt;/Grid&gt; &lt;/DataTemplate&gt; &lt;/ListBox.ItemTemplate&gt; &lt;/ListBox&gt; TheListBox.ItemsSource = CollectionOfObjects; </code></pre> http://stackoverflow.com/questions/1448250/how-to-register-a-64-bit-dll-on-a-64-bit-os-from-a-32-bit-application/1448363#1448363 6 Answer by Lars Truijens for How to register a 64-bit dll (on a 64-bit OS) from a 32-bit application Lars Truijens 2009-09-19T11:20:01Z 2009-09-19T11:20:01Z <p>No, a 32 bits process can not load a 64 bit dll. You would have to go with calling a 64 bits process that registers the dll for you.</p> http://stackoverflow.com/questions/1448304/how-do-i-fix-inconsistencies-when-converting-file-dates-to-from-tdatetime/1448357#1448357 4 Answer by Lars Truijens for How do I fix inconsistencies when converting file dates to/from TDateTime Lars Truijens 2009-09-19T11:18:18Z 2009-09-19T11:18:18Z <p>You are right about the rounding. A TDateTime is actually a float and as all floating points you have rounding issues. Especially comparing for equality is a problem. Functions like CompareDateTime can help. Also some file systems do not have the same precision like a TDateTime. Some file systems only have a 2 second precision. So you might need to decide to use less precision for comparing by using the SecondsBetween function for example.</p> http://stackoverflow.com/questions/1933650/how-can-i-bind-a-property-of-a-user-control-to-a-properties-of-that-same-control/1933694#1933694 Comment by Lars Truijens on How can I bind a property of a user control to a properties of that same control in WPF? Lars Truijens 2009-12-19T21:03:05Z 2009-12-19T21:03:05Z Updated the answer with a way to do it without a name http://stackoverflow.com/questions/1931833/compare-delphi-exception-handlers/1932869#1932869 Comment by Lars Truijens on Compare Delphi Exception Handlers Lars Truijens 2009-12-19T17:43:53Z 2009-12-19T17:43:53Z Adding the ExceptionDialog unit that comes with JCL and turning on enough debug information would do the trick. JclDebug can use different sources, internal and external, of debug information. See <a href="http://www.gnegg.ch/2002/12/jcldebug/" rel="nofollow">gnegg.ch/2002/12/jcldebug</a> http://stackoverflow.com/questions/1933242/looking-for-a-public-domain-english-dictionary-to-include-in-a-app Comment by Lars Truijens on Looking for a public domain English dictionary to include in a app Lars Truijens 2009-12-19T15:52:32Z 2009-12-19T15:52:32Z Here another post about the same subject: <a href="http://stackoverflow.com/questions/568148/dictionary-list-of-words" rel="nofollow" title="dictionary list of words">stackoverflow.com/questions/568148/&hellip;</a> http://stackoverflow.com/questions/1931833/compare-delphi-exception-handlers/1932869#1932869 Comment by Lars Truijens on Compare Delphi Exception Handlers Lars Truijens 2009-12-19T13:31:25Z 2009-12-19T13:31:25Z And it is free and open source. It also means that if you want you can change the look of the exception dialog completely. <a href="http://sourceforge.net/projects/jcl/" rel="nofollow">sourceforge.net/projects/jcl</a> http://stackoverflow.com/questions/1931833/compare-delphi-exception-handlers/1932310#1932310 Comment by Lars Truijens on Compare Delphi Exception Handlers Lars Truijens 2009-12-19T13:29:29Z 2009-12-19T13:29:29Z changed JVCL to JCL http://stackoverflow.com/questions/1922225/how-to-do-remote-debugging-of-dll-in-delphi-7-from-scratch/1922273#1922273 Comment by Lars Truijens on How to do remote debugging of DLL in delphi 7 from scratch Lars Truijens 2009-12-18T13:28:35Z 2009-12-18T13:28:35Z Sounds like you are doing it right. I don't know about that internal error. Sorry. http://stackoverflow.com/questions/1897181/closing-a-secondary-delphi-form-causes-the-main-form-to-lose-focus Comment by Lars Truijens on Closing a secondary delphi form causes the main form to lose focus Lars Truijens 2009-12-13T18:55:04Z 2009-12-13T18:55:04Z And what is your question exactly? Why this happens? Or how to circumvent this problem? http://stackoverflow.com/questions/1894217/is-it-memory-safe-to-provide-an-object-as-a-function-result/1894241#1894241 Comment by Lars Truijens on Is it memory safe to provide an object as a function result? Lars Truijens 2009-12-13T12:07:10Z 2009-12-13T12:07:10Z This can result in strange code in GetStringList. See <a href="http://stackoverflow.com/questions/1894983/why-use-exception-handling-in-apparently-safe-code" rel="nofollow" title="why use exception handling in apparently safe code">stackoverflow.com/questions/1894983/&hellip;</a> I prefer <a href="http://stackoverflow.com/questions/1894217/is-it-memory-safe-to-provide-an-object-as-a-function-result/1894376#1894376" rel="nofollow" title="is it memory safe to provide an object as a function result">stackoverflow.com/questions/1894217/&hellip;</a> http://stackoverflow.com/questions/1825735/delphi-6-stack-trace/1825885#1825885 Comment by Lars Truijens on Delphi 6 stack trace Lars Truijens 2009-12-01T15:45:41Z 2009-12-01T15:45:41Z So do EurekaLog and madExcept. JCL supports different formats of debug info. Also internal or external. JCL also understands runtime package calls without debug info. http://stackoverflow.com/questions/1779600/how-do-i-wait-for-a-ttimer-to-finish/1779659#1779659 Comment by Lars Truijens on How do I wait for a TTimer to finish? Lars Truijens 2009-11-22T19:21:20Z 2009-11-22T19:21:20Z This also works without anonymous methods. It just takes a bit more code then :) http://stackoverflow.com/questions/1779409/big-streams-with-datasnap Comment by Lars Truijens on big streams with DataSnap Lars Truijens 2009-11-22T18:06:39Z 2009-11-22T18:06:39Z What is the problem with this code? Please let us know what the compile time or runtime error is and on what line. http://stackoverflow.com/questions/1748454/issues-with-nvidia-nview-desktop-manager-and-delphi-applications/1748947#1748947 Comment by Lars Truijens on Issues with nVidia nView desktop manager and Delphi applications? Lars Truijens 2009-11-18T08:15:34Z 2009-11-18T08:15:34Z There are frequently used programs made in Delphi. Skype comes to mind. I'm pretty sure nVidia would like Skype to work. http://stackoverflow.com/questions/1743962/jvcl-component-documentation Comment by Lars Truijens on JVCL Component Documentation Lars Truijens 2009-11-16T20:03:21Z 2009-11-16T20:03:21Z You might want to post your follow up question as a seperate stackoverflow question http://stackoverflow.com/questions/1734571/how-to-design-wpf-things-more-visually-a-la-winforms Comment by Lars Truijens on How to design WPF things more visually, a-la WinForms? Lars Truijens 2009-11-14T16:48:45Z 2009-11-14T16:48:45Z VisualStudio Express comes with a Visual WPF designer (codename Cider). Did you know about that or did you not find it visual enough? Please explain http://stackoverflow.com/questions/1703593/how-convert-string-to-integer-in-delphi-prism Comment by Lars Truijens on How convert string to integer in Delphi Prism Lars Truijens 2009-11-09T21:33:36Z 2009-11-09T21:33:36Z Delphi Prism is a compiler. It does not contain a library like Delphi win32 does. When using Delphi Prism you can use the full range of .Net classes and methods in the .Net library. It is the same library that C# and VB.Net uses. You might want to read about the subject in C# books or on <a href="http://msdn.microsoft.com/en-us/library/ms229335.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a>