Recent content by etk

  1. E

    Updating hyperlinks

    Eventually, the idea is to put this into a SharePoint List. I figured it might be easier to fix it on the database side first before making that transition. Looking for the most efficient solution to the problem. Right clicking and editing hundreds of hyperlinks is not an option.
  2. E

    Updating hyperlinks

    I would like to be able to update a hyperlink such that I can specify text to display and the address, but whenever I update it only changes the text to display. Basically I have a table that is just an ID nubmer (Doc_ID) and the hyperlink and I want to update the Hyperlink so that Text to...
  3. E

    runtime error 438 .saveas method

    Thanks Kyo. I was just going to ask if it was the workbooks property that I should be using.
  4. E

    runtime error 438 .saveas method

    That gives some food for thought. I had once written a VBA program that went like this: Dim outobj As Outlook.Application Dim outappt As Outlook.AppointmentItem Set outobj = CreateObject("outlook.application") Set outappt = outobj.CreateItem(olAppointmentItem) With outappt ' 'Enumerate...
  5. E

    runtime error 438 .saveas method

    sure, 438 is object does not support this method...which is true of excel application object...it does not support the .saveas method what I am asking is there an alternative for saving this? it seems I should declare a workbook and .saveas from that object, but I came away with similar...
  6. E

    runtime error 438 .saveas method

    Trying to create loop to save a bunch of workbooks. I keep getting runtime error 438 on the .saveas method. Any thoughts as to a resolution for this Option Compare Database Private Sub query_loop() Dim mydb As DAO.Database Dim rs As DAO.Recordset Dim i As Integer Set mydb = CurrentDb Set...
  7. E

    multiple joins not working

    :o typo in one ID that I used exclusively for the test... Public internet forums: anonymous embarassment since 1995!
  8. E

    multiple joins not working

    The same, both NHD_Name and NHD_Email return blank. The number of records is as expected, so the Where clause is opertating correctly.
  9. E

    multiple joins not working

    Thanks. I was getting 0 records previously. I ran the left join as you suggested on tbl_NHD and now I get the two records I expected, but the NHD fields are blank. I can assure you I have the IDs and records in the NHD table and the data types are the same (long integer on the NHD_SAP_ID in...
  10. E

    multiple joins not working

    I have a query which essentially joins names and email addresses out of several tables. The query joins correctly if you do not include the final join and I can't figure out why. SELECT tbl_Session.*, tbl_agent.Agent_Email, tbl_team_mgr.TM_Name, tbl_team_mgr.TM_Email, tbl_NHD.NHD_Name...
  11. E

    Update Access table from button & dropdown in Word

    Problem: I want a button in Word to update access table with a value set by a drop-down field in the same Word document. The drop down field is to set the Status_ID field in the Access table. It has an integer value (1-9) that corresponds to text drop-down selectons for things like 'cancelled'...
  12. E

    runtime error 3027 - read only access problems

    Great resource! thanks!
  13. E

    runtime error 3027 - read only access problems

    Thanks for the tip, but no, that did not solve the problem. I don't have forms that would lock the records (yet), nor were any of my tables open or being utilised in any other way during runtime. I wonder if the join in the recordset creates the lock? I am stumped.
  14. E

    runtime error 3027 - read only access problems

    I have this segment of code which creates an outlook appointment for a session. I implemented a 'Status_ID' field which I want to update in the recordset after sending the appointment. The Status_ID field indicates whether things like cancellations, reschedulings, but also whether or not the...
  15. E

    problems with loop

    my apologies, I made a typo, missed one character It works beautifully, many thanks!!
Top Bottom