Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
VB help plz
well all the pics names are numbers so its easy to load them… cuz i just generate a random number, then load the picture and have the random number there the name goes and yea.. heres part of the code:
If radRnd.Value = True Then
rndElement = Int(Rnd * 29) + 1
picElement.Picture = LoadPicture(App.Path & "\images\" & rndElement & ".jpg")
'see if they want the elements in order
ElseIf radOrder.Value = True Then
If rndElement = 18 Then
rndElement = 0
End If
'load a picture
rndElement = rndElement + 1
picElement.Picture = LoadPicture(App.Path & "\images\" & rndElement & ".jpg")
End If```
BUTTTT....
thats not my problem.. lol its just that i dont want all the pictures in a folder cuz to run that program u need THAT folder with THOSE pics...
i want to like have all them in a single file that can just go with the program without have all of the like 100 pics...
hi, if you want the linker to add the images inside the exe, i think you can use the vb ressource editor for that purpose. been years since i used vb, but think the icon looks like a cyan colored cube or sumthin not sure. then you just add the pictures and they get an id you can use to refer to them.
if you dont find it try google 'vb resources'