I do issue the read event and show commands. Here is the rest of the code. It works fine as long as I let the main vfp window popup as soon as I create a config.fpw with screen=off in it my form does not display. Thanks again for the help!
oPB = CreateObject("Form"

oPB.ALWAYSONTOP = .F.
oPB.AutoCenter=.T.
oPB.WindowType = 1
oPB.Height = 180
oPB.Width = 300
oPB.ADDOBJECT("Text1","Text1"

oPB.ADDOBJECT("Text2","Text2"

oPB.ADDOBJECT("Period","period"

oPB.ADDOBJECT("Year","Year"

oPB.ADDOBJECT("Completed","Completed"

oPB.ADDOBJECT("Progress1","Progress1"

oPB.ADDOBJECT("oCmd1","oCmd1"

oPB.ADDOBJECT("oCmd2","oCmd2"

oPB.ADDOBJECT("oCmd3","oCmd3"
oPB.ocmd1.Visible = .T.
oPB.ocmd2.Visible = .T.
oPB.ocmd3.Visible = .T.
oPB.Text1.Visible = .T.
oPB.Text2.Visible = .T.
oPB.Period.Visible = .T.
oPB.Year.Visible = .T.
oPB.ocmd3.Visible = .T.
oPB.SHOW()
Read Events
Define Class Text1 AS TextBox
HEIGHT = 24
LEFT =100
WIDTH = 100
ALIGNMENT = 0
InputMask = "XX"
TOP = 25
BACKCOLOR = RGB(255,255,255)
ControlSource = 'cPeriod'
DISABLEDBACKCOLOR = RGB(255,255,255)
DISABLEDFORECOLOR = RGB(0,0,0)
ENABLED = .T.
FONTBOLD = .F.
DateFormat = 1
enddefine
Define Class Text2 as textbox
HEIGHT = 24
LEFT =100
WIDTH = 100
ALIGNMENT = 0
InputMask = "XXXX"
TOP = 50
BACKCOLOR = RGB(255,255,255)
ControlSource = 'cYear'
DISABLEDBACKCOLOR = RGB(255,255,255)
DISABLEDFORECOLOR = RGB(0,0,0)
ENABLED = .T.
FONTBOLD = .F.
DateFormat = 1
enddefine
Define Class Period AS Label
HEIGHT = 17
LEFT =60
WIDTH = 35
ALIGNMENT = 0
TOP = 32
DISABLEDBACKCOLOR = RGB(192,192,192)
DISABLEDFORECOLOR = RGB(0,0,0)
ENABLED = .F.
FONTBOLD = .T.
enddefine
Define Class Year AS Label
HEIGHT = 17
LEFT =73
WIDTH = 28
ALIGNMENT = 0
TOP = 58
DISABLEDBACKCOLOR = RGB(192,192,192)
DISABLEDFORECOLOR = RGB(0,0,0)
ENABLED = .F.
FONTBOLD = .T.
enddefine
Define Class Completed AS Label
HEIGHT = 17
LEFT =115
WIDTH = 100
ALIGNMENT = 0
TOP = 83
DISABLEDBACKCOLOR = RGB(192,192,192)
DISABLEDFORECOLOR = RGB(0,0,0)
ENABLED = .F.
FONTBOLD = .T.
enddefine
Define Class Progress1 AS progreso
HEIGHT = 24
LEFT =50
WIDTH = 197
TOP=100
enddefine
Define Class oCmd1 AS COMMANDBUTTON
CAPTION = "\<Process"
HEIGHT = 25
LEFT = 3
WIDTH = 97
TOP = 150
PROCEDURE CLICK
Do CustLink
Do Arlink
ENDPROC
enddefine
Define Class oCmd2 AS COMMANDBUTTON
CAPTION = "\<Quit"
HEIGHT = 25
LEFT = 102
WIDTH = 97
TOP = 150
PROCEDURE CLICK
Clear Events
ENDPROC
enddefine
Define Class oCmd3 AS COMMANDBUTTON
CAPTION = "\<Print"
HEIGHT = 25
LEFT = 201
WIDTH = 97
TOP = 150
PROCEDURE CLICK
DO ReportWindow
ENDPROC
ENDDEFINE