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. demills

    Newbie Question - input button using image instead of text

    Thanks Vacunita thats what I was looking for. I'll give it a try. The images are actually GIF's. I typed the wrong extension. Thanks again
  2. demills

    Newbie Question - input button using image instead of text

    The following code works fine and displays text "Layer Control" on a button. <input name="LayerControl" Type="Submit" Value="Layer Control" > How do you get an BMP image to display instead of the text? I tried setting the type to Image but it doesn't allow me to set a value. I need to...
  3. demills

    print existing PDF's in Access

    Thanks for your help Chance - Got it to work using last suggestion. Like you said a bit messy but it works. DoEvents Shell "C:\Program Files\Adobe\Reader 8.0\Reader\AcroRd32.exe /p /h """ & sfile & """"
  4. demills

    print existing PDF's in Access

    Thanks Chance - I gave it a try. I added a Reference to the Adobe browser and added your code. It doesn't give me any errors and executes each line, but it also doesn't seem to do anything. Here's my whole Subroutine. Sub PastDue Dim db As Database Dim rs As Recordset Dim sfile As String...
  5. demills

    print existing PDF's in Access

    Hi All - Am having a problem printing a large collection of existing PDF files in Access. Have used the folowing code in a loop feeding it filenames and things seem to work ok, except not all PDF files print. It tends to print a group of say 4 or 5 documents, skips some, prints some more...
  6. demills

    print existing PDF in Access

    Hi All - Am having a problem printing a large collection of existing PDF files in Access. Have used the folowing code in a loop feeding it filenames and things seem to work ok, except not all PDF files print. It tends to print a group of say 4 or 5 documents, skips some, prints some more...
  7. demills

    assigning a value to a date variable

    Excellent worked perfectly. I knew it was something simple. Thanks
  8. demills

    assigning a value to a date variable

    Hi All This is probably a simple question. I'm having a problem assigning a value to a date variable. What i'm looking for is something like this - Dim RptYear As Integer Dim RptDate As Date If month(Now()) < 6 Then RptYear = Year(Now()) - 2 Else RptYear = Year(Now()) - 1 End If...
  9. demills

    count number of true conditions for 5 fields in a table

    Thanks Jebry It worked perfectly and saved me hours of work.
  10. demills

    count number of true conditions for 5 fields in a table

    Hi All - I have a table with 5 true/false fields. I need to calculate totals for each possible combination of true/false for each of these fields. According to my calculations that'd be 128 different queries. tffff ftfff fftff ffftf fffft ttfff etc. Does anyone have some code that would...

Part and Inventory Search

Back
Top