Click here to Skip to main content
15,887,214 members
Home / Discussions / C#
   

C#

 
AnswerRe: code for speech to text using csharp .net Pin
Richard MacCutchan24-Dec-12 23:02
mveRichard MacCutchan24-Dec-12 23:02 
AnswerRe: code for speech to text using csharp .net Pin
Thomas Daniels24-Dec-12 23:13
mentorThomas Daniels24-Dec-12 23:13 
QuestionHow to modify a line in the Word file using C# ? Pin
taibc24-Dec-12 20:04
taibc24-Dec-12 20:04 
AnswerRe: How to modify a line in the Word file using C# ? Pin
Richard MacCutchan24-Dec-12 23:04
mveRichard MacCutchan24-Dec-12 23:04 
GeneralRe: How to modify a line in the Word file using C# ? Pin
taibc25-Dec-12 16:40
taibc25-Dec-12 16:40 
GeneralRe: How to modify a line in the Word file using C# ? Pin
Richard MacCutchan25-Dec-12 21:06
mveRichard MacCutchan25-Dec-12 21:06 
GeneralRe: How to modify a line in the Word file using C# ? Pin
taibc25-Dec-12 22:46
taibc25-Dec-12 22:46 
QuestionProblem with textbox key down and autocomplete Pin
GrooverFromHolland24-Dec-12 10:34
GrooverFromHolland24-Dec-12 10:34 
Hi all,

I have a textbox with autocomplete set to suggest.
I want to execute my code in the Textbox_KeyDown event on the enter key,
but enter key is also invoked when I select an item from the text box autocomplete items.
That is not what I want.
I want the selected item in the textbox and then execute my code.


code:

C#
private void opdrverwTextbox_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.KeyData == (Keys.Enter) && !string.IsNullOrEmpty(opdrverwTextbox.Text))
            {
                //here is the problem. In debugging if  I select from dropdown
                // with mouse click:  e.KeyData = LButton | MButton | Back
                e.Handled = true;
                 a lot of other code........;
               
            }               
                opdrverwTextbox.Clear();
                opdrverwTextbox.Visible = false;
                opdrverwLabel.Visible = false;
                dataGridView_Update();
            }           
        }


I don't want to set autocomplete to suggest-append.
is there a workaround for this?

Merry Christmas,

Groover


b>
0200 A9 23
0202 8D 01 80
0205 00

AnswerRe: Problem with textbox key down and autocomplete Pin
GrooverFromHolland27-Dec-12 7:56
GrooverFromHolland27-Dec-12 7:56 
QuestionHow to reference .net DLL present in other folder Pin
KASR124-Dec-12 6:58
KASR124-Dec-12 6:58 
AnswerRe: How to reference .net DLL present in other folder Pin
jschell24-Dec-12 8:00
jschell24-Dec-12 8:00 
GeneralRe: How to reference .net DLL present in other folder Pin
KASR125-Dec-12 7:11
KASR125-Dec-12 7:11 
GeneralRe: How to reference .net DLL present in other folder Pin
jschell25-Dec-12 16:32
jschell25-Dec-12 16:32 
GeneralRe: How to reference .net DLL present in other folder Pin
KASR126-Dec-12 1:31
KASR126-Dec-12 1:31 
GeneralRe: How to reference .net DLL present in other folder Pin
jschell26-Dec-12 7:48
jschell26-Dec-12 7:48 
AnswerRe: How to reference .net DLL present in other folder Pin
Karthik. A25-Dec-12 5:51
Karthik. A25-Dec-12 5:51 
GeneralRe: How to reference .net DLL present in other folder Pin
KASR125-Dec-12 7:10
KASR125-Dec-12 7:10 
AnswerRe: How to reference .net DLL present in other folder Pin
Alan N26-Dec-12 5:12
Alan N26-Dec-12 5:12 
GeneralRe: How to reference .net DLL present in other folder Pin
KASR126-Dec-12 7:41
KASR126-Dec-12 7:41 
GeneralRe: How to reference .net DLL present in other folder Pin
Alan N26-Dec-12 7:48
Alan N26-Dec-12 7:48 
GeneralRe: How to reference .net DLL present in other folder Pin
KASR12-Jan-13 7:08
KASR12-Jan-13 7:08 
GeneralRe: How to reference .net DLL present in other folder Pin
Alan N2-Jan-13 8:51
Alan N2-Jan-13 8:51 
GeneralRe: How to reference .net DLL present in other folder Pin
KASR18-Jan-13 8:00
KASR18-Jan-13 8:00 
QuestionRe: How to reference .net DLL present in other folder Pin
PIEBALDconsult26-Dec-12 9:13
mvePIEBALDconsult26-Dec-12 9:13 
AnswerRe: How to reference .net DLL present in other folder Pin
KASR126-Dec-12 16:25
KASR126-Dec-12 16:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.