User MarkF - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T20:03:10Zhttp://stackoverflow.com/feeds/user/113128http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1749337/oracle-unicode-spooling/1749441#17494410Answer by MarkF for Oracle Unicode SpoolingMarkF2009-11-17T14:59:20Z2009-11-17T16:17:53Z<p>I don't think SQLPlus (at least on Windows) supports unicode. I just tested here and it doesn't seem to work. I'm not sure if it's ok to mention this here, but my own tool "Golden 6" does support unicode spooling although it is Windows only. Note that you have to use "SET ENCODING [UNICODE | UTF-8 | ANSI] [NOBOM]" before the spool command to choose the correct encoding.</p>
<p>Mark Ford<br>
Benthic Software<br>
www.benthicsoftware.com</p>
<p>Edit: As Vincent pointed out, it is working. Note that the UTF-8 file created has no BOM but is a UTF-8 file.</p>
http://stackoverflow.com/questions/1748454/issues-with-nvidia-nview-desktop-manager-and-delphi-applications3Issues with nVidia nView desktop manager and Delphi applications?MarkF2009-11-17T12:13:18Z2009-11-17T14:07:41Z
<p>Hi all,</p>
<p>I've recently had a customer report an issue with my applications and NVidia nView desktop manager. Basically nView seems to 'unhide' hidden secondary forms when moving an application between monitors. I'm testing with Delphi 2010. The problem can also be seen using just the IDE (show a non-docked window, close it and then choose to send the Delphi IDE to a different monitor.) The previously hidden forms are in an unresponsive state and can't be closed.</p>
<p>To reproduce:</p>
<p>. Use a multi-monitor system with NVidia nView desktop manager.<br>
. Start any Delphi application with secondary forms that will be hidden when they are closed.<br>
. Show or ShowModal the form, then close it (form needs to have been shown at least once).<br>
. Choose to send the application to a different monitor. (via hotkeys or the caption icons)<br>
. The application will move to the other monitor and any hidden forms will be visible. </p>
<p>Has anyone else seen this issue? I've verified it with an older version of nView, but a customer with the latest version has the issue whenever he tries to move the main form or resize it. Unfortunately my laptop can't be updated to the latest version so I can't easily test with it.</p>
<p>Thanks for any comments or suggestions!</p>
<p>-Mark</p>
http://stackoverflow.com/questions/1716467/help-with-sending-number-to-excel-2007-from-delphi-2010-as-a-string0Help with sending number to Excel 2007 from Delphi 2010 as a string.MarkF2009-11-11T16:40:41Z2009-11-12T07:39:00Z
<p>I'm sending a number to Excel 2007 as a string (Cell.Value := '2,5') using late binding. The actual code is more like:</p>
<pre><code>var CellVal: OLEVariant;
...
CellVal := FloatToStr(2.5); // Regionally formatted.
Cell.Value := CellVal;
</code></pre>
<p>On my Excel 97 version, this value will be formatted as "General" by default and will be seen as a number. A customer with Excel 2007 ends up with the cell formatted as "Standard" and Excel appears to see it as a string (it's not right aligned.) Note that I am using the regional settings to format the number and that Excel appears to be using the default regional settings as well.</p>
<p>If the customer just types 2,5 into a cell it accepts it as a number and if he does a copy of the string '2,5' from the clipboard into a cell, it also gets accepted as a number. Does anyone know why the string value sent though the automation interface to Excel ends up as a non-number?</p>
<p>Thanks for any suggestions! Edited to specify the regional decimal separator for the customer is ','.</p>
http://stackoverflow.com/questions/1408094/steps-to-build-virtual-treeview-in-delphi-2010/1408751#14087510Answer by MarkF for Steps to build Virtual Treeview in Delphi 2010MarkF2009-09-11T02:52:59Z2009-09-11T02:52:59Z<p>I just did it myself. Starting with the 2009 version, just edit the two compiler.inc files (one in source, one in design directories). As Mason said, just copy the part that defines using VER200 and change the VER200 to VER210. Built and installed without problems. Good luck!</p>
http://stackoverflow.com/questions/1302462/is-there-a-way-to-change-the-default-generated-code-wrapping-width-in-the-delphi1Is there a way to change the default generated code wrapping width in the Delphi IDE Editor?MarkF2009-08-19T20:29:50Z2009-08-19T23:01:13Z
<p>Now that I have a widescreen monitor, I can't seem to find a way to make the Delphi IDE wrap generated code at anything other than 80 chars. I've set the "Right margin" setting in the IDE Editor options to a high value, but it doesn't appear to affect the wrapping that happens on generated events and code lines. Does anyone know of a way to set it? Perhaps a hidden registry setting? Alternately, are there any IDE addons that do this? Thanks for any suggestions!</p>
http://stackoverflow.com/questions/1259683/sending-wmcommand-to-a-tmenuitem/1259918#12599180Answer by MarkF for Sending WM_COMMAND to a TMenuItemMarkF2009-08-11T12:01:39Z2009-08-11T12:01:39Z<p>I don't think you can send a message directly to your menu item, but you can just post it to the main window and show your dialog from there. I do this and it works great so that the dialog box (in my case, a login prompt) appears on top of the main window to avoid confusion.</p>
<p>-Mark</p>
<pre><code>procedure WMPostStartup(var Message: TMessage); message WM_POSTSTARTUP;
procedure TMainForm.WMPostStartup(var Message: TMessage);
begin
Self.Refresh;
// Now show the dialog box.
end;
</code></pre>
http://stackoverflow.com/questions/1200469/what-is-a-customizable-vcl-designer-guideline-in-delphi/1200996#12009963Answer by MarkF for What is a "customizable VCL designer guideline" in Delphi?MarkF2009-07-29T15:10:15Z2009-07-29T15:10:15Z<p>They could mean that they are customizable by component writers. I think the only end user customization is to turn them on or off.</p>
http://stackoverflow.com/questions/1194013/how-to-do-mouse-panning-on-a-custom-component-in-delphi-20091How to do mouse panning on a custom component in Delphi 2009.MarkF2009-07-28T13:13:21Z2009-07-29T01:19:20Z
<p>I'm using D2009. I have a component derived from TWinControl to which I'd like to add mouse panning. I see that there's a new control style, csPannable, and a new control state, csPanning. I've been looking at the vcl source to try to figure it out, but so far I'm a bit lost. Does anyone know of any documentation for this? Any suggestions or links greatly appreciated!</p>
http://stackoverflow.com/questions/1164891/what-is-use-of-inline-keyword-in-delphi/1164965#11649655Answer by MarkF for what is use of inline keyword in delphiMarkF2009-07-22T12:39:46Z2009-07-22T12:45:22Z<p>Others have answered what inline does, but I just wanted to point out that there is a Compiler option to set inline on, off, or auto. Check out "Calling Procedures and Functions" in the D2009 docs for a very good explanation of the mechanics of inline. Here's the link to the online docs:</p>
<p><a href="http://docs.embarcadero.com/products/rad%5Fstudio/delphiAndcpp2009/HelpUpdate2/EN/html/devcommon/callingproceduresandfunctions%5Fxml.html" rel="nofollow">Delphi Online Docs for inline</a></p>
http://stackoverflow.com/questions/1159008/with-delphi-are-you-more-likely-to-re-use-temporary-variables-than-with-other-lan/1159164#11591643Answer by MarkF for With Delphi are you more likely to re-use temporary variables than with other languages?MarkF2009-07-21T13:27:35Z2009-07-21T13:39:28Z<p>I don't tend to reuse local vars as a general safety rule. I do love the new "var" live template stuff in d2007+. Just type var[tab] and the helper pops up. Also check out Ctrl-Shift-D (others mentioned Ctrl-Shift-V for local vars) to declare a field.</p>
http://stackoverflow.com/questions/1130454/how-to-get-a-stack-trace-from-fastmm/1130887#11308872Answer by MarkF for How to get a stack trace from FastMMMarkF2009-07-15T11:35:03Z2009-07-15T11:35:03Z<p>You may also want to check out Jeremy North's FastMM4 Option setting program. It's just a bit easier than editing the inc FastMM4Options.inc file directly. Here's the link:</p>
<p><a href="http://jedqc.blogspot.com/2007/07/new-fastmm4-options-interface.html" rel="nofollow">FastMM4 Options Interface Blog Post</a></p>
http://stackoverflow.com/questions/1076827/file-open-dialog-with-encodings-combobox-under-vista1File Open Dialog with Encodings combobox under Vista.MarkF2009-07-02T21:48:39Z2009-07-03T07:23:42Z
<p>I currently use the TOpenTextFileDialog as it has the Encodings option, but under Vista it appears using the older open dialog style. I'd like the new style open dialog, but with an encoding combobox that I can fill with custom strings. Basically I want the exact open dialog that Notepad shows under Vista. Of course I also need the corresponding save dialog as well. </p>
<p>I've done some research and it seems that the OFN_ENABLETEMPLATE flag causes the Vista common dialog to fall back to the old style. Unfortunately that's also the flag that lets the TOpenTextFileDialog modify the window to add the encodings combobox (if I understand things properly.) </p>
<p>Does anyone have a suggestion on how to get what I want under Vista but still have it work under XP? I assume that Windows 7 will have the same issue. I'm using D2009. Thanks for any suggestions or help!</p>
http://stackoverflow.com/questions/1043106/horizontal-text-orientation-on-left-aligned-tabs-of-pagecontrol/1043338#10433383Answer by MarkF for Horizontal text orientation on left aligned tabs of PageControlMarkF2009-06-25T11:07:47Z2009-06-25T11:07:47Z<p>Besides using ownerdraw I don't think there is an easy way to do that with the TPageControl. If you'd consider using a non-free third party component, I use the TRzPageControl from Raize Components and it has this feature. Make sure to set the "TextOrientation" to horizontal and the TabStyle to roundcorners (the default tab style looks odd with the text on horizontal mode).</p>
http://stackoverflow.com/questions/1015542/how-to-have-a-program-option-set-by-an-admistrator-that-the-user-cant-change2How to have a program option set by an admistrator that the user can't change?MarkF2009-06-18T22:33:51Z2009-06-19T09:21:22Z
<p>My application needs to read an option on startup to check if it should start in read-only mode. The option should not be allowed to be changed by the user. </p>
<p>I usually do this now using a value set in the HKLM\Software section of the system registry. The administrator sets the value and the users can't change it (they don't have writes to modify in HKLM). </p>
<p>The problem is that on a server (or Citrix) machine this affects all users. I'd like to figure out a way to do this on a per-user basis. How do others handle this? Is there a section in the system registry for this kind of per user setting that the user can't change? </p>
<p>Thanks for any suggestions or comments!</p>
http://stackoverflow.com/questions/969861/how-to-use-delphi-to-get-email-message-text-from-thunderbird3How to use Delphi to get email message text from ThunderbirdMarkF2009-06-09T12:43:04Z2009-06-09T15:33:08Z
<p>What I do now with Outlook: </p>
<p>I receive email orders for products. I select a single or multiple emails in Outlook (a single order can have multiple emails associated with it) and then switch to my Delphi coded OrderManager program and click "Import". It uses Outlook's COM automation interface to read the text of each message, parses and processes each one. </p>
<p>The question is, can I do this using Thunderbird instead? Does Thunderbird have a COM interface? I must be googling the wrong keywords because I haven't found anything yet. </p>
<p>Btw, I do have a version of my OrderManager that just reads the emails directly from my email server using Indy, but for several reasons I'd like to try to read them from Firefox. </p>
<p>Any suggestions, links to docs, or code samples will be greatly appreciated!</p>
http://stackoverflow.com/questions/528201/does-delphi-s-region-directive-support-a-default-folded-attribute/959543#9595431Answer by MarkF for Does Delphi 's REGION directive support a default 'folded' attribute?MarkF2009-06-06T12:01:35Z2009-06-06T12:01:35Z<p>Note that in d2009 a folded region will remain folded the next time that you open that project. This may be tied to the 'save project desktop' option.</p>
http://stackoverflow.com/questions/952402/region-equivalent-in-codegear-rad-studio-similar-way-to-group-code/959536#9595362Answer by MarkF for #region equivalent in CodeGear RAD Studio? Similar way to group code?MarkF2009-06-06T11:57:13Z2009-06-06T11:57:13Z<p>As an addition to eKek0's answer note that (at least in d2009) you can select the code lines that you want to put in a region, right click and choose Surround | Region. You'll be prompted for the region name.</p>
http://stackoverflow.com/questions/1749337/oracle-unicode-spooling/1749681#1749681Comment by MarkF on Oracle Unicode SpoolingMarkF2009-11-17T15:45:43Z2009-11-17T15:45:43ZVincent is correct! I didn't notice that the spool file doesn't contain a UTF-8 BOM and so was loaded as ASCII in my editor.http://stackoverflow.com/questions/1748454/issues-with-nvidia-nview-desktop-manager-and-delphi-applications/1748947#1748947Comment by MarkF on Issues with nVidia nView desktop manager and Delphi applications?MarkF2009-11-17T15:02:20Z2009-11-17T15:02:20ZScott, agreed 100%. It's just that if this only affects Delphi applications then I'm not sure if they will be keen on fixing it. I'm hoping to get more info before I go that route.http://stackoverflow.com/questions/1748454/issues-with-nvidia-nview-desktop-manager-and-delphi-applications/1748947#1748947Comment by MarkF on Issues with nVidia nView desktop manager and Delphi applications?MarkF2009-11-17T14:44:05Z2009-11-17T14:44:05ZThanks for that! I'd love to find out why it's causing problems though. I keep hoping there's something I can do to fix things.http://stackoverflow.com/questions/1748454/issues-with-nvidia-nview-desktop-manager-and-delphi-applicationsComment by MarkF on Issues with nVidia nView desktop manager and Delphi applications?MarkF2009-11-17T14:40:12Z2009-11-17T14:40:12ZThanks. Did you just drag the app? You need to "send it to other monitor" using the nView commands for the problem to occur.http://stackoverflow.com/questions/1716467/help-with-sending-number-to-excel-2007-from-delphi-2010-as-a-string/1717895#1717895Comment by MarkF on Help with sending number to Excel 2007 from Delphi 2010 as a string.MarkF2009-11-12T14:30:21Z2009-11-12T14:30:21ZThanks all for the comments. It seems that (at least in Excel's case) this changed in newer versions. This seems like a major flaw or bug, but I guess I'll just have to live with it. The date thing is a real problem since it will misinterpret dd/mm as mm/dd if the first part is less than 13. Ouch...http://stackoverflow.com/questions/1716467/help-with-sending-number-to-excel-2007-from-delphi-2010-as-a-string/1717895#1717895Comment by MarkF on Help with sending number to Excel 2007 from Delphi 2010 as a string.MarkF2009-11-12T03:41:53Z2009-11-12T03:41:53ZThanks for verifying! What version of Excel are you using? My Excel 97 does handle regional strings properly it seems. I'm wondering if this behavior is new to Excel 2007.http://stackoverflow.com/questions/1716467/help-with-sending-number-to-excel-2007-from-delphi-2010-as-a-string/1716532#1716532Comment by MarkF on Help with sending number to Excel 2007 from Delphi 2010 as a string.MarkF2009-11-11T19:51:33Z2009-11-11T19:51:33ZThanks. I don't have Excel 2007 here, but I think that "Standard" is the new "General". I could be wrong about that however! Can anyone with Excel 2007 comment on that?http://stackoverflow.com/questions/1716467/help-with-sending-number-to-excel-2007-from-delphi-2010-as-a-string/1716535#1716535Comment by MarkF on Help with sending number to Excel 2007 from Delphi 2010 as a string.MarkF2009-11-11T19:50:23Z2009-11-11T19:50:23ZYes, it works if I pass the value as a float. However I'm really trying to find out why using a string doesn't work. I have a situation where I'd prefer to pass it as a string.http://stackoverflow.com/questions/1302462/is-there-a-way-to-change-the-default-generated-code-wrapping-width-in-the-delphi/1303083#1303083Comment by MarkF on Is there a way to change the default generated code wrapping width in the Delphi IDE Editor?MarkF2009-08-20T02:24:12Z2009-08-20T02:24:12ZThanks! I'll have to take a look at those.http://stackoverflow.com/questions/1302462/is-there-a-way-to-change-the-default-generated-code-wrapping-width-in-the-delphi/1303074#1303074Comment by MarkF on Is there a way to change the default generated code wrapping width in the Delphi IDE Editor?MarkF2009-08-20T02:21:09Z2009-08-20T02:21:09ZThanks! I just tested on D2009 and you are right on. I thought I had already tested that, but I must have been looking at an event I generated with the lower setting. Much appreciated.http://stackoverflow.com/questions/1302462/is-there-a-way-to-change-the-default-generated-code-wrapping-width-in-the-delphi/1302795#1302795Comment by MarkF on Is there a way to change the default generated code wrapping width in the Delphi IDE Editor?MarkF2009-08-19T22:24:24Z2009-08-19T22:24:24ZThanks. I meant code inserted by selecting VCL events or class completion, not live templates.http://stackoverflow.com/questions/1194013/how-to-do-mouse-panning-on-a-custom-component-in-delphi-2009/1194325#1194325Comment by MarkF on How to do mouse panning on a custom component in Delphi 2009.MarkF2009-07-28T14:27:35Z2009-07-28T14:27:35ZAs mentioned I'm trying to interface with the built in panning support.http://stackoverflow.com/questions/63957/what-is-the-best-set-of-tools-to-develop-win32-delphi-applications/64024#64024Comment by MarkF on What is the best set of tools to develop Win32 Delphi applications?MarkF2009-07-22T12:34:29Z2009-07-22T12:34:29ZActually it looks like Luke answered it before the wording of the question was changed to include the one tool per post suggestion. Totally agree on InnoSetup, Help & Manual, and Beyond Compare.http://stackoverflow.com/questions/1159008/with-delphi-are-you-more-likely-to-re-use-temporary-variables-than-with-other-lan/1159164#1159164Comment by MarkF on With Delphi are you more likely to re-use temporary variables than with other languages?MarkF2009-07-21T14:22:41Z2009-07-21T14:22:41ZI think it was added in D2007.http://stackoverflow.com/questions/1076827/file-open-dialog-with-encodings-combobox-under-vista/1078164#1078164Comment by MarkF on File Open Dialog with Encodings combobox under Vista.MarkF2009-07-03T12:02:23Z2009-07-03T12:02:23ZThanks! That's exactly what I was looking for! I've added a comment to that blog with some additional info in case it helps others. Also the link to the msdn docs is <a href="http://msdn.microsoft.com/en-us/library/bb775912.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a> if anyone needs it.