コード例 #1
0
 private void codeTextBox_HintClick(object sender, HintClickEventArgs e)
 {
     try
     {
         //get range where the error is
         Range range = (Range)e.Hint.Tag;
         //select the error
         compilerOutput.Selection = range;
         //make error visible
         compilerOutput.DoRangeVisible(range, true);
     }
     catch { }
 }
コード例 #2
0
 private void fctb_HintClick(object sender, HintClickEventArgs e)
 {
     MessageBox.Show("You click on the hint");
 }
コード例 #3
0
ファイル: Form1.cs プロジェクト: ezio3593/ASM8080_editor
 private void tb_HintClick(object sender, HintClickEventArgs e)
 {
     CurrentTB.Hints.Clear();
 }
コード例 #4
0
ファイル: HintSample.cs プロジェクト: tsovince/V_Library
 private void fctb_HintClick(object sender, HintClickEventArgs e)
 {
     MessageBox.Show("You click on the hint");
 }
コード例 #5
0
ファイル: CODES.cs プロジェクト: avijit1258/UVA-Arena
 private void codeTextBox_HintClick(object sender, HintClickEventArgs e)
 {
     try
     {
         //get range where the error is
         Range range = (Range)e.Hint.Tag;
         //select the error
         compilerOutput.Selection = range;
         //make error visible
         compilerOutput.DoRangeVisible(range, true);
     }
     catch { }
 }