Hi Ray,
I rolled back to KSVC version 6.5.0 and the images are working correctly again in both design & runtime without other changes to code. My Delphi is at 10.4 Update 2.
The form itself is very simple, nearly all the properties are the defaults with no modifications in the .pas. From the .dfm:
Left = 400
Top = 349
ActiveControl = pcMain
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = ‘Enter User ID and Password’
ClientHeight = 247
ClientWidth = 410
Color = clBtnFace
DefaultMonitor = dmPrimary
Font.Charset = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = ‘Arial’
Font.Style = []
OldCreateOrder = True
Position = poDesktopCenter
OnActivate = FormActivate
OnCreate = FormCreate
OnDestroy = FormDestroy
OnHide = FormHide
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 14
Here are the button’s properties from the .dfm, and no changes are made to the button in the .pas unit:
object BitBtn1: TRzBitBtn
Left = 331
Top = 1
Width = 71
Height = 24
Font.Charset = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = ‘Arial’
Font.Style = []
HotTrack = True
ParentFont = False
TabOrder = 1
Kind = bkCancel
Margin = -1
end
Thank you,
Ken