示例#1
0
 private void lst_ValueOfField_MouseDoubleClick(object sender, MouseEventArgs e)
 {
     if (lst_ValueOfField.SelectedItem != null)
     {
         InsertCharacterAtCursorInTextBox i = new InsertCharacterAtCursorInTextBox(rtxtBx_SqlExpression);
         i.InsertCharacterAtCursor(ref m_SelectionTextIndex, lst_ValueOfField.SelectedItem.ToString());
     }
 }
示例#2
0
        private void SetBtnTextToSQLExpression(string str)
        {
            InsertCharacterAtCursorInTextBox i = new InsertCharacterAtCursorInTextBox(rtxtBx_SqlExpression);

            i.InsertCharacterAtCursor(ref m_SelectionTextIndex, str);
        }