how to make progress form.....

when we post the sales order a progress form is shown that reflects the postings to various tables… can anyone tell how to make that type of form

Check in Codeunit80 : Do a FIND on Window (Dialog Data Type) IF Invoice THEN BEGIN IF “Document Type” <> “Document Type”::“Credit Memo” THEN TESTFIELD(“Due Date”); Window.OPEN( ‘#1#################################\’ + ‘Posting lines #2######’ + ‘Posting sales and VAT #3######’ + ‘Posting to customers #4######’ + ‘Posting to bal. account #5######’) END ELSE Window.OPEN( ‘#1#################################\’ + ‘Posting lines #2######’); … … Window.UPDATE(1,STRSUBSTNO(’%1 %2’,“Document Type”,“No.”)); … … Window.UPDATE(1,STRSUBSTNO(’%1 %2 → Invoice %3’,“Document Type”,“No.”,SalesInvHeader.“No.”)); Window.UPDATE(1,STRSUBSTNO(’%1 %2 → Invoice %3’,“Document Type”,“No.”,SalesInvHeader.“No.”)); … … Window.UPDATE(2,LineCount); … … Window.UPDATE(4,1); … Window.CLOSE; ###### tarek_demiati@ureach.com

thanks for ur valuable reply…it has solver the problem regards anoop