active questions tagged delphi+vcl - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T11:45:18Zhttp://stackoverflow.com/feeds/tag/delphi+vclhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1849054/delphi-transparent-forms-with-parent0Delphi + Transparent forms with parent.SaCi2009-12-04T19:13:02Z2009-12-15T17:46:43Z
<p>I want to create a form, but just use it to keep an image. (Like a splash form)</p>
<p>To create a form like these I use these lines:
"SetWindowLong(Handle, GWL_EXSTYLE, LexStyle or WS_EX_LAYERED);
UpdateLayeredWindow(Handle, 0, nil, @LBitmapSize, LBitmap.Canvas.Handle,, 0, @LBlendFunction, ULW_ALPHA);"</p>
<p>This image is a PNG image with transparent layer.</p>
<p>This form must have a parent form or must have the behaivor of a form that have it.</p>
<p>That is the problem, if I add some component on this form, this just doesn't show the component.
And if I set a parent form to it, this lose it's transparency proprerties.</p>
<p>But I need to add components in this and I need to set a parent to the form. </p>
<p>Some one knows other way to do this? </p>
http://stackoverflow.com/questions/1897181/closing-a-secondary-delphi-form-causes-the-main-form-to-lose-focus0Closing a secondary delphi form causes the main form to lose focusY Low2009-12-13T17:54:56Z2009-12-14T20:41:06Z
<p>When showing a secondary form from the main form and from the second form showing a third form and then closing both forms will cause the main form to lose focus.</p>
<p>Using Delphi 2009 with XP SP3</p>
<p>Here are my steps for reproducing the problem:</p>
<ol>
<li>Create a new VCL forms applications</li>
<li>Drag a button onto the created form</li>
<li>In the click handler create a new TForm1 and show it</li>
</ol>
<p>Run the program. Click the button to show a second form. Click the button on the second form to create a third form. When closing both new forms the main form will lose its focus.</p>
<p>This is my code in the button click event handler:</p>
<pre>
// Using Self does not change the results
with TForm1.Create(nil) do
show;
</pre>
<p>Is there any way to stop my main form from losing focus?</p>
http://stackoverflow.com/questions/1860656/timagelist-component-for-delphi-7-wich-supports-png-images0TImageList component for Delphi 7 Wich supports PNG Images.RRUZ2009-12-07T15:22:05Z2009-12-07T16:49:34Z
<p>Hello, anyone knows a component that descends from TImageList and support PNG images, and compatible with Delphi 7.</p>
<p>Thanks in advance.</p>
<p>Bye.</p>
http://stackoverflow.com/questions/1841621/delphi-non-visual-ttree-implementation1Delphi non visual TTree implementationFrancis Lee2009-12-03T17:43:13Z2009-12-04T10:12:58Z
<p>Hello,</p>
<p>I'm looking for a non visual persistent tree (TStringTree) implementation. If someone known any good implentation of it, please let me know.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1839931/interface-for-open-cascade-in-delphi0Interface for Open Cascade in DelphiYogi Yang 0072009-12-03T13:40:50Z2009-12-03T18:49:34Z
<p>I am trying to find a way to use <a href="http://www.opencascade.org" rel="nofollow">Open Cascade</a>(www.opencascade.org) - 3D Modeling Technology in one of our software which is written in Delphi.</p>
<p>I did manage top find an ActiveX which supports Open Cascade, but on trying it I did not like the visual quality of rendered images. The ActiveX lib can be found <a href="http://www.ewcad.com" rel="nofollow">here</a> (www.ewcad.com). </p>
<p>I am not able to locate any VCL for this nor can I find any import declarations for this on internet.</p>
<p>Can anyone please help me on this?</p>
http://stackoverflow.com/questions/1760620/how-do-i-add-a-tlabel-to-the-menu-bar-in-delphi4How Do I Add A TLabel To The Menu Bar in Delphi?lkessler2009-11-19T03:04:23Z2009-11-30T20:35:59Z
<p>I use <a href="http://www.scootersoftware.com/" rel="nofollow">Beyond Compare</a> (a great program), and was very impressed when it displayed a "New Version Available" label on its Menu Bar. I clicked on it, up popped an install new version box, it installed, the program restarted itself and there was the new version and no more label.</p>
<p>I thought that was a great feature. The label is there prominently on the menu bar where the user can't miss it. I've already got the update procedure, so all I had to do was add the label. That should be easy.</p>
<p>Here's the label where I want it:
<img src="http://www.beholdgenealogy.com/img/tlabel.jpg" alt="The Label Where I Want It"></p>
<p>... Wrong. I couldn't figure out how to add a label there. The menu bar and the control area above it appear to be hands-off area for visual components. I couldn't place one there.</p>
<p>But I know it can be done, because Beyond Compare is a Delphi program. </p>
<p>Can anyone tell me what I have to do to put a TLabel in my Menu Bar or at least make it appear to be over the Menu Bar in the correct position?</p>
<p>For reference, I use Delphi 2009.</p>
<p><hr></p>
<p>Conclusion: Christopher seems to have correctly figured out what the Beyond Compare people did. I've decided to implement the menu item, but without the customization of his "owner draw" solution. So I don't get the blue bold underline hyperlink look, but I also don't lose all the automatic things (like the Vista styling) that owner draw skips.</p>
<p>To space the menu item over to the right, I've added an item after the "Help" that has the caption " " and is disabled.</p>
<p>Thanks, Christopher. I was stuck thinking it must be a Label, but you saw around that.</p>
http://stackoverflow.com/questions/1800742/delphi-2010-action-manager-main-menu-bar0Delphi 2010 Action Manager & Main Menu BarCape Cod Gunny2009-11-25T23:46:55Z2009-11-26T08:51:06Z
<p>I'm trying to use the Action Manager and Action Main Menu Bar in Delphi 2010 an I have no idea how to make this work. I've tried looking at the examples that come with Delphi 2010 and I can't seem to figure this out. </p>
<p>I've tried playing around with the examples. I've been able to add an image to the Image List component and set that item to the new item index. At design time it displays properly at runtime it reverts back to the original.</p>
<p>I'd like to learn how to use the Action Manager and Action Main Menu Bar but I can find any help on these topics. Is there a tutorial on how to use the Action Manager and Action Main Menu Bar?</p>
http://stackoverflow.com/questions/1705009/did-you-ever-encounter-commercial-vcl-component-suite-without-bugs2Did you ever encounter commercial VCL component/suite without bugs? [closed]Mihaela2009-11-10T00:55:28Z2009-11-10T02:19:19Z
<p>I've used a lot commercial components, over the time. Now I just use a few. Almost all came with bugs. Some were minor and some disastrous. This is not bashing. We all produce bugs, that's expected. And we handle/fix them. But shouldn't the price be some kind of assurance? There should be a negative correlation between price and the severity of bugs. That's one of the reasons why I always opt for the full source version. Some bugs the vendors just won't fix, and some are just fixed too late.</p>
http://stackoverflow.com/questions/1690764/what-is-the-purpose-of-the-tag-property-of-delphi-vcl-components11What is the purpose of the 'Tag' property of Delphi VCL components?HMcG2009-11-06T21:56:41Z2009-11-09T19:23:26Z
<p>Is there any specific purpose for the 'Tag' property of Delphi VCL components?
I have Googled a few examples using it as, for example, a 'color' property or using the value as a pointer address, but is it 'good practice' to use it, or is it considered 'bad practice' as it ties the program logic to the UI?</p>
http://stackoverflow.com/questions/1687935/how-do-i-remove-items-from-the-default-right-click-menu-in-delphi-20100How do I remove items from the default right-click menu in Delphi 2010?frogb2009-11-06T14:23:59Z2009-11-06T14:46:23Z
<p>Who or what inserts the Unicode, right-to-left and IME items at the foot of the default right-click popup menu in Delphi 2010 VCL applications? I would like to remove them for user environments where they are unlikely ever to be needed, without having to define a custom pop-up menu for every edit and memo. Most of the time only copy, cut, paste and select all are appropriate.</p>
http://stackoverflow.com/questions/202702/how-to-make-a-delphi-tspeedbutton-stay-pressed-if-its-the-only-one-in-the-group4How to make a Delphi TSpeedButton stay pressed if it's the only one in the groupPeter Turner2008-10-14T20:40:13Z2009-10-31T23:45:49Z
<p>I'm not sure why the TSpeedButton has this property but when a TSpeedButton is the only button of a given groupindex, it doesn't stay pressed, whether or not "AllowAllUp" is pressed. Maybe a Jedi control would suffice, but hopefully there's some fix. Any help or anecdotes are appreciated.</p>
<p>BTW, I'm (still) using Delphi 7, not sure if this is an across the board conundrum.</p>
http://stackoverflow.com/questions/1636132/opacity-of-a-twincontrol1Opacity of a TWinControl?utku_karatas2009-10-28T09:39:21Z2009-10-28T13:35:12Z
<p>How could one change the opacity of a TWinControl based control? And why didn't they add this capability to TControl/TWinControl level (why only TForm)? </p>
http://stackoverflow.com/questions/1619748/enumerate-the-vcl-controls-in-a-external-application3Enumerate the VCL controls in a external applicationSalvador2009-10-25T02:08:42Z2009-10-26T16:19:39Z
<p>Hello, is possible via the Windows API's to enumerate and iterate the VCL controls on a form (TForm) belonging to a external Win32 application written in C ++ Builder or Delphi.</p>
<p>Bye.</p>
http://stackoverflow.com/questions/1566907/determine-if-running-as-vcl-forms-or-service1Determine if running as VCL Forms or ServiceM Schenkel2009-10-14T15:03:23Z2009-10-16T17:30:22Z
<p>I have code which is used both in services and within VCL Form applications (win32 application). How can I determine if the underlying application is running as a NT Service or as an application?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1467117/delphi-2009-handle-when-window-is-restored-via-double-clicking-the-sysmenu2Delphi 2009 - Handle when window is restored via double clicking the SysMenu?James2009-09-23T16:21:10Z2009-09-23T19:22:46Z
<p>Hi,</p>
<p>I need to handle when the user restores the form by double clicking the title bar. I tried handling the WM_SYSCOMMAND window message however this only works if the user restores the form via clicking the restore button in the system menu.</p>
<p>I am using DevExpress ribbon form components if this matters.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1456804/vcl-for-web-skins-themes1VCL for Web skins/themes ?Craig Lowndes2009-09-21T20:55:44Z2009-09-21T22:56:51Z
<p>Hi All,</p>
<p>Has anyone created a skin/theme wrapper for Intraweb/VCL for Web ?</p>
<p>The default look of the grids etc are very dated..</p>
<p>Any info appreciated..</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1439543/delphi-remove-item-from-listbox4[Delphi] Remove Item from ListBox?Tom2009-09-17T15:20:15Z2009-09-17T15:53:30Z
<p>Hello,</p>
<p>Is there any way to remove item from listbox based on it's name but not index value? I would like to remove item named "Mouse" (which index # changes all the time).</p>
http://stackoverflow.com/questions/1405106/finding-out-position-of-a-control-inside-tgridpanel1Finding out position of a control inside TGridPanelHarriv2009-09-10T12:50:19Z2009-09-10T17:37:53Z
<p>How I can find out the position (row and column index) of controls inside TGridPanel? I'd like to use common OnClick event for number of buttons and need to know the X,Y position of the button.</p>
<p>I'm using Delphi 2007.</p>
http://stackoverflow.com/questions/662448/delphi-drag-images-challenge1Delphi drag images challengeutku_karatas2009-03-19T14:37:23Z2009-09-09T21:41:10Z
<p>Hi all,</p>
<p>The code below enables a control (a label for instance) to show drag images while the dragging operation. </p>
<p>My problem is that I do <strong>not</strong> want to show the drag image instanly when the dragging begins, I want the image to be displayed <strong>when</strong> the mouse is on specific boundaries of the control - eg. in the right half of the label . </p>
<p>So far I haven't been able to find a solution for this - the image just gets displayed instantly (unless I modify the VCL source). I appreciate any tricks at this point to get the desired behaviour before abondoning VCL drag&drop utilities and roll a custom one capturing the mouse.</p>
<p>Here's an example pseudocode to enable drag images for a label.. </p>
<pre><code>{ turn on dragging }
Label1.DragMode := dmManual;
Label1.ControlStyle := Label1.ControlStyle + [csDisplayDragImage];
type
// VCL needs this for getting drag images..
TMyDragObject = class(TDragControlObject)
protected
function GetDragImages: TDragImageList; override;
end;
function TMyDragObject.GetDragImages: TDragImageList;
begin
Result := Form1.ImageList1;
end;
procedure TForm1.Label1MouseDown(...);
begin
{ start the dragging manually }
Label1.BeginDrag(False, 4); // the problem area! image is shown instantly at here!
end;
procedure TForm1.Label1StartDrag(Sender: TObject; var DragObject: TDragObject);
var b : TBitmap;
begin
ImageList1.Clear;
DragObject := TMyDragObject.Create(self);
b := TBitmap.Create;
try
b.Width := ImageList1.Width;
b.Height := ImageList1.Height;
b.LoadFromFile('/path/to/image');
ImageList1.Add(b, nil);
finally
b.Free;
end;
end;
procedure TForm1.Label1MouseMove(...);
begin
if X > Label1.Width div 2 then // right half
// ??? - do show the drag image
else
// ??? - no drage image should be shown
end;
</code></pre>
http://stackoverflow.com/questions/1396721/delphi-vcl-for-win32-multiple-event-handlers6Delphi VCL for Win32 - multiple event handlers.michal2009-09-08T22:43:06Z2009-09-09T11:16:13Z
<p>Hi,
I'm looking for some code allowing easy asigning many event handlers to a single event of object... I needed it very much for my plugin architecture, so I implemented some replacement for that, however I don't like my solution for that, so I'd like to know what is yours idea/solution/tip ... My solution is just a list with items like
<code>eventName: string;
proc: TMyEventProc;</code>
where TMyEventProc takes two arguments, sender and eventData: pointer.
depending on name of the event, eventData points to different record / object.</p>
<p>Unfortunately this requires declaration of many, many records for being passed as argument.
The method is also very slow, and requires to implement calling the required "callbacks" while the "real" event gets hit.</p>
http://stackoverflow.com/questions/1354342/how-to-create-a-non-rectangular-button-with-delphi1how to create a Non-rectangular button with delphi?Tobassum Munir2009-08-30T17:12:27Z2009-08-30T23:12:00Z
<p>hello all Friend...</p>
<p>How to create a transparent Non-rectangular button with delphi?</p>
<p>I Need Urgent Help.........</p>
http://stackoverflow.com/questions/1340169/delphi-tabsheet-does-not-display-images1[Delphi] TabSheet does not display imagesTom2009-08-27T10:26:12Z2009-08-27T22:07:30Z
<p>Hi,</p>
<p>Is there any reason why images are not being displayed if I place it into tabsheet? Just shows white background instead.</p>
http://stackoverflow.com/questions/1324376/error-on-setting-tdatetimepicker-font-style-to-italic-in-delphi-51Error on setting TDateTimePicker.Font.Style to italic in Delphi 5smok12009-08-24T19:51:30Z2009-08-24T20:36:51Z
<p>Is it possible to set TDateTimePicker’s font to italic? I am doing it in this code</p>
<pre><code>var
DatEdit : TDateTimePicker;
begin
//I know Canvas is a stupid name for TPanel
DatEdit:=TDateTimePicker.Create(Canvas);
DatEdit.OnEnter := CtrlInputProc;
DatEdit.OnExit := CtrlExitProc;
DatEdit.Enabled := false;
DatEdit.Font.Style := DatEdit.Font.Style + [fsItalic]; //this line creates an exception
DatEdit.Parent := Canvas;
end;
</code></pre>
<p>And every time code executes last line, an EInvalidOperation exception is thrown with a message: </p>
<pre><code>„Control” has no parent window.
</code></pre>
<p>Is this Delphi 5 feature, or am I doing something wrong?</p>
http://stackoverflow.com/questions/1296411/checking-for-copy-vs-move-in-delphi-drag-and-drop2Checking for Copy vs. Move in Delphi Drag and DropRoddy2009-08-18T20:46:40Z2009-08-19T13:44:13Z
<p>Using the 'standard' VCL drag and drop events OnDragOver and OnDragDrop, how can I distinguish between "Copy" and "Move" operations? </p>
<p>I don't seem to have a TDragType available, and the keyboard Shift state isn't passed to these events.</p>
http://stackoverflow.com/questions/1277168/how-can-different-instances-of-the-same-form-class-use-different-window-class-sty1How can different instances of the same form class use different window class styles?plainth2009-08-14T10:31:06Z2009-08-16T17:04:12Z
<p>Hi,</p>
<p>I try to use the following technique in order to enable/disable the shadow effect for a window: (The CreateParams is of course overriden. The TToolWindow descends from TForm).</p>
<pre><code>procedure TToolWindow.CreateParams(var Params: TCreateParams);
var
LShadow: boolean;
begin
inherited;
if (Win32Platform = VER_PLATFORM_WIN32_NT)
and ((Win32MajorVersion > 5)
or ((Win32MajorVersion = 5) and (Win32MinorVersion >= 1))) then //Win XP or higher
if SystemParametersInfo(SPI_GETDROPSHADOW, 0, @LShadow, 0) then
begin
if LShadow and HasShadow then
Params.WindowClass.Style := Params.WindowClass.Style or CS_DROPSHADOW;
end;
end;
</code></pre>
<p>While this works ok for the first instance of the TToolWindow class, the following instances keep the setting from the first instance, regardless of the value of HasShadow (which is a published property of the TToolWindow class).</p>
<p>How can I have different shadow settings on different instances of TToolWindow?</p>
<p>TIA</p>
http://stackoverflow.com/questions/1240767/under-what-conditions-will-a-tform-fire-onresize-on-show4Under what conditions will a TForm fire OnResize on show?Joe White2009-08-06T19:07:43Z2009-08-15T21:51:54Z
<p>As an extension of <a href="http://stackoverflow.com/questions/1239407/will-a-delphi-form-always-fire-onresize-when-its-shown">this question</a>:</p>
<p>TForm.OnResize is sometimes fired before a form is first shown, but not always. For example, if BorderStyle is either bsDialog or bsNone, then OnResize will not fire. For all other BorderStyle values (and with all other properties at their defaults), OnResize does fire.</p>
<p><strong>Are there other things that affect whether OnResize will fire before the form is shown?</strong> For example, other properties, or combinations of properties, that can affect this?</p>
<p>The OnResize event is a result of the <code>ShowWindow</code> API function sending a <code>WM_SIZE</code> message to the window. That bears repeating: <strong>the message is coming from Windows, not from Delphi.</strong> It's a Windows function (<code>ShowWindow</code>) that's (sometimes) sending the message that triggers the event -- so the VCL source code is not really helpful in this case.</p>
<p>Bonus points for definitive answers based on documented <code>ShowWindow</code> / <code>WM_SIZE</code> behavior, e.g. references to MSDN documentation or Petzold books.</p>
http://stackoverflow.com/questions/1279644/delphi-how-can-parent-form-tell-if-a-non-modal-form-is-still-open1[Delphi] How can parent form tell if a non-modal form is still open?Tom2009-08-14T19:10:33Z2009-08-15T15:38:13Z
<p>If a Modal form creates a form and does .Show, how can the parent later determine if the non-modal form is still open or if the user closed it?</p>
http://stackoverflow.com/questions/1277578/showing-cell-content-on-hint-in-devexpress-grid0Showing cell content on hint in DevExpress gridsmok12009-08-14T12:27:36Z2009-08-14T17:01:46Z
<p>I am using TcxGridDBTableView from DevExpress. Some of the cells contain really long strings, so I want to be able to show them to users using Hints. I want also to be able to do have line brakes in hint in places of semicolon in my text.</p>
<p>Do you know how to simply achieve this?</p>
http://stackoverflow.com/questions/1268410/how-to-tile-a-image-in-timage2How to tile a Image in TImage?John2009-08-12T20:04:11Z2009-08-13T09:29:49Z
<p>Hello,</p>
<p>How do I tile a image in a Timage in Delphi?</p>
<p>Why I need it: Instead of creating more TImages at runtime,I could create one and store my image there knowing that it will be 'fit' until it reaches TImage's height and width.</p>
<p>Please suggest any ideas to do this.</p>
<p>Thank you!</p>
<p>EDIT: Please note,I'm not asking for streching the image,but fitting.</p>
http://stackoverflow.com/questions/1266925/does-the-illinois-mega-million-lottey-ticket-have-the-number-encoded-on-its-barco0Does the Illinois Mega Million lottey ticket have the number encoded on its barcode [closed]Mike Leslie2009-08-12T15:28:51Z2009-08-12T15:32:44Z
<p>I am writing a delphi program that scans an Illinois lottery ticket and puts the numbers in a database to keep track of winning tickets. The barcode for the tickets does not seem to be readable; is there anywhere I can get a driver or component (preferably VCL) that can help me in this matter?</p>