Autor Beitrag
SSC streezer
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 110

WinXP, Vista Ultimate
C# (VS 05 n' 08), PHP
BeitragVerfasst: Do 11.09.08 15:40 
Hallo,

ich habe eine textbox in der ein paar zeilen eingelesen werden.
bei der selektion in einer listbox wird das ausgewählte feld dann oben in der textbox markiert.

mein problem ist es nun wenn die textbox mehrere 100 zeilen hat, und ich etwas auswähle in der listbox, springt die selektion nicht gleich auf die sicht vom gui. die selektion erfolgt zwar, aber man sieht sie nicht und muss mit der scrollbar suchen.

hier meine selection methode:

ausblenden C#-Quelltext
1:
2:
3:
4:
5:
6:
7:
object selected = list_false_IBANS.SelectedItem;
            if (selected != null)
            {
                string selected_item = list_false_IBANS.SelectedItem.ToString();
                txt_ibanlines.Select(txt_ibanlines.Text.IndexOf(selected_item), selected_item.Length);
                txt_ibanlines.Focus();
            }

_________________
>> Swiss Soldiers Clan << visit us
Kha
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Beiträge: 3803
Erhaltene Danke: 176

Arch Linux
Python, C, C++ (vim)
BeitragVerfasst: Do 11.09.08 15:44 
Versuch es einmal mit ScrollToCaret.

_________________
>λ=
SSC streezer Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 110

WinXP, Vista Ultimate
C# (VS 05 n' 08), PHP
BeitragVerfasst: Do 11.09.08 16:12 
dieses property oder methode finde ich nicht :s property oder methode?

_________________
>> Swiss Soldiers Clan << visit us
Kha
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Beiträge: 3803
Erhaltene Danke: 176

Arch Linux
Python, C, C++ (vim)
BeitragVerfasst: Do 11.09.08 22:10 
user profile iconSSC streezer hat folgendes geschrieben:
dieses property oder methode finde ich nicht :s
Dan öffne doch bitte mal deine Hilfe und gib das im Index ein - hab nun extra dreimal geschaut, ob ich mich nicht verschrieben habe :gruebel: .

_________________
>λ=
SSC streezer Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starontopic star
Beiträge: 110

WinXP, Vista Ultimate
C# (VS 05 n' 08), PHP
BeitragVerfasst: Fr 12.09.08 11:35 
ah hat doch geklappt - habs falsch angewandt xD

_________________
>> Swiss Soldiers Clan << visit us