Search Results

3
votes
2answers
416 views

How to use Delphi to get email message text from Thunderbird

What I do now with Outlook: 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 swi …
2
votes
6answers
223 views

How to have a program option set by an admistrator that the user can’t change?

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. I usually do this now using a …
1
vote
1answer
330 views

File Open Dialog with Encodings combobox under Vista.

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 combo …
1
vote
1answer
161 views

How to do mouse panning on a custom component in Delphi 2009.

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 …
1
vote
3answers
153 views

Is there a way to change the default generated code wrapping width in the Delphi IDE Editor?

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 o …
0
votes
3answers
102 views

Help with sending number to Excel 2007 from Delphi 2010 as a string.

I'm sending a number to Excel 2007 as a string (Cell.Value := '2,5') using late binding. The actual code is more like: var CellVal: OLEVariant; ... CellVal := FloatToStr(2.5); // …
3
votes
1answer
122 views

Issues with nVidia nView desktop manager and Delphi applications?

Hi all, 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 applicati …
2
votes

#region equivalent in CodeGear RAD Studio? Similar way to group code?

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 …
1
vote

Does Delphi ‘s REGION directive support a default ‘folded’ attribute?

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. …
3
votes

Horizontal text orientation on left aligned tabs of PageControl

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 …
2
votes

How to get a stack trace from FastMM

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: …
3
votes

With Delphi are you more likely to re-use temporary variables than with other languages?

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 m …
5
votes

what is use of inline keyword in delphi

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 …
3
votes

What is a “customizable VCL designer guideline” in Delphi?

They could mean that they are customizable by component writers. I think the only end user customization is to turn them on or off. …
0
votes

Sending WM_COMMAND to a TMenuItem

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 (i …

1 2 next
15 30 50 per page