| |
|
|
H.Brill | Hello Frank, gives it a Possibility, single lines auszublenden ? ought to then vaguely so looks (attachment):
If mans too later so print could, wärs ideal. |
|
|
| Benutze XPROFAN X3 + FREEPROFAN Wir sind die XProfaner. Sie werden von uns assimiliert. Widerstand ist zwecklos! Wir werden alle ihre Funktionen und Algorithmen den unseren hinzufügen.
Was die Borg können, können wir schon lange. | 05/27/07 ▲ |
|
|
|
|
Frank Abbing | does me sorrow, Heinz,
these Possibility see I do not. |
|
|
| |
|
|
|
| Nuja! You could Uwes SortierkriteriumBeispielcode for Listviews using! not the same - but one effect the you entgegenkommen ought to! (not literally take *g*) |
|
|
| |
|
|
|
Frank Abbing | These items functions however first ex WindowsXP. i think, i'll such Neuerungen along into The List view.dll take in. |
|
|
| |
|
|
|
H.Brill | thanks for Answer. would be To beautiful been, particularly because of the Übersichtlichkeit the Datensätze. what me yet falls in : I could The customers into Treeview (.dll) settle and the dazugehörigen data (here 1 box, Limo, Price) into LV write, so How in Franks demonstration - Examples. but then Have I the Completed: the Print. |
|
|
| Benutze XPROFAN X3 + FREEPROFAN Wir sind die XProfaner. Sie werden von uns assimiliert. Widerstand ist zwecklos! Wir werden alle ihre Funktionen und Algorithmen den unseren hinzufügen.
Was die Borg können, können wir schon lange. | 05/27/07 ▲ |
|
|
|
|
ByteAttack | Well! there's there yet ne gefakte Possibility. If it clear is, the it only three Lines are, so schalte The Gitternetzlinien simply from, and füge a Hintergrundgrafik one. |
|
|
| |
|
|
|
Thomas Freier | an Übersichtlichkeit the Kundenwechsels is Yes quick through blockweisen Farbwechsel accessible, and the Druckroutine having with my example with request and pressure the MEMO-Field hardly More as 200 Lines. would today sure because of the Align little more go. |
|
|
| Gruß Thomas Windows XP SP2, XProfan X2 | 10/30/07 ▲ |
|
|
|
|
ByteAttack | OK! I have now time an example reingestellt with kompletten Sourcecode in the zipper. CompileMarkSeparation $P*
USERMESSAGES 16
Declare lvdll&,exit%,liste&,freelist&,text$,lvfont&,idx%,idx2%,Kalender&,HeuteWT$,DateTimePick#,WahlDatum$,IstDatum$,X&
Def GSC(1) !USER32,GetSysColor
Def GetWindowLong(2) !USER32,GetWindowLongA
Def SetWindowLong(3) !USER32,SetWindowLongA
Def SetWinPos(7) !USER32,SetWindowPos
DEF DTP_GETSYSTEMTIME(2) SendMessage(&(1),4097,0,&(2))
Dim DateTimePick#,20
lvdll&=usedll($ProgDir+Listview.dll)
$I ListView_Include.inc
Register(123456) Oder so ähnlich ;-)
lvfont&=Create(Font,Verdana,14,0,1,0,0)
$I date.inc
##### Ermittelt den Wochentag zum Datum #####
Proc Wochentag
Parameters datum$
Declare tag$,monat$,jahr$
tag$=substr$(datum$,1,.)
monat$=substr$(datum$,2,.)
jahr$=substr$(datum$,3,.)
Return fdate(%l,mktime(0,0,0,monat$,tag$,jahr$))
EndProc
##### ListView #####
Proc Liste
liste&=CreateListview(%hwnd,%hinstance,0,-1,-1,$400)
InsertColumn liste&,,52,0
InsertColumn liste&,HeuteWT$,200,0
freelist&=SetLineHeight(liste&,22)
DestroyImageList(freelist&)
text$=$ProgDir+lvback.gif
SetBackImage(liste&,addr(text$),1)
WhileLoop 48
SetItem liste&,,
EndWhile
SetFont liste&,lvfont&
ShowListview(liste&,10,10,273,623)
SelectLine(liste&,41,3) Scrollt runter bis 08:00 Uhr ganz oben ist.
SelectLine(liste&,16,3) Selektiert 08:00
InitMessages(%hwnd)
EndProc
##### Kalender #####
Proc Kal
Kalender&=Control(SysMonthCal32,,$54000004,290,10,180,620,%hwnd,2000,%hinstance)
SetWindowLong(Kalender&,-20,Or(GetWindowLong(Kalender&,-20),512))
SetWinPos(Kalender&,0,0,0,0,0,$023)
SetFont Kalender&,lvfont&
SendMessage(Kalender&,$100A,4,rgb(255,255,210))
SendMessage(Kalender&,$100A,5,rgb(125,125,125))
Endproc
##### Fügt ggf. eine Null vor dem Tag oder Monat #####
Proc NullZumDatum
Parameters Datum$
Declare Tag$,Monat$,Jahr$,NeuDatum$
Tag$=substr$(datum$,1,.)
Monat$=substr$(datum$,2,.)
Jahr$=substr$(datum$,3,.)
Case Len(Tag$)=1:Tag$=0+Tag$
Case Len(Monat$)=1:Monat$=0+Monat$
NeuDatum$=Tag$+.+Monat$+.+Jahr$
Return NeuDatum$
EndProc
##### Wählt das Datum, und setzt es als Spaltenüberschrift
Proc WahlDatum
Declare Datum#,Colum$
Wochentag IstDatum$
Colum$=$(0)+, +IstDatum$
Dim Datum#,256
String Datum#,0=Colum$
SetColumnName(liste&,Datum#,1)
Dispose Datum#
EndProc
##### Hauptfenster #####
Proc Hauptfenster
SetTrueColor 1
WindowStyle 26
WindowTitle ListView-Terminkalender
Window ((%maxX/2)-242),((%maxY/2)-335)-485,670
CLS GSC(15)
EndProc
##### Hauptprogramm #####
Hauptfenster
Wochentag Date$(0)
HeuteWT$=$(0)
Liste
Kal
##### Hauptprogrammschleife #####
DTP_GETSYSTEMTIME(Kalender&,DateTimePick#)
IstDatum$=Str$(word(DateTimePick#,6));.;Str$(word(DateTimePick#,2));.;Str$(word(DateTimePick#,0))
NullZumDatum IstDatum$
IstDatum$=$(0)
WhileNot exit%
GetMessage
Case %Umessage=16:exit%=1
DTP_GETSYSTEMTIME(Kalender&,DateTimePick#)
WahlDatum$=Str$(word(DateTimePick#,6));.;Str$(word(DateTimePick#,2));.;Str$(word(DateTimePick#,0))
NullZumDatum WahlDatum$
WahlDatum$=$(0)
ifnot WahlDatum$=IstDatum$
IstDatum$=WahlDatum$
WahlDatum
endif
Wend
CloseMessages(%hwnd)
8800"> $I ListView_Dispose.inc
Dispose DateTimePick#
|
|
|
| |
|
|
|
Frank Abbing | cool, known How... |
|
|
| |
|
|
|
Jac de Lad | Wow! |
|
|
| Profan² 2.6 bis XProfan 11.1+XPSE+XPIA+XPRR (und irgendwann XIDE) Core2Duo E8500/T2250, 8192/1024 MB, Radeon HD4850/Radeon XPress 1250, Vista64/XP | 10/30/07 ▲ |
|
|
|
|
ByteAttack | so now one Update. now have I the same game again made, with the Difference, the if the Fenstergröße changes, itself too The Spaltenbreit as well as The Hintergrundgrafik with changed. alas, what speech I there! simply Download and look... |
|
|
| |
|
|
|
Jörg Sellmeyer | is still over ands over again amazing, what with one little Hirnschmalz everything possible is. Very calm! |
|
|
| Windows XP SP2 XProfan X4... und hier mal was ganz anderes als Profan ... | 10/30/07 ▲ |
|
|
|