NumberKruncher
Hi,
The simplest way to achieve what you require is the following:
Create an 'image' control from the toolbox. The image control allows you to select a picture and then specify "Stretch" to true or false using the properties panel. Lets assume that the 'image' control were named Image1 (by default). It is important to note that the 'image' control is different from the 'picture' control.
Double-click your form and select the 'Resize' event and add the following code.
Private Sub Form_Resize()
Image1.Left = 0
Image1.Top = 0
Image1.Width = ScaleWidth
Image1.Height = ScaleHeight
End Sub
In Visual Basic, ScaleWidth and ScaleHeight represent the dimensions of inside the form itself (i.e. excluding the sizes of the blue caption bar and window frame. This should achieve your requirements.
Glad I could be of help!
Lea Hayes