Dear Ria, Here are the Predefined Screens, including the extra files i made. Please put the birthday files in the Birthday folder and the Christmas files in the Christmas folder. Put the blank files in the main folder. The things I modified are Predefined, Predefined2 and Module. Please remember to turn the Kodak Image Edit Tool on!!!! The file is at http://www.geocities.com/heero_9/wingartpredef.zip. And to Ria, since you're the one handling the code for opening card files, and since u might have edited some parts, here it what the code in the work area needs... Please put this code somewhere in the work area for the predefined to work. In the Form Load maybe? This is the code which loads a predefined card if user chose one. If bFromHere = True Then 'a value which determines if user loaded a predefined card, If iCLoadType = 1 Then 'bFromHere False if blank card, True if predefined If iFoldType = 1 Then 'Load file birthiface1.gcg ElseIf iFoldType = 2 Then 'Load file birthiface2.gcg ElseIf iFoldType = 3 Then 'Load file birthiface3.gcg ElseIf iFoldType = 4 Then 'Load file birthiface4.gcg ElseIf iFoldType = 5 Then 'Load file birthiface5.gcg ElseIf iFoldType = 6 Then 'Load file birthiface6.gcg End If ElseIf iCLoadType = 2 Then If iFoldType = 1 Then 'Load file christmiface1.gcg ElseIf iFoldType = 2 Then 'Load file christmiface2.gcg ElseIf iFoldType = 3 Then 'Load file christmiface3.gcg ElseIf iFoldType = 4 Then 'Load file christmiface4.gcg ElseIf iFoldType = 5 Then 'Load file christmiface5.gcg ElseIf iFoldType = 6 Then 'Load file christmiface6.gcg End If ElseIf iCLoadType = 0 Then 'Load blank End If End If