Click here to Skip to main content
15,904,935 members
Home / Discussions / C#
   

C#

 
GeneralRe: help with smart client application downloaded from Microsoft site.... Pin
JayveeJavier22-Jan-09 1:18
JayveeJavier22-Jan-09 1:18 
GeneralRe: help with smart client application downloaded from Microsoft site.... Pin
Pete O'Hanlon22-Jan-09 1:32
mvePete O'Hanlon22-Jan-09 1:32 
QuestionCreating WebService Procy C# Pin
Member 587250022-Jan-09 0:47
Member 587250022-Jan-09 0:47 
AnswerRe: Creating WebService Procy C# Pin
Ennis Ray Lynch, Jr.22-Jan-09 2:54
Ennis Ray Lynch, Jr.22-Jan-09 2:54 
QuestionHow to step over the next control with GetNextControl(....,true).focus when the next control is not enabled Pin
fracalifa21-Jan-09 23:58
fracalifa21-Jan-09 23:58 
AnswerRe: How to step over the next control with GetNextControl(....,true).focus when the next control is not enabled Pin
DaveyM6922-Jan-09 0:37
professionalDaveyM6922-Jan-09 0:37 
GeneralRe: How to step over the next control with GetNextControl(....,true).focus when the next control is not enabled Pin
fracalifa22-Jan-09 0:59
fracalifa22-Jan-09 0:59 
AnswerRe: How to step over the next control with GetNextControl(....,true).focus when the next control is not enabled Pin
#realJSOP22-Jan-09 0:38
professional#realJSOP22-Jan-09 0:38 
Well, you could do something like this:

Control ctrl = GetNextControl(...);
if (ctrl.Enabled)
{
    // ...do something...
    ctrl.Focus();
}


I haven't actually tried this, but some variation of it should work.


"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001


AnswerRe: How to step over the next control with GetNextControl(....,true).focus when the next control is not enabled Pin
Wendelius22-Jan-09 0:43
mentorWendelius22-Jan-09 0:43 
Questioninterface: how to indicate there needs to be a default constructor? Pin
devvvy21-Jan-09 23:13
devvvy21-Jan-09 23:13 
AnswerRe: interface: how to indicate there needs to be a default constructor? Pin
DaveyM6921-Jan-09 23:25
professionalDaveyM6921-Jan-09 23:25 
AnswerRe: interface: how to indicate there needs to be a default constructor? Pin
Pete O'Hanlon21-Jan-09 23:38
mvePete O'Hanlon21-Jan-09 23:38 
AnswerRe: interface: how to indicate there needs to be a default constructor? Pin
Ennis Ray Lynch, Jr.22-Jan-09 2:56
Ennis Ray Lynch, Jr.22-Jan-09 2:56 
QuestionSaving form or panel as an object Pin
Naveed72721-Jan-09 22:44
Naveed72721-Jan-09 22:44 
AnswerRe: Saving form or panel as an object Pin
musefan21-Jan-09 22:52
musefan21-Jan-09 22:52 
GeneralRe: Saving form or panel as an object Pin
Naveed72721-Jan-09 22:54
Naveed72721-Jan-09 22:54 
GeneralRe: Saving form or panel as an object Pin
Dave Kreskowiak22-Jan-09 2:06
mveDave Kreskowiak22-Jan-09 2:06 
AnswerRe: Saving form or panel as an object Pin
DaveyM6921-Jan-09 23:15
professionalDaveyM6921-Jan-09 23:15 
GeneralRe: Saving form or panel as an object Pin
Naveed72721-Jan-09 23:19
Naveed72721-Jan-09 23:19 
GeneralRe: Saving form or panel as an object Pin
Tom Deketelaere21-Jan-09 23:27
professionalTom Deketelaere21-Jan-09 23:27 
GeneralRe: Saving form or panel as an object Pin
Naveed72721-Jan-09 23:35
Naveed72721-Jan-09 23:35 
GeneralRe: Saving form or panel as an object Pin
Tom Deketelaere21-Jan-09 23:59
professionalTom Deketelaere21-Jan-09 23:59 
GeneralRe: Saving form or panel as an object Pin
DaveyM6921-Jan-09 23:48
professionalDaveyM6921-Jan-09 23:48 
GeneralRe: Saving form or panel as an object Pin
Naveed72722-Jan-09 0:13
Naveed72722-Jan-09 0:13 
GeneralRe: Saving form or panel as an object Pin
DaveyM6922-Jan-09 0:40
professionalDaveyM6922-Jan-09 0:40 

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.