I think I've got this one whipped as well.
Go into the code of the frmPopUpMessage form and find the Public Sub ResizeControls
Under that sub find:
VB Code:
With lblMessage
.Left = (shpBorder.Width - .Width) / 2 + shpBorder.Left
.Top = (shpBorder.Height - IIf(prgBar.Tag = True, prgBar.Height + (2 * ICON_GAP), 0) - .Height) / 2 + shpBorder.Top
End With
And change it to:
VB Code:
With lblMessage
.wordwrap = true
.Width = shpBorder.Width - 100
.Left = (shpBorder.Width - .Width) / 2 + shpBorder.Left
.Top = (shpBorder.Height - IIf(prgBar.Tag = True, prgBar.Height + (2 * ICON_GAP), 0) - .Height) / 2 + shpBorder.Top
End With