| |
|
|
Wilfried Friebe | CompileMarkSeparationAnfang Programm
Declare i%, länge%, Browse$
Assign #1, ADRESS.STR
Rewrite #1
Print #1, NAME; C; 30; 0
Print #1, VORNAME; C; 30; 0
Print #1, STRASSE; C; 30; 0
Print #1, PLZ_ORT; C; 40; 0
Print #1, TELEFON; C; 20; 0
Print #1, GEBURT; C; 20; 0
Print #1, GEHALT; N; 10; 2
Print #1, NOTIZ; C; 10; 0
Close #1
db(Create, ADRESS.STR, ADRESS.DBF)
Declare Anzahl%
Anzahl% = @db(Open, #1, ADRESS.DBF)
@db(Use, #1)
@db(AppendBlank)
@db(Put, NAME, Mustermann)
@db(Put, VORNAME, Max)
@db(Put, STRASSE, Sackgasse 13)
@db(Put, PLZ_ORT, 98765 Nirgendwo)
@db(Put, TELEFON, 09876/54321)
@db(Put, GEBURT, @CToD$(23.09.1955))
@db(Put, GEHALT, 4500.50)
@db(PutRec, 0)
Anzahl% = %dbFCount
i% = 1
WhileNot i% > Anzahl%
@db(GetField, i%)
länge%=%dbFLen
länge%= länge%*6.2
@set(Decimals,0)
Browse$=Browse$+$dbFName+;+$dbFName+;+str$(länge%)+;
Inc i%
EndWhile
@db(Browse, 1,1,ADRESS-TABELLE,20, Browse$ ,3)
end
Ende Program
time one question Can The Font (font) db @(Browse) or in @db(edit) change? larger small or a others font ? or is the everything set ?
I needed eigendlich a smaller ones Font |
|
|
| Board MSI B450M BAZOOKA CPU AMD Ryzen 7 2700x 8 Core 3,7-4,2 GH 32 Gb Ram NVIDIA GeForce GTX 3060 12 GB Ram Window 11 Prof 64 Bit
Sun-Guru-Barebone CPU I7-9750H 16 GB Ram NVIDIA GeForce GTX1660TI 6 GB Ram Window 11 Hom 64 Bit
Profan 4.5 bis Xprofan 14 Ein frisch geschriebenes Programm hat meistens einen großen Fehler.Sollte man versuchen diesen großen Fehler zu beseitigen, hat man viele kleine Fehler "Grins" | 06/26/07 ▲ |
|
|
|
|
Thomas Freier | |
|
| Gruß Thomas Windows XP SP2, XProfan X2 | 06/26/07 ▲ |
|
|
|
|
Wilfried Friebe | thanks you for this hint USEFONT knew I but the eigentliche commands was SETDIALOGFONT 1
well Yes sometime I will it too once more learn.
|
|
|
| Board MSI B450M BAZOOKA CPU AMD Ryzen 7 2700x 8 Core 3,7-4,2 GH 32 Gb Ram NVIDIA GeForce GTX 3060 12 GB Ram Window 11 Prof 64 Bit
Sun-Guru-Barebone CPU I7-9750H 16 GB Ram NVIDIA GeForce GTX1660TI 6 GB Ram Window 11 Hom 64 Bit
Profan 4.5 bis Xprofan 14 Ein frisch geschriebenes Programm hat meistens einen großen Fehler.Sollte man versuchen diesen großen Fehler zu beseitigen, hat man viele kleine Fehler "Grins" | 06/26/07 ▲ |
|
|
|