From what I\'ve found in C#, the Control.Invoke method requires that you use a delegate with no input parameters. Is there any way around this? I would like to invoke a me
Here ya go using lambda expressions with the Invoke() extension + an input parameter.
Using: action(STARS db)
_ccb.GetImagerFRU_PartNbr().Invoke(new Action(dbase => _ccb.GetImagerFRU_PartNbr().Text = dbase.PartNumber(serial) ?? String.Empty), db);