Thanks taazz and Martin_fr,
I guess I can try Align again, but was having trouble and thought Anchors were a good way to do it. They also seemed worth learning for other projects and forms.
Here is the form (bitmap deleted):
object ImageForm: TImageForm
Left = 309
Height = 350
Top = 135
Width = 420
AllowDropFiles = True
Caption = 'PicTracker'
ClientHeight = 350
ClientWidth = 420
Constraints.MinHeight = 200
Constraints.MinWidth = 150
KeyPreview = True
OnActivate = FormActivate
OnClose = FormClose
OnCreate = FormCreate
OnDeactivate = FormDeactivate
OnDestroy = FormDestroy
OnDropFiles = FormDropFiles
OnHide = FormHide
OnKeyDown = FormKeyDown
OnShow = FormShow
LCLVersion = '1.0.14.0'
Visible = True
object stbStatus: TStatusBar
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Side = asrBottom
Left = 0
Height = 15
Top = 335
Width = 408
Align = alNone
Anchors = [akLeft, akRight, akBottom]
Color = 15658734
Panels = <
item
Width = 60
end
item
Width = 60
end
item
Width = 60
end
item
Width = 50
end>
SimplePanel = False
end
object ToolBar1: TToolBar
AnchorSideRight.Side = asrBottom
Left = 0
Height = 28
Top = 0
Width = 420
Align = alNone
Anchors = [akTop, akLeft, akRight]
ButtonHeight = 24
ButtonWidth = 24
Caption = 'ToolBar1'
Color = 15592941
Images = ilToolBar
ParentColor = False
TabOrder = 0
object tbtnOpen: TToolButton
Left = 11
Hint = 'Open'
Top = 2
Caption = 'Open'
ImageIndex = 0
ParentShowHint = False
ShowHint = True
end
object tbtnPrevious: TToolButton
Left = 49
Hint = 'Previous'
Top = 2
Caption = 'Previous'
ImageIndex = 1
ParentShowHint = False
ShowHint = True
end
object tbtnNext: TToolButton
Left = 77
Hint = 'Next'
Top = 2
Caption = 'Next'
ImageIndex = 2
ParentShowHint = False
ShowHint = True
end
object tbtnSpace1: TToolButton
Left = 1
Top = 2
Width = 10
Caption = 'tbtnSpace1'
Style = tbsSeparator
end
object tbtnZoomIn: TToolButton
Left = 105
Hint = 'Zoom In'
Top = 2
Caption = 'Zoom In'
ImageIndex = 3
ParentShowHint = False
ShowHint = True
end
object tbtnZoomOut: TToolButton
Left = 133
Hint = 'Zoom Out'
Top = 2
Caption = 'Zoom Out'
ImageIndex = 4
ParentShowHint = False
ShowHint = True
end
object tbtnSpace2: TToolButton
Left = 39
Top = 2
Width = 10
Caption = 'tbtnSpace2'
Style = tbsSeparator
end
object tbtnDeleteFiles: TToolButton
Left = 265
Hint = 'Delete'
Top = 2
Caption = 'tbtnDeleteFiles'
ImageIndex = 8
ParentShowHint = False
ShowHint = True
end
object tbtnSpace3: TToolButton
Left = 255
Top = 2
Width = 10
Caption = 'tbtnSpace3'
Style = tbsSeparator
end
object tbtnRotateRight: TToolButton
Left = 227
Hint = 'Rotate Right'
Top = 2
Caption = 'tbtnRotateRight'
ImageIndex = 7
ParentShowHint = False
ShowCaption = False
ShowHint = True
end
object tbtnRotateLeft: TToolButton
Left = 199
Hint = 'Rotate Left'
Top = 2
Caption = 'tbtnRotateLeft'
ImageIndex = 6
ParentShowHint = False
ShowCaption = False
ShowHint = True
end
object ToolButton3: TToolButton
Left = 189
Top = 2
Width = 10
Caption = 'ToolButton3'
Style = tbsSeparator
end
object tbtnFullScreen: TToolButton
Left = 161
Hint = 'Full Screen'
Top = 2
Caption = 'tbtnFullScreen'
ImageIndex = 5
ParentShowHint = False
ShowCaption = False
ShowHint = True
end
end
object sbVertical: TScrollBar
AnchorSideTop.Control = ToolBar1
AnchorSideTop.Side = asrBottom
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = sbHorizontal
Left = 407
Height = 294
Top = 28
Width = 13
Anchors = [akTop, akRight, akBottom]
Kind = sbVertical
PageSize = 100
Position = 50
TabOrder = 2
end
object sbHorizontal: TScrollBar
AnchorSideRight.Control = sbVertical
AnchorSideBottom.Control = stbStatus
Left = 0
Height = 13
Top = 322
Width = 407
Anchors = [akLeft, akRight, akBottom]
PageSize = 100
TabOrder = 1
end
object Panel1: TPanel
AnchorSideLeft.Control = sbVertical
AnchorSideTop.Control = sbHorizontal
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = stbStatus
Left = 407
Height = 13
Top = 322
Width = 13
Anchors = [akTop, akLeft, akRight, akBottom]
Color = clBtnFace
ParentColor = False
TabOrder = 4
end
object pbx: TPaintBox
AnchorSideTop.Control = ToolBar1
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = sbVertical
AnchorSideBottom.Control = sbHorizontal
Left = 0
Height = 294
Top = 28
Width = 407
Anchors = [akTop, akLeft, akRight, akBottom]
OnDblClick = pbxDblClick
OnMouseDown = pbxMouseDown
OnMouseMove = pbxMouseMove
OnMouseUp = pbxMouseUp
end
object ilToolBar: TImageList
Height = 24
Width = 24
left = 208
top = 72
Bitmap = {
DELETED
}
end
object tmr: TTimer
Enabled = False
Interval = 100
OnTimer = tmrTimer
left = 48
top = 88
end
end
Cheers,
Frederick