Hi,

Excuse my ignorance about custom controls but as a label and a textbox are under

System.Windows.Forms how can i add the IMAGE property to a textbox please?

I tried.>>

Public Class custTextBox

Inherits System.Windows.Forms.TextBox

Private someImage As Image

Public Property immage() As Image

Get

Return someImage

End Get

Set(ByVal value As Image)

someImage = value

End Set

End Property

End Class

I know i am way off here as i've tried it.

Regards,

S_DS