home *** CD-ROM | disk | FTP | other *** search
- '---------------------------------------------------------------------------------
- ' pcutool.int - Interfacedatei mit Hilfsfunktionen
- '
- ' DruckNT Version 2.0
- ' Lexware urlaubskartei - Version 2.10
- '
- ' Bemerkungen:
- ' erstellt am : 01.02.99
- ' zuletzt bearbeitet am : 03.02.99
- '
- ' Hilfsfunktionen, die Datei ist selbst nicht lauffΣhig und wird in andere
- ' Formulare eingebunden
- '
- ' ⌐ Lexware GmbH & Co. KG 1999
- '---------------------------------------------------------------------------------
- Include "pcuvar.int"
-
- function DrawField(width as Numeric, s as String)
- dim c_text as CellType
-
- c_text = CreateCell(width, 0, CELL_TYPE_DYNVERT)
- SetCellBorder(c_text, CELL_BORDER_ALL, 0, PEN_NULL, COLOR_TRANSPARENT)
- SetCellTextBorder(c_text, 10, 0, 10, 0)
- SetCellText(c_text, s)
-
- dim y as Numeric
- dim x as Numeric
- GetPos(x, y)
- DrawCell(c_text, TRUE)
- SetPos(x + width, y)
- end function
-
- ' -----------------------------------------------------------------------------
- ' Die Funktion liefert die Wochentage, an denen der Mitarbeiter arbeitet als Text zurⁿck
- ' -----------------------------------------------------------------------------
- function GetTage() as String
- dim s as String
- if Is( VAR_P_ARBEITET_MONTAG ) then
- s = "Mo "
- end if
-
- if Is( VAR_P_ARBEITET_DIENSTAG ) then
- s = s + "Di "
- end if
-
- if Is( VAR_P_ARBEITET_MITTWOCH ) then
- s = s + "Mi "
- end if
-
- if Is( VAR_P_ARBEITET_DONNERSTAG ) then
- s = s + "Do "
- end if
-
- if Is( VAR_P_ARBEITET_FREITAG ) then
- s = s + "Fr "
- end if
-
- if Is( VAR_P_ARBEITET_SAMSTAG ) then
- s = s + "Sa "
- end if
-
- if Is( VAR_P_ARBEITET_SONNTAG ) then
- s = s + "So"
- end if
-
- GetTage = s
- end function
-
- function GetAdress() as String
- dim strasse as String
- dim plz as String
- dim ort as String
- dim r as String
-
- str = Get("P", 4)
- plz = Get("P", 5)
- ort = Get("P", 6)
-
- r = str
-
- if plz <> "" then
- if r <> "" then
- r = r + ", "
- end if
-
- r = r + plz
- end if
-
- if ort <> "" then
- if r <> "" then
- r = r + " "
- end if
-
- r = r + " " + ort
- end if
-
- GetAdress = r
- end function
-