I have a splash form with a photo in a picturebox. I want to draw text on this photo. I have tried using a label with the backcolor set to transparent but it still shows a background colour??
So I have tried this, but the text does not appear?
any ideas?
So I have tried this, but the text does not appear?
Code:
Private Sub frmSplash_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim gfxSreen As Graphics = Graphics.FromHwnd(Me.PictureBox1.Handle)
gfxSreen.DrawString("AnyText", New Font("Comic Sans MS", 20), New SolidBrush(Color.Black), 5, 5)
End Sub
any ideas?