File: cusu.l

package info (click to toggle)
picolisp 3.1.0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,100 kB
  • sloc: ansic: 14,205; lisp: 795; makefile: 290; sh: 13
file content (35 lines) | stat: -rw-r--r-- 1,440 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# 05jan12abu
# (c) Software Lab. Alexander Burger

(must "Customer/Supplier" Customer)

(menu ,"Customer/Supplier"
   (idForm ,"Customer/Supplier" '(choCuSu) 'nr '+CuSu T '(may Delete)
      '((: nr) " -- " (: nm))
      (<hr>)
      (<tab>
         (,"Name"
            (<grid> 3
               ,"Number" NIL (gui '(+E/R +NumField) '(nr : home obj) 10)
               ,"Salutation" (choDlg 0 ,"Salutations" '(nm +Sal))
               (gui '(+E/R +Obj +TextField) '(sal : home obj) '(nm +Sal) 20)
               ,"Name" NIL (gui '(+E/R +Cue +TextField) '(nm : home obj) ,"Name" 40)
               ,"Name 2" NIL (gui '(+E/R +TextField) '(nm2 : home obj) 40) ) )
         (,"Address"
            (<grid> 2
               ,"Street" (gui '(+E/R +TextField) '(str : home obj) 40)
               NIL NIL
               ,"Zip" (gui '(+E/R +TextField) '(plz : home obj) 10)
               ,"City" (gui '(+E/R +TextField) '(ort : home obj) 40) ) )
         (,"Contact"
            (<grid> 2
               ,"Phone" (gui '(+E/R +TelField) '(tel : home obj) 40)
               ,"Fax" (gui '(+E/R +TelField) '(fax : home obj) 40)
               ,"Mobile" (gui '(+E/R +TelField) '(mob : home obj) 40)
               ,"EMail" (gui '(+E/R +MailField) '(em : home obj) 40) ) )
         ((pack (and (: obj txt) "@ ") ,"Memo")
            (gui '(+BlobField) '(txt : home obj) 60 8) ) )
      (<hr>)
      (<spread> NIL (editButton T)) ) )

# vi:et:ts=3:sw=3