This is a sample of my code,
it is working good but my problem is i want the picture itself to be contained by the exe

because this code will only show the pictures if the pictures are on the same folder

Is it possible that the pictures are inside the exe?
hope you understand my point

Private Sub Form_Load()
Combo1.AddItem "Me"
Combo1.AddItem "Uncle"
Combo1.AddItem "Aunti"
Combo1.AddItem "etc"
End Sub
Private Sub XPButton1_Click()

Picture1.Picture = LoadPicture(Combo1.Text & ".jpg")

End Sub