invoke method of ui
        Posted  
        
            by Xaver
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Xaver
        
        
        
        Published on 2010-04-15T11:11:04Z
        Indexed on 
            2010/04/15
            11:13 UTC
        
        
        Read the original article
        Hit count: 300
        
visual-studio
if (b->InvokeRequired) {
    FuncDelegat^ as = gcnew FuncDelegat(funct1);
    b->Invoke(as,nullptr);
    return;
}
Why that code may not the call function funct1
© Stack Overflow or respective owner