Click here to Skip to main content
15,897,704 members
Home / Discussions / C#
   

C#

 
GeneralRe: RichTextBox question! Pin
QzRz27-Mar-05 23:56
QzRz27-Mar-05 23:56 
GeneralRTF QUESTION! Pin
_Comet_Keeper_25-Mar-05 22:01
_Comet_Keeper_25-Mar-05 22:01 
GeneralRe: RTF QUESTION! Pin
Robert Rohde25-Mar-05 23:10
Robert Rohde25-Mar-05 23:10 
QuestionHow to display results of a console app in a textbox of another app form? Pin
oohungoo25-Mar-05 21:51
oohungoo25-Mar-05 21:51 
AnswerRe: How to display results of a console app in a textbox of another app form? Pin
JockerSoft28-Mar-05 2:21
JockerSoft28-Mar-05 2:21 
GeneralRe: How to display results of a console app in a textbox of another app form? Pin
oohungoo30-Mar-05 22:44
oohungoo30-Mar-05 22:44 
GeneralInvoking a control's inner event. Pin
rakat3325-Mar-05 21:34
rakat3325-Mar-05 21:34 
GeneralRe: Invoking a control's inner event. Pin
Mathew Hall25-Mar-05 22:45
Mathew Hall25-Mar-05 22:45 
You'll need to use PInvoke and use SendMessage[^] to send the TextBox a WM_CHAR[^] message


[DllImport("User32.dll")]<br />
public static extern IntPtr SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);<br />
<br />
public void SendTextBoxKeyPress()<br />
{<br />
// pretend the enter key was pressed in the textbox<br />
SendMessage(textbox.Handle, 0x0102 /*WM_CHAR*/, (int) Keys.Enter, 0);<br />
}


"I think I speak on behalf of everyone here when I say huh?" - Buffy
Generalget X , Y coordinate of notifyIcon using win32 calls Pin
ThomasMiller25-Mar-05 21:14
ThomasMiller25-Mar-05 21:14 
GeneralRe: get X , Y coordinate of notifyIcon using win32 calls Pin
Heath Stewart26-Mar-05 13:22
protectorHeath Stewart26-Mar-05 13:22 
GeneralRe: get X , Y coordinate of notifyIcon using win32 calls Pin
ThomasMiller26-Mar-05 13:42
ThomasMiller26-Mar-05 13:42 
GeneralRe: get X , Y coordinate of notifyIcon using win32 calls Pin
Heath Stewart26-Mar-05 20:30
protectorHeath Stewart26-Mar-05 20:30 
GeneralRe: get X , Y coordinate of notifyIcon using win32 calls Pin
ThomasMiller27-Mar-05 5:01
ThomasMiller27-Mar-05 5:01 
GeneralRe: get X , Y coordinate of notifyIcon using win32 calls Pin
Heath Stewart27-Mar-05 5:23
protectorHeath Stewart27-Mar-05 5:23 
GeneralHi,I ask three question,it's about abnormity form,highlight keywords and linenumber. Pin
thewoodman25-Mar-05 17:53
thewoodman25-Mar-05 17:53 
GeneralRe: Hi,I ask three question,it's about abnormity form,highlight keywords and linenumber. Pin
Dave Kreskowiak26-Mar-05 15:40
mveDave Kreskowiak26-Mar-05 15:40 
GeneralOR operator in Regular Expression Pin
Azel Low25-Mar-05 17:39
Azel Low25-Mar-05 17:39 
GeneralRe: OR operator in Regular Expression Pin
leppie25-Mar-05 23:04
leppie25-Mar-05 23:04 
GeneralRe: OR operator in Regular Expression Pin
Heath Stewart26-Mar-05 13:28
protectorHeath Stewart26-Mar-05 13:28 
GeneralA little push with Web Services. Pin
Anonymous25-Mar-05 15:40
Anonymous25-Mar-05 15:40 
GeneralRe: A little push with Web Services. Pin
turbochimp25-Mar-05 17:07
turbochimp25-Mar-05 17:07 
GeneralRe: A little push with Web Services. Pin
Anonymous26-Mar-05 0:51
Anonymous26-Mar-05 0:51 
GeneralRe: A little push with Web Services. Pin
wakkerjack31-Mar-05 1:41
wakkerjack31-Mar-05 1:41 
Generalopen window Pin
ABBASI_RA25-Mar-05 14:25
ABBASI_RA25-Mar-05 14:25 
GeneralRe: open window Pin
dabuskol25-Mar-05 19:37
dabuskol25-Mar-05 19:37 

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.