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 Wanet Telecoms Ltd 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 DugyWugy

  1. DugyWugy

    Function Name Not Found

    Hi EasyIT, Sorry for all the confusion. I found the source of my problem. Rookie mistake (I had the module name and function name the same). I changed the function name and the macro executed properly. Sorry for wasting your time. Thanks again, Doug
  2. DugyWugy

    Function Name Not Found

    I haven't tried debugging the code because it runs fine if executed within the vba window on both machines. The issue is trying to run it from the macro. When I run the macro is says that it can't find the function on the client's machine; but, runs fine on mine (within the vba window and by...
  3. DugyWugy

    Function Name Not Found

    Here is the Function: '****************************** Public Function CheckForData() Dim OneCallData As Object Dim stDocName As String Dim Name As String stDocName = "Print_Locates" Set OneCallData = Application.CurrentDb.OpenRecordset("SELECT * FROM tblOneCall WHERE JobStatus = 'Incomplete'...
  4. DugyWugy

    Function Name Not Found

    Yes. Both of us are running Office 2003 with XP Professional (Service packs are all up-to-date on both). Thanks, Doug
  5. DugyWugy

    Function Name Not Found

    Hi EasyIT, The function is stored in a module. The VBA module is on the client's machine. Everything is within the same database (forms, modules, macros, queries). There is one table that is linked to another database. The strange thing is that it works on my machine and does not on the...
  6. DugyWugy

    Update Query on Second Record

    Thanks Eupher and IGPCS, Sorry I've been tardy in replying. I've been out of the office for a couple days. Here is a clip of my code: Private Sub cmdNext_Click() DoCmd.RunCommand acCmdSaveRecord Dim qryJobPckgUpdate As String Dim UpdateJobPckg As String UpdateJobPckg =...
  7. DugyWugy

    Function Name Not Found

    Hello List, I've done some searching and can't seem to find the solution to my problem. I have created a Public Function that will successfully execute in the VBA window. I created a macro and have the RunCode command calling my function. It runs perfectly on my machine. However, I...
  8. DugyWugy

    Update Query on Second Record

    Hello List, I think I've hit a wall. Here is the scenario: I have two tables (1 storing the main information and the second storing some of the values from the first (via an update query). I have a form that populates the first table, a button on that form that updates records in the second...
  9. DugyWugy

    Replace Part of Memo Text

    Hi rjoubert, Thanks for the tip! No, the Time To Call is actually part way through the memo. I've used your example and it's getting the results I want for the section I need to update. However, it deletes the rest of the data after the section we replace. Is there a way to avoid deleting...
  10. DugyWugy

    Replace Part of Memo Text

    Hello, I'm wondering if anyone has some insight to this issue: I would like to replace some characters in the text within a memo field. Here is an example of the data: Call Date: 08/01/2006 Call Recorded: 07:31:25 AM Contact Name: John Doe Time to Call: 07:00-08:00 I would like to replace...
  11. DugyWugy

    Extract Memo Data to Table

    Thanks CautionMP, This great - I'll start working on this right away. I'll also review the information from PHV regarding InStr, Mid, and Trim. I know this kind of functionality will be invaluable in the future. Regards, DugyWugy
  12. DugyWugy

    Extract Memo Data to Table

    Hello List, I have been looking at the threads for a couple days now - trying to piece together some code to perform the following task: I have a memo field that contains some semi-normalized data, I would like to query this field and extract the required data into separate fields. Example...
  13. DugyWugy

    Treeview Report/Form

    Hello List, I'm hoping you can help me with defining a 'tree' view of my data. I'd like the user to click on a plus (+) sign beside a record in a form or report and have other associated/related records from other queries/tables display. This way they can 'drill down' to view as much or...
  14. DugyWugy

    Hyperlink Property Problems

    Hello List, I have created a form with a button that opens the file menu. I select a file. The file path and name are then populated in a text box. This text box is bound to a hyperlink field in my table. The problem is: The local file names (hyperlinks) are populating as such...
  15. DugyWugy

    How do I populate a record with a file name ?

    Bill Thank-you for your help - this is working exactly the way I wanted. Thanks again, Doug

Part and Inventory Search

Back
Top