Click here to Skip to main content
15,881,757 members
Home / Discussions / Windows Forms
   

Windows Forms

 
GeneralRe: start win app in remote machine Pin
Dave Kreskowiak2-Sep-08 14:54
mveDave Kreskowiak2-Sep-08 14:54 
AnswerRe: start win app in remote machine Pin
mbams18-Aug-09 23:51
mbams18-Aug-09 23:51 
QuestionHow can i include animations in GUI Pin
AhsanShah2211-Sep-08 17:09
AhsanShah2211-Sep-08 17:09 
AnswerRe: How can i include animations in GUI Pin
curtisk2-Sep-08 3:58
curtisk2-Sep-08 3:58 
AnswerRe: How can i include animations in GUI Pin
Thomas Stockwell4-Sep-08 8:29
professionalThomas Stockwell4-Sep-08 8:29 
QuestionObfuscation - could you recommend something better than Dotfuscator Pin
..Hubert..1-Sep-08 3:06
..Hubert..1-Sep-08 3:06 
AnswerRe: Obfuscation - could you recommend something better than Dotfuscator Pin
Paul Conrad1-Sep-08 13:00
professionalPaul Conrad1-Sep-08 13:00 
QuestionFather class how to use the special sub-category type Pin
huangrongchuan31-Aug-08 21:52
huangrongchuan31-Aug-08 21:52 
Father class how to use the special sub-category type (such as the sub-class form TableAdapter of a table), the current idea is traversal all the things on the form(such as traversing all controls on the sub-form), if found what I need, I want to transform its type into I want. But now what trouble me is i could not get the type neither trying to change the object into the type I needed nor using reflection to get the type. Thanks a lot.
Code is as follows:
private void findcontrol(Control.ControlCollection controls)
{
    foreach (Control ctrl in controls)
    {
        if (ctrl.GetType().Name == "XXTableAdapter")
        {
            //How to use the ctrl as XXTableAdapter to do something 
            //just like this: TableAdapter.Update (customers DataTable); 
            //the kind of type(XXTableAdapter) just could be founded on sub-class
        }
        findcontrol(ctrl.Controls);
}
}

AnswerDon't Cross Post Pin
Paul Conrad1-Sep-08 12:58
professionalPaul Conrad1-Sep-08 12:58 
GeneralRe: Don't Cross Post Pin
huangrongchuan1-Sep-08 15:06
huangrongchuan1-Sep-08 15:06 
QuestionPrograms embedded in XP desktop Pin
Aptiva Dave30-Aug-08 19:00
Aptiva Dave30-Aug-08 19:00 
AnswerRe: Programs embedded in XP desktop Pin
Ashfield31-Aug-08 8:02
Ashfield31-Aug-08 8:02 
QuestionMaking .NET apps work on OS X Pin
Winkles29-Aug-08 20:13
Winkles29-Aug-08 20:13 
AnswerRe: Making .NET apps work on OS X Pin
Wendelius30-Aug-08 9:36
mentorWendelius30-Aug-08 9:36 
GeneralRe: Making .NET apps work on OS X Pin
Pete O'Hanlon30-Aug-08 10:07
mvePete O'Hanlon30-Aug-08 10:07 
GeneralRe: Making .NET apps work on OS X Pin
Wendelius30-Aug-08 10:12
mentorWendelius30-Aug-08 10:12 
GeneralRe: Making .NET apps work on OS X Pin
Daniel Grunwald30-Aug-08 10:33
Daniel Grunwald30-Aug-08 10:33 
GeneralRe: Making .NET apps work on OS X Pin
Wendelius31-Aug-08 1:42
mentorWendelius31-Aug-08 1:42 
GeneralRe: Making .NET apps work on OS X Pin
Winkles1-Sep-08 8:14
Winkles1-Sep-08 8:14 
GeneralRe: Making .NET apps work on OS X Pin
Wendelius2-Sep-08 7:15
mentorWendelius2-Sep-08 7:15 
GeneralRe: Making .NET apps work on OS X Pin
Pete O'Hanlon2-Sep-08 8:30
mvePete O'Hanlon2-Sep-08 8:30 
GeneralRe: Making .NET apps work on OS X Pin
Paul Conrad1-Sep-08 13:01
professionalPaul Conrad1-Sep-08 13:01 
GeneralRe: Making .NET apps work on OS X Pin
Wendelius2-Sep-08 7:11
mentorWendelius2-Sep-08 7:11 
QuestionMenu Strip is not working Pin
Mohammad Al Hoss28-Aug-08 23:14
Mohammad Al Hoss28-Aug-08 23:14 
QuestionTo Change the scroolbar color in a panel (windows forms, c#) Pin
AngelaM28-Aug-08 23:06
AngelaM28-Aug-08 23:06 

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.