Hi Aparna,
The form been displayed and refreshed in instantaneous speed that you don't get a chance to see it. You need to shift the sleep line bit further, after DISPLAY Statement. OPEN Statement opens an object in the memory.
MAIN
OPEN WINDOW New at 2,2 with 23 ROWS, 131 columns ATTRIBUTE (BOLD)
OPEN FORM f_cus_gtp FROM "fs_gtp"
DISPLAY FORM f_cus_gtp ATTRIBUTE(BOLD)
sleep 2
END MAIN
BTW, OPEN & DISPLAY can be combined in to a single statement as:
OPEN WINDOW new AT 2,2 WITH FORM "fs_gtp"
Regards,
Shriyan