Search results

  1. R

    Multiple Image Display

    similar to this
  2. R

    Multiple Image Display

    Have you ever used the app Adilko or a Kindle? How they have images of book covers in rows...
  3. R

    Multiple Image Display

    I want to display the images for all records. I want to make a shelf like display like you see in a video store
  4. R

    Multiple Image Display

    Pointing to the path works fine. But the path isn't stored in a field like normal. It is calculated with a vb code then pushed to the image control. The code is put in the form's on current event. So it displays the correct image when each record is selected as current. The problem with a...
  5. R

    Multiple Image Display

    I'm not understanding your point.
  6. R

    Multiple Image Display

    I already ran into the problems of storing images in the DB itself and have now turned to a folder storage and using the location address to display the images. I even incorporated a code that searches the address for me so I can move the db and images around if needed. I looked at the DBPix...
  7. R

    Multiple Image Display

    I want to make a form or report that acts similar to a "bookshelf" view showing around 4 or so images in each row. When an image is clicked on it takes you to that record. Any suggestions? I know a report can be used to make rows but how do I get the images to display? They are stored in a...
  8. R

    Forms with the same info

    Not all of it. Certain parts like the location and point of contact. The date worked and work performed changes. I set up a new table for the recurring info and used a combo box to fill in the needed fields. Working so far. Just have a few more tweaks to do
  9. R

    Forms with the same info

    I have a form tied to a table. Some fields on the table have the exact same info on them. This data is basically a description of the "Job Number". The Tech creates a new record each day he uses this "Job Number". I want to be able to just copy the recurring data if it already exists.
  10. R

    Date/Time Simplify

    It can't be this hard to make the date part of each field default to the date in the DateWorked field. That's all I'm trying to do... set it to default to that date instead of the default date of pre dinosaur...
  11. R

    Date/Time Simplify

    They usually just continue it on. Some guys work over night for weeks at a time. That would mean 2 sheet each day
  12. R

    Date/Time Simplify

    The way it's set up is an exact replica of a paper form that we already use. I made a split form to navigate between projects for the current week
  13. R

    Date/Time Simplify

    That's what I'm trying to figure out now. I have it working as long as all times are the same day. What I can't figure out is how to fix the next day issue
  14. R

    Date/Time Simplify

    I want it to be just a time field. The main thing holding me up is the occasion that times run into the next day. I'm testing out a method using an unbound text box and some vba code
  15. R

    Date/Time Simplify

    Majority of the time. There are days when they will run into you next day
  16. R

    Date/Time Simplify

    I found this thread but I could use some clarification. http://www.access-programmers.co.uk/forums/showthread.php?t=241139&highlight=date Would I use this code but swap it so that it reads the Date Worked field? "lost focus code of me.datefield = Date & " " & Left(me.text1,2) & ":" &Right(...
  17. R

    Date/Time Simplify

    I have that first form because of the way I filtered to the current week, It has a hidden date range and the timesheet form is filtered from that. Just click on the timesheet button and there you are... If you enter a date in the date worked field in the top right corner of the form, then I...
  18. R

    Date/Time Simplify

    See if this works. I had to delete the reports. Should't effect what I need help with any way.
  19. R

    Date/Time Simplify

    All the fields are simple Date/Time fields. I have them formated on the form to display only date or only time, but they all store both date and time information. All I need to do is set the date portion of the TimeIn text box to the date in the WorkDate field. If I need to change the format...
  20. R

    Date/Time Simplify

    I just want the time and date fields on my form for times in and out to default the date to whatever the date worked field is. This way I don't have to enter the date every time. For 1 person working I have to enter the date at least 5 times. It's possible to have to enter the date 21 times. I...
Back
Top Bottom