I\'m currently creating a silent print module. The current control I\'m using is, it\'s making sure that the control handle is already created (IsHandleCreated)
IsHandleCreated
I had the same problem with some other controls and used the Control.CreateControl() method:
private void CheckForExistingHandle(Control control) { if (!control.IsHandleCreated) control.CreateControl(); }
But i don't know how it works with a print module.