012
19.11.2005, 14:33 Uhr
Uwe
C/C++ Master (Administrator)
|
Hallo, Also ich denke, dass Du mit TextLabel eine TextBox meinst(sonst vergiss das Bsp.).
C++: |
// .... using System.Collections; public partial class Form1 : Form { private ArrayList arrList = new ArrayList(); private string sComp=""; public Form1() { InitializeComponent(); arrList.Add("<html>"); arrList.Add(" </html>"); } private void txtInput_KeyUp(object sender, KeyEventArgs e) { if (txtInput.Text.Length >= 6) { sComp += txtInput.Text.Substring(txtInput.Text.Length - 6, 6); if (arrList[0].Equals(sComp)) { try{ txtInput.Text = txtInput.Text.Insert(txtInput.Text.Length, arrList[1].ToString()); txtInput.Select(txtInput.Text.Length - 8, 1); }catch (Exception ex){ MessageBox.Show(ex.Message); } } sComp = ""; } } }
|
Nicht vollkommen aber als Ansatz brauchbar. -- "Es ist schwierig, ein Programm wirklich idiotensicher zu machen, weil Idioten so genial sind."
Bis dann... Uwe |