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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ZeoGel

  1. ZeoGel

    Getting Run time error 3075

    Thank you both for the quick response. It work great with both codes. "BTW: I would change the name of Combo47 to make your application more self-documented." by dhookom I normally do change the names but i was in a bit of a newbie laps. hehe Thanks again both of you guys. Ron
  2. ZeoGel

    Getting Run time error 3075

    I am tring to update fields on a continoues form, on only certian records. Here is my code but i keep getting a "Syntax Error (Missing operator in query expression" Private Sub Combo47_AfterUpdate() Dim db As DAO.Database, sSQL As String Set db = CurrentDb() sSQL =...
  3. ZeoGel

    Input to Multipage form

    Hi I have an unbound field that once a variable is selected I want it to input it into a text box on a Multipage form. Currently I have the current code and it works only for the first set of records or the record that has focuse is there a way to set it on all the records that show on the...
  4. ZeoGel

    Emailing a Report with Criterias

    I have tried by inputing in the criteria section of the query itself, problem is it keeps asking for the criteria even when i specify it.
  5. ZeoGel

    Emailing a Report with Criterias

    I am having trouble getting a report to email that have criteras. I am trying the below code but keep getting an Object required error. Any suggest are welcome Private Sub Command9_Click() On Error GoTo Err_Command9_Click Dim stDocName As String Dim stLinkCriteria As String Dim...
  6. ZeoGel

    Multi Criteria to run Reports

    Sweet!!!!!! You Rock! Thank you for the help it has only been a week i have been trying to get this to work. Very Appreciative of your Assistance Ron.
  7. ZeoGel

    Multi Criteria to run Reports

    here is what i did stLinkCriteria = ("[Class]=" & Me![Class] & " AND [Manager]= " & Me![Manager])
  8. ZeoGel

    Multi Criteria to run Reports

    I have tried it and get the same error missing operator. But thanks for the suggestion.
  9. ZeoGel

    Multi Criteria to run Reports

    I am tring to create a report with multiple criterias from a form. I have tried this code but keep getting a " missing operator error" with can someone show me where iam going wrong? Private Sub Command7_Click() On Error GoTo Err_Command7_Click Dim stDocName As String Dim...
  10. ZeoGel

    Retrieving User Info in ASP and Displaying it.

    -DNG Oh I am sorry, Yes we have Active Directory and I would like to get it there. -Sheco I am tring not to have to people not double input that is why I want to get info from an Active Directory.
  11. ZeoGel

    Retrieving User Info in ASP and Displaying it.

    I am think of the first and Last name of the user who is access the ASP page. What i have is a Form on the page to be filled out. I would like to get their user info.
  12. ZeoGel

    Retrieving User Info in ASP and Displaying it.

    Hi I Like to have a field in my ASP page that would State the Name of the Current user. And a hidden field that would retrive their UserID & input it into a database when they submit a Form. Is there a way with either ASP or VB script to reteive this information? Thank's
  13. ZeoGel

    Reports with Graphs inserted

    Are you using your forms to input the criterias?
  14. ZeoGel

    Reports with Graphs inserted

    Lordshogun, Create your report the way you want. And connect the report to the query. Then in your query in the fields you want to have your criteria in type in Form!(Your form Name)! Field you want them to get the criteria from. In your report insert a graph and put it where you want it. Right...
  15. ZeoGel

    Reports with Graphs inserted

    Thank You all for the input. GingerR i am using the Form!FormName!txtSubmitDate for my report and it is working great. Thanks for all the help Crowley16 and GingerR

Part and Inventory Search

Back
Top