Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. jusfocuz

    Randomizing images on a userform and stopping on click

    the array thing sounds great,how would such a loop look? how is "do until button pressed" translated into VBA code? what i want to do is have the user click on the scrolling pics, to choose the one he/she wants.
  2. jusfocuz

    Randomizing images on a userform and stopping on click

    I have this so far: Private Sub CommandButton1_Click() Image1.Picture = LoadPicture("C:\Documents and Settings\Owner\Desktop\pic1.bmp") Application.Wait Now() + TimeValue("00:00:01") Image1.Picture = LoadPicture("C:\Documents and Settings\Owner\Desktop\pic2.bmp") Application.Wait Now() +...
  3. jusfocuz

    Randomizing images on a userform and stopping on click

    but how would i have the pictures keep changing until the user clicks on it? any ideas?
  4. jusfocuz

    Randomizing images on a userform and stopping on click

    I have been trying to figure out how I could show images on a VBA userform, but have this image keep changing until the user clicks on it. the idea i have is to show different images of a die holding different numbers, and the user would click it to try and get a certain number. any ideas...
  5. jusfocuz

    VBA userform help, displaying pictures

    edit:: i forgot the end if
  6. jusfocuz

    VBA userform help, displaying pictures

    i want to use pics. but would that be a similar code. ex: Private Sub Command1_Click() if a = 1 then Image1.Picture = (and the destination of the file) else Image1.Picture = (a different destination of the other file) End Sub
  7. jusfocuz

    VBA userform help, displaying pictures

    Hi, I was wondering If anyone could help me with something I have been trying to figure out. Is there a way I could make a userform,insert two image boxes on it, and then somehow code it so that according to the users input, two different pictures would show. for example, if i ask the user for...
  8. jusfocuz

    VBA Userform help

    I am working with userforms and i was wondering if it was possible to click a button on a userform, and program that button to show another userform for a certain amount of time and then show a another userform. So, one button click --> show two different userforms one at a time for certain time...
  9. jusfocuz

    VBA Craps Game, Graphics Help

    hey everyone. I am new to the site and to VBA but not too new to the programming world. Ive been learning VBA for about a month now and Ive been able to catch on to it quickly. Now i am working on a project, a casino craps game. I finished the basic project [getting the random numbers for the...

Part and Inventory Search

Back
Top