| 
 Fastbase Accounting System - Online Manual Sample GL Cash Receipt Form  | 
Document 103275/1 
Entered Mon, 26 May 2003 15:53 by Peter Campbell 
Updated Mon, 26 May 2003 15:54 
Previous
  | 
 
The following code can be copied and pasted into the Utilities - Stationery Layouts screen. 
 
set layout(gdi) 1 
set layout(font) {Arial 9} 
 
form 0,0 {} 
 
header { 
	gdi_rectangle 2 2 78 61 -width 2 -outline black 
 
	field login::company(NAME) 4,4 40 -size 15 
 
	field login::company(ADDRESS) 5,4 50,3 
	text "Telephone : $login::company(PHONE_NO)" 9,4 
	text "Fax : $login::company(FAX_NO)"  10,4 
 
	text "CASH RECEIPT" 4,75 -size 15 -bold 3 -anchor e 
 
	text "Reference :" 15,4 
	field header(REF) 15,12 20 -size 10 
 
	text "Date :" 17,4 
	field header(DATE) 17,12 D -size 10 
 
	text "Amount :" 19,4 
	field header(TOTAL) 19,12 10.2 -size 10 
 
	set header(words) [system::number_to_english $header(TOTAL)] 
	set header(words) [wrap $header(words) 50] 
	field header(words) 17,22 50,3 
 
	text "Narration: $header(NARRATION)" 22,4 -size 10 
 
	text "Printed : [date::display [date::today]] at [date::time]" 59.5,76 -size 8 -anchor e 
} 
 
body 30,4 78,55 {} 
footer {} 
  |