MarkF
|
Registered User
|
Delphi programmer since D1!
|
|
19h |
accepted | Is there a way to make the “Code Folding” Stay Folded In Delphi 2010 |
|
19h |
revised |
Is there a way to make the “Code Folding” Stay Folded In Delphi 2010 reworded my answer |
|
19h |
answered | Is there a way to make the “Code Folding” Stay Folded In Delphi 2010 |
|
Nov 17 |
revised |
Oracle Unicode Spooling BOM note |
|
Nov 17 |
comment |
Oracle Unicode Spooling Vincent 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. |
|
Nov 17 |
comment |
Issues with nVidia nView desktop manager and Delphi applications? Scott, 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. |
|
Nov 17 |
answered | Oracle Unicode Spooling |
|
Nov 17 |
comment |
Issues with nVidia nView desktop manager and Delphi applications? Thanks 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. |
|
Nov 17 |
comment |
Issues with nVidia nView desktop manager and Delphi applications? Thanks. Did you just drag the app? You need to "send it to other monitor" using the nView commands for the problem to occur. |
|
Nov 17 |
asked | Issues with nVidia nView desktop manager and Delphi applications? |
|
Nov 12 |
comment |
Help with sending number to Excel 2007 from Delphi 2010 as a string. Thanks 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... |
|
Nov 12 |
comment |
Help with sending number to Excel 2007 from Delphi 2010 as a string. Thanks 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. |
|
Nov 11 |
comment |
Help with sending number to Excel 2007 from Delphi 2010 as a string. Thanks. 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? |
|
Nov 11 |
comment |
Help with sending number to Excel 2007 from Delphi 2010 as a string. Yes, 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. |
|
Nov 11 |
revised |
Help with sending number to Excel 2007 from Delphi 2010 as a string. added 75 characters in body |
|
Nov 11 |
asked | Help with sending number to Excel 2007 from Delphi 2010 as a string. |
|
Sep 11 |
answered | Steps to build Virtual Treeview in Delphi 2010 |
|
Aug 20 |
comment |
Is there a way to change the default generated code wrapping width in the Delphi IDE Editor? Thanks! I'll have to take a look at those. |
|
Aug 20 |
comment |
Is there a way to change the default generated code wrapping width in the Delphi IDE Editor? Thanks! 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. |
|
Aug 19 |
comment |
Is there a way to change the default generated code wrapping width in the Delphi IDE Editor? Thanks. I meant code inserted by selecting VCL events or class completion, not live templates. |
|
Aug 19 |
asked | Is there a way to change the default generated code wrapping width in the Delphi IDE Editor? |
|
Aug 11 |
answered | Sending WM_COMMAND to a TMenuItem |
|
Jul 30 |
accepted | What is a “customizable VCL designer guideline” in Delphi? |
|
Jul 29 |
answered | What is a “customizable VCL designer guideline” in Delphi? |
|
Jul 28 |
comment |
How to do mouse panning on a custom component in Delphi 2009. As mentioned I'm trying to interface with the built in panning support. |
|
Jul 28 |
asked | How to do mouse panning on a custom component in Delphi 2009. |
|
Jul 22 |
revised |
what is use of inline keyword in delphi added 219 characters in body |
|
Jul 22 |
answered | what is use of inline keyword in delphi |
|
Jul 22 |
comment |
What is the best set of tools to develop Win32 Delphi applications? Actually 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. |
|
Jul 21 |
comment |
With Delphi are you more likely to re-use temporary variables than with other languages? I think it was added in D2007. |
|
Jul 21 |
awarded | ● Editor |
|
Jul 21 |
revised |
With Delphi are you more likely to re-use temporary variables than with other languages? Added Ctrl-Shift-D note. |
|
Jul 21 |
answered | With Delphi are you more likely to re-use temporary variables than with other languages? |
|
Jul 15 |
answered | How to get a stack trace from FastMM |
|
Jul 3 |
comment |
File Open Dialog with Encodings combobox under Vista. Thanks! 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 msdn.microsoft.com/en-us/library/… if anyone needs it. |
|
Jul 2 |
asked | File Open Dialog with Encodings combobox under Vista. |
|
Jun 26 |
awarded |
● |
|
Jun 25 |
awarded | ● Commentator |
|
Jun 25 |
comment |
Horizontal text orientation on left aligned tabs of PageControl Perhaps if it isn't a "pro" level app, you could use a pagecontrol with no visible tab and use another control (or a set of buttons) to change the active page. If the number of pages is fixed then it's very easy, if not you'd just need to dynamically create the buttons (which is also very easy.) I'm sure you could get a pretty good look by playing around with different controls to change the pages. |
|
Jun 25 |
answered | Horizontal text orientation on left aligned tabs of PageControl |
|
Jun 20 |
comment |
How do you set the Result value? I personally like your example 1 best as it makes it more obvious to me that the default result is "false". I just wanted to note that I think that your Example 3 (Exit(result)) is new to Delphi 2009 just in case the OP has an earlier version and tries it. |
|
Jun 19 |
comment |
How to have a program option set by an admistrator that the user can’t change? Thanks, I agree that's a good suggestion. If the read-only registry thing doesn't work out, this may be a good alternative. |
|
Jun 19 |
comment |
How to have a program option set by an admistrator that the user can’t change? Thanks David. I do think that I might end up with using a read-only setting in HKCU (either in the policies area as mentioned by Oliver, or with a homemade readonly key as you suggest). Thanks for your suggestions! |
|
Jun 19 |
comment |
How to have a program option set by an admistrator that the user can’t change? Thanks Oliver! That looks like what I'm looking for except for the recommendation about the entries only being edited by Group Policy Objects. I guess I need to research exactly how "not recommended" it is, since it seems to fit my needs otherwise! I suppose I could have the administrators create a new read-only key just for my special settings, but if one already exists they may be more apt to agree to just add to it. |
|
Jun 19 |
comment |
How to have a program option set by an admistrator that the user can’t change? Thanks. I've done something like this in the past, but it seems to me that a savvy user could just copy my exe to a different directory on their machine (or re-install it completely to a different directory.) It really depends on how "locked down" their machine is I guess! |
|
Jun 19 |
comment |
How to have a program option set by an admistrator that the user can’t change? Actually I do do that for some cases. Some clients however don't want to create the rights table and/or manage the users by name. In some cases users share the same username, but need different rights (not what I would do, but I don't have any control over the client's policies...) They want to make the setting on install with a script (or direct registry editing perhaps). |
|
Jun 19 |
comment |
How to have a program option set by an admistrator that the user can’t change? Why doesn't it make sense? I even gave an example of the kind of setting (read-only) that you wouldn't want the user to be able to change... This option would be initially set by an administrator, not by the user. Just because a setting is per-user does not mean that that user should be able to change it. File restrictions, database rights, and disk quotas are all examples of settings that are per-user but that the user shouldn't be able to change. |
|
Jun 19 |
comment |
How to have a program option set by an admistrator that the user can’t change? I use HKCU for normal user settings. In this case though, it is a setting that the user shouldn't be able to change. |
|
Jun 18 |
asked | How to have a program option set by an admistrator that the user can’t change? |
|
Jun 15 |
awarded | ● Teacher |
