Autor Beitrag
Kaischi
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 20



BeitragVerfasst: Mi 25.09.02 15:24 
Hi leute!!!

sagt mal, wie sind die options für folgende such-procedure???

ausblenden Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
procedure TForm1.Button5Click(Sender: TObject);
begin
With Table1 Do
begin
   Table1.CachedUpdates := True;
   Table1.CachedUpdates := False;
Indexname := 'Modell (Typ)';
EditKey;
Fieldbyname('Modell (Typ)').ASString := Edit3.text;
Gotonearest;
if not Table1.GotoKey then
ShowMessage('Datensatz nicht gefunden');
   Table1.CachedUpdates := True;
   Table1.CachedUpdates := False;
end;
end;


Ich will erreichen, das ich in edit3 den text groß und klein schreiben kann!!!!!

Wie mach ich das????????

gruß kaischi

(25.09.02 16:20 Tino) Titel geändert
majolo
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Beiträge: 334

Ubuntu 8.04, WinXP Prof.
D1, D6Pers, D7 Prof., D8 Prof., D2005 Pers
BeitragVerfasst: Mi 25.09.02 16:50 
Hi,

ich nehme an du magst mit deinem Dialog nach einem Wort in einer Datenbank suchen und Groß-wie kleinschreibung soll möglich sein.
Versuchs mal damit:

ausblenden Quelltext
1:
Table1.Locate('Feldindemgesuchtwerdensoll', Edit3.Text ,[loCaseInsensitive, loPartialKey]);					


Bei mir hat das immer gefunzt.Das Wort muss nun nicht mal vollständig eingegeben werden.
Gruss
majolo
Kaischi Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 20



BeitragVerfasst: Mi 25.09.02 18:22 
ja schön und gut.
das es funktioniert ist mir bekannt.
kenne einige such-aren.
doch bei deinen wirft er falls in der Tabelle mehrere vorhanden sind nicht alle unter einander!!!!!!!
Was er bei meinem Beispiel allerdings macht!

Und bei meinem benötige ich andere Options als bei deinem!!! :cry:
Tino
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Veteran
Beiträge: 9839
Erhaltene Danke: 45

Windows 8.1
Delphi XE4
BeitragVerfasst: Mi 25.09.02 22:43 
Kaischi hat folgendes geschrieben:
Und bei meinem benötige ich andere Options als bei deinem!!! :cry:

ja schön und gut!
und welche Optionen benötigst Du noch?
Kaischi Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 20



BeitragVerfasst: Do 26.09.02 11:01 
genau das will ich ja von euch wissen. weil ich es nämlich nicht weiß! :cry: