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

C#

 
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 
AnswerRe: Problem with textbox key down and autocomplete Pin
GrooverFromHolland27-Dec-12 7:56
GrooverFromHolland27-Dec-12 7:56 
Hi all,
Found a solution myself after long google search.

It works but can someone explain how?
here is my new code:

C#
[System.Runtime.InteropServices.DllImport("user32.dll")]
private static extern short GetKeyState(Keys key);

private void opdrverwTextbox_KeyDown(object sender, KeyEventArgs e)
{

if (e.KeyData == (Keys.Enter) && !string.IsNullOrEmpty(opdrverwTextbox.Text)&&
   GetKeyState(Keys.Enter) < 0)
    {
        e.Handled = true;
        a lot of other code........;
    }
        opdrverwTextbox.Clear();
        opdrverwTextbox.Visible = false;
        opdrverwLabel.Visible = false;
        dataGridView_Update();
 }


Groover,
0200 A9 23
0202 8D 01 80
0205 00

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 
QuestionUsage of Google API in windows application Pin
ukraju24-Dec-12 1:05
ukraju24-Dec-12 1:05 

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.