Beau Holland

Results 1 comments of Beau Holland

Finally figured it out. Default ForeColor is Alpha'd out, set to: Color.FromArgb(0, 0, 0, 0) which is transparent. Update the ForeColor to: `diffViewer1.ForeColor = Color.FromArgb(255, 0, 0, 0);` OR `(0,...