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 Westi 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. RANGO03

    Print Report to PDF

    Here is what I have so far: <Begin of code> Private Sub cmdPrtOnePage() On Error GoTo Err_cmdPrtOnePage Dim stDocName As String Dim db As Database Dim rs As Recordset Dim i As Integer Set db = CurrentDb Set rs = db.OpenRecordset("Select Project from Project") rs.MoveLast rs.MoveFirst For...
  2. RANGO03

    Printing a report for each record in .pdf

    I need all the help I can get on this one. In Access 97 I have a report, OPW-All Projects that does fine if you want to print it as one .pdf file. What I would like to do is print a .pdf file for each record that shows up in the report. In other words, is there a way that I can use a field...
  3. RANGO03

    Text field dependant on what is select from a drop down menu

    Well I'm some what new to the ColdFusion world and not sure how to do that.
  4. RANGO03

    Text field dependant on what is select from a drop down menu

    Here is the deal. I have a drop down menu with about 50 projects numbers in it. I also have a project desc field. I want to have my users select a project number from the drop down menu and auto populate the projects desc field. How can I do this?
  5. RANGO03

    Text field dependant on what is select from a drop down menu

    Here is the deal. I have a drop down menu with about 50 projects numbers in it. I also have a project desc field. I want to have my users select a project number from the drop down menu and auto populate the projects desc field. How can I do this
  6. RANGO03

    CHANGING 2004323I400 TO 2004323D858

    I finally got it to work in Access. I guess I was typing something wrong the other day when I tried it, but it's working today. Thanks alot ALEKSJAY!!
  7. RANGO03

    CHANGING 2004323I400 TO 2004323D858

    Since I'm not having much luck on the sql and SQLTalk, can anyone help me with doign this in access?
  8. RANGO03

    CHANGING 2004323I400 TO 2004323D858

    Thanks but I've tried to do it in Access and didn't have any luck. That's why I'm trying in SQLTalk.
  9. RANGO03

    CHANGING 2004323I400 TO 2004323D858

    I'm currently working in SQLTALK trying to do a global change to the last 4 digits of my activity table. For example, I'm needing to change 2004323I400 to 2004323D858. update av_activity x set act = replace(act, '%I777', '%TEST') WHERE ACT LIKE '%I777' AND EXISTS (SELECT MP FROM...

Part and Inventory Search

Back
Top