Na początku w obu listach ustaw DragMode na dmAutomatic. Następnie ustaw dla nich wspólne procedury DragOver oraz DragDrop :
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 |
procedure TForm1.ListBox1DragDrop(Sender, Source: TObject; X, Y: Integer); begin If (Source is TListBox) then begin TListBox(Sender).Items.Add(TListBox(Source).Items.Strings[TListBox(Source).ItemIndex]); TListBox(Source).Items.Delete(TListBox(Source).ItemIndex); end; end; procedure TForm1.ListBox1DragOver(Sender, Source: TObject; X, Y: Integer; State: TDragState; var Accept: Boolean); begin Accept := True; end; |
Autor: Nakiel
Jeżeli chcesz się odwołać do np. wszystkich TEdit, użyj następującego kodu:
1 2 3 4 5 |
for i := 0 to Form1.ComponentCount - 1 do if (Form1.Components is TEdit) then (Form1.Components as TEdit).Text := '' ; |
ComponentCount przechowuje liczbę komponentów znajdujących się na formie. Components to tablica zawierająca kolejne komponenty. Sprawdzamy operatorem is, czy dany komponent jest klasy TEdit, a jeśli tak, to każemy, za pomocą operatora as, uznać go za TEdit. Dzięki temu mamy dostęp do metod i właściwości klasy TEdit.
Posłuż się następującym kodem:
1 2 3 4 5 6 7 8 9 10 11 |
var wers : integer; // wers to numer linii begin wers := 3; Memo1.SelStart := Memo1.Perform(EM_LINEINDEX, wers - 1, 0); Memo1.SetFocus; end; |
Autor: Nakiel
Użyj tego kodu :
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
TSample = class(TPersistent) private a: integer; public procedure Assign(source : TPersistent); override; end; var Form1: TForm1; implementation {$R *.dfm} function CopyObject(Src,Dest : TObject; Related : Boolean = FALSE) : Boolean; var Mem : Pointer; Size : Integer; begin if(NOT Assigned(Src)) OR (NOT Assigned(Dest)) then begin Result := FALSE; Exit; end; if(NOT Related)OR (Src.InheritsFrom(Dest.ClassType)) OR (Dest.InheritsFrom(Src.ClassType)) then begin if Src.InstanceSize < Dest.InstanceSize then Size := Src.InstanceSize else Size := Dest.InstanceSize; Dec(Size,4); { opuszczamy pierwsze 4 bajty tablicy } GetMem(Mem,Size); if Size < Dest.InstanceSize then System.FillChar(PByteArray(Dest)^[4],Size,0); System.Move(PByteArray(Src)^[4],PByteArray(Dest)^[4],Size); FreeMem(Mem); Result := TRUE; end else Result := FALSE; end; procedure TSample.Assign(source : TPersistent); begin if NOT CopyObject(Source,Self,TRUE) then inherited Assign(Source); end; procedure TForm1.Button1Click(Sender: TObject); var S1, S2 :TSample; begin S1 := TSample.Create; S1.a := 1; S2 := TSample.Create; S2.Assign(S1); S2.a := 10; caption := inttostr(S1.a); end; |
W OnKeyPress Edit wpisz:
1 |
if not (Key in ['0'..'9' , ',' , #8]) then Key := #0 ; |
Kod ten pozwala wprowadzać liczby całkowite oraz zmiennoprzecinkowe. #8 jest kodem Backspace – gdybyś usunął kod tego znaku, to niemożliwe było by kasowanie zawartości Edit.
Autor: Iskar
W sekcji private naszej formy, na której jest TListView umieszczamy dwie zmienne:
1 2 3 |
MovingIcon: Boolean; MovingP, StartP: TPoint; |
Następnie do zdarzeń OnMouseDown, OnMouseMove i OnMouseUp naszego ListView’a podpinamy kolejne procedury:
(w przykładzie główna forma nazywa się TfrmTest, a nasz ListView lvTest)
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 36 37 38 39 40 41 42 43 44 45 |
procedure TfrmTest.lvTestMouseDown(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer); begin if lvTest.ItemIndex <> -1 then begin MovingIcon := True; MovingP := Point(X, Y); StartP := lvTest.Items[lvTest.ItemIndex].Position; end; end; procedure TfrmTest.lvTestMouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer); begin if MovingIcon then with lvTest.Items[lvTest.ItemIndex] do SetPosition(Point(StartP.X + (X - MovingP.X), StartP.Y + (Y - MovingP.Y))); end; procedure TfrmTest.lvTestMouseUp(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer); begin MovingIcon := False end; |
W Inspektorze Obiektów dla komponentu TListView ustawiamy
1 |
ViewStyle na vsReport |
Deklarujemy dwie zmienne globalne
1 2 3 4 5 |
Var kierunekSortowania:integer=-1; kolumnaDoSortowania:integer=1; |
W zdarzeniach onColumnClick i OnCompare wprowadzamy poniższe linie kodu
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 36 37 38 39 40 41 42 43 |
procedure TForm1.ListView1ColumnClick(Sender: TObject; Column: TListColumn); begin KolumnaDoSortowania := Column.Index; (Sender as TCustomListView).AlphaSort; case kierunekSortowania of 1 :kierunekSortowania:=-1; -1:kierunekSortowania:=1; end; end; procedure TForm1.ListView1Compare(Sender: TObject; Item1, Item2: TListItem; Data: Integer; var Compare: Integer); var i :integer; begin if KolumnaDoSortowania = 0 then Compare := kierunekSortowania*CompareText(Item1.Caption,Item2.Caption) else begin i := KolumnaDoSortowania - 1; Compare := kierunekSortowania*CompareText(Item1.SubItems,Item2.SubItems); end; end; |
Po kliknięciu na tytule dowolnej kolumny sortujem całą zawartość raportu TListView A do Z a po ponownym kliknieciu w tą samą kolumnę zmienimy kierunek sortowania na przeciwny. Metoda działa dla każdej kolumny
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
procedure TForm1.FormCreate(Sender: TObject); const Names: array[0..5, 0..1] of string = ( ('Rubble', 'Barney'), ('Michael', 'Johnson'), ('Bunny', 'Bugs'), ('Silver', 'HiHo'), ('Simpson', 'Bart'), ('Squirrel', 'Rocky') ); var I: Integer; NewColumn: TListColumn; ListItem: TListItem; ListView: TListView; begin ListView := TListView.Create(Self); with ListView do begin Parent := Self; Align := alClient; ViewStyle := vsReport; NewColumn := Columns.Add; NewColumn.Caption := 'Last'; NewColumn := Columns.Add; NewColumn.Caption := 'First'; for I := Low(Names) to High(Names) do begin ListItem := Items.Add; ListItem.Caption := Names[I][0]; ListItem.SubItems.Add(Names[I][1]); end; end; end; |
Kod z helpa Delphi. Zmiana nazwy w ListItem.Caption := Names[I][0];
Autor: Toster
Należy dodać odpowiednią wartość w rejestrze.
Z menu Start wybierz Uruchom, wpisz regedit. W edytorze rejestru odszukaj klucz HKEY_CURRENT_USER/SOFTWARE/Borland/Delphi/7.0/Editor/Options. Z menu Edycja wybierz Nowy/Wartość ciągu. Nadaj nowej wartości nazwę NoCtrlAltKeys. Dwukrotnie kliknij na nowo dodaną wartość oraz wpisz w oknie cyfrę 1. Gotowe.
Możesz też ściągnąć ze strony Borlanda odpowiedni klucz rejestru:
http://www.borland.pl/download/pl_key.shtml
Wystarczy go uruchomić, a odpowiednia wartość zostanie dodana za nas do rejestru.
Autor: Iskar