Insane Killa
Jan 11th, 2000, 04:58 AM
Ok the I have a form which gets hidden and then another form loads and is supposed to determe what it does due to the values on the last form from a combo box plus an option box or what ever there called I'll give an example of the simple code I am trying to use:
If Form3.Combo1.Text = "Ashenforest" + Form3.Option1.value = True Then
Image1.Picture = LoadPicture("Ashen1.bmp")
Image1.Height = Screen.Height
Image1.Width = Screen.Width
End If
If Form3.Combo1.Text = "Ashenforest" + Form3.Option2.value = True Then
Image1.Picture = LoadPicture("Ashen1w.bmp")
Image1.Height = Screen.Height
Image1.Width = Screen.Width
End If
If Form3.Combo1.Text = "Ashenforest" + Form3.Option3.value = True Then
Image1.Picture = LoadPicture("Ashen1w.bmp")
Image1.Height = Screen.Height
Image1.Width = Screen.Width
End If
now it won't load the picture for some reason, I know it something to do with the option part because when I took out the option part on one of them it worked fine... but I need it to determine which option has been picked.... anyone know what my problem is???
thanx
If Form3.Combo1.Text = "Ashenforest" + Form3.Option1.value = True Then
Image1.Picture = LoadPicture("Ashen1.bmp")
Image1.Height = Screen.Height
Image1.Width = Screen.Width
End If
If Form3.Combo1.Text = "Ashenforest" + Form3.Option2.value = True Then
Image1.Picture = LoadPicture("Ashen1w.bmp")
Image1.Height = Screen.Height
Image1.Width = Screen.Width
End If
If Form3.Combo1.Text = "Ashenforest" + Form3.Option3.value = True Then
Image1.Picture = LoadPicture("Ashen1w.bmp")
Image1.Height = Screen.Height
Image1.Width = Screen.Width
End If
now it won't load the picture for some reason, I know it something to do with the option part because when I took out the option part on one of them it worked fine... but I need it to determine which option has been picked.... anyone know what my problem is???
thanx