I don't know if maybe I'm missing a setting or something in my dialog but I've encountered a peculiar issue.
I'm using windows 7 ultimate x64 on MS 12.0.9
I created a dialog, configured it to be minimizable, compiled it into an application and it minimizes to the taskbar fine. The odd issue is that it's only one dialog but when I put my mouse over the taskbar icon for the app two preview windows show up, one that is titled macro scheduler and the other that lists my dialog name. Is this performing as intended or am I missing something in my setting.
This is the dialog I am using that should replicate what I"m describing if you compile it.
Code: Select all
Dialog>Dialog1
object Dialog1: TForm
Left = 390
Top = 116
HelpContext = 5000
Caption = 'CustomDialog'
ClientHeight = 212
ClientWidth = 431
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = True
Position = poMainFormCenter
ShowHint = True
OnTaskBar = True
PixelsPerInch = 96
TextHeight = 13
end
EndDialog>Dialog1
show>dialog1,r
-Josh