Click here to Skip to main content
15,891,184 members
Home / Discussions / C#
   

C#

 
GeneralRe: Calling C/C++ function from C# Pin
E6AD13-Sep-05 1:07
E6AD13-Sep-05 1:07 
GeneralRe: Calling C/C++ function from C# Pin
Andrew Kirillov13-Sep-05 1:15
Andrew Kirillov13-Sep-05 1:15 
GeneralRe: Calling C/C++ function from C# Pin
E6AD13-Sep-05 1:35
E6AD13-Sep-05 1:35 
GeneralRe: Calling C/C++ function from C# Pin
Andrew Kirillov13-Sep-05 1:44
Andrew Kirillov13-Sep-05 1:44 
GeneralRe: Calling C/C++ function from C# Pin
E6AD13-Sep-05 1:54
E6AD13-Sep-05 1:54 
QuestionAccessing embedded text box scroll bars Pin
gemani13-Sep-05 0:30
gemani13-Sep-05 0:30 
AnswerRe: Accessing embedded text box scroll bars Pin
Mohamad Al Husseiny13-Sep-05 14:09
Mohamad Al Husseiny13-Sep-05 14:09 
GeneralRe: Accessing embedded text box scroll bars Pin
gemani13-Sep-05 22:15
gemani13-Sep-05 22:15 
Thanks for your reply - yes, that's what I wanted to do. I think I've found the solution (although you may know a better way), by overriding WndProc in the TextBox as demonstrated in Help:

protected override void WndProc(ref Message m)
{
base.WndProc(ref m); // Do first to fire the event after the text has scrolled
// Listen for operating system messages.
switch (m.Msg)
{
case WM_VSCROLL:
short shtNotif = (short)((int)m.WParam & 0xffff);
if (shtNotif == SB_THUMBPOSITION ||
shtNotif == SB_THUMBTRACK)
{
this.OnVScroll(new System.EventArgs());
}
break;
}
}

Ian.

GeneralRe: Accessing embedded text box scroll bars Pin
Mohamad Al Husseiny14-Sep-05 13:17
Mohamad Al Husseiny14-Sep-05 13:17 
QuestionMaking an enterprise app database independent... Pin
Salil Khedkar12-Sep-05 22:23
Salil Khedkar12-Sep-05 22:23 
AnswerRe: Making an enterprise app database independent... Pin
Mohamad Al Husseiny13-Sep-05 7:23
Mohamad Al Husseiny13-Sep-05 7:23 
Questionuse of system.threading.timer Pin
dhol12-Sep-05 21:32
dhol12-Sep-05 21:32 
Questiondatagrid firstvisiblerow Pin
xrado12-Sep-05 20:21
xrado12-Sep-05 20:21 
AnswerRe: datagrid firstvisiblerow Pin
xrado12-Sep-05 20:34
xrado12-Sep-05 20:34 
QuestionC# combo box Pin
cshaaaa12-Sep-05 19:49
cshaaaa12-Sep-05 19:49 
AnswerRe: C# combo box Pin
mav.northwind12-Sep-05 20:06
mav.northwind12-Sep-05 20:06 
AnswerRe: C# combo box Pin
Mohamad Al Husseiny13-Sep-05 6:52
Mohamad Al Husseiny13-Sep-05 6:52 
QuestionAuthenicating remote user using Tokens Pin
akshayswaroop12-Sep-05 18:58
akshayswaroop12-Sep-05 18:58 
AnswerRe: Authenicating remote user using Tokens Pin
Dave Kreskowiak13-Sep-05 4:39
mveDave Kreskowiak13-Sep-05 4:39 
GeneralRe: Authenicating remote user using Tokens Pin
Anonymous13-Sep-05 19:29
Anonymous13-Sep-05 19:29 
GeneralRe: Authenicating remote user using Tokens Pin
Dave Kreskowiak14-Sep-05 1:16
mveDave Kreskowiak14-Sep-05 1:16 
QuestionPreviewWord Pin
Anonymous12-Sep-05 18:40
Anonymous12-Sep-05 18:40 
QuestionHow can I start and close GPRS connect Pin
sp04.tw12-Sep-05 17:31
sp04.tw12-Sep-05 17:31 
QuestionHow to let user input the URL of the web service?? Pin
KT19823812-Sep-05 17:19
KT19823812-Sep-05 17:19 
AnswerRe: How to let user input the URL of the web service?? Pin
Andy Brummer12-Sep-05 17:49
sitebuilderAndy Brummer12-Sep-05 17:49 

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.