Recent content by ffleitas

  1. F

    Periodic skipping of row

    Greetings, I have a form that asks the user a series of questions. It is Boolean so they click on either Yes or No and then the next question is generated. The questions are displayed in the order they are asked. The problem is as follows: 1 out of every 20 something or sometimes 50 the first...
  2. F

    The remote server machine does not exist or is unavailable, MS Word Mail Merge

    I am not sure if I am following you correctly? You mean like the example below? objWord.ActiveDocument.SaveAs FileName:=strSaveLocation & strSaveAsName Is there another way of saving a word document that is active?
  3. F

    The remote server machine does not exist or is unavailable, MS Word Mail Merge

    I placed objWord. in front of ActiveDocument.SaveAs FileName:=strSaveLocation & strSaveAsName and it still displays the error
  4. F

    The remote server machine does not exist or is unavailable, MS Word Mail Merge

    This is the command that gives the error. ActiveDocument.SaveAs FileName:=strSaveLocation & strSaveAsName Please tell me how to do a step through. Thank you.
  5. F

    The remote server machine does not exist or is unavailable, MS Word Mail Merge

    Hi darbid, Thank you for your response. I changed the code: objWord.Close wdDoNotSaveChanges to your suggestion of objWord.Close savechanges:=wdDoNotSaveChanges nonetheless, I receive the same error of 'The remote server machine does not exist or is unavailable' on the second execution of...
  6. F

    MS Word Mail Merge error "The remote server machine does not exist or is unavailable"

    Re: MS Word Mail Merge error "The remote server machine does not exist or is unavaila I have this in the code: strProtocol = Form_frm_Steps_1.PROTOCOL_DOC_NO strSaveAsName = strProtocol strSaveLocation = "C:\Program Files\iqoq\protocols\" I don't know if this is what you are asking for ?
  7. F

    MS Word Mail Merge error "The remote server machine does not exist or is unavailable"

    Re: MS Word Mail Merge error "The remote server machine does not exist or is unavaila Hi David, I had the .Quit right after the .Close before but it gave me an error about losing connection The line with the error is as follows: ActiveDocument.SaveAs FileName:=strSaveLocation & strSaveAsName...
  8. F

    Check Box help

    Hi Bob, can you help me with a MS Word mail merge problem I am having? Felix
  9. F

    Check Box help

    Thanks Bob, you are right. Sorry for the confusion empyrean.
  10. F

    Check Box help

    Replace me.checkbox.value = True Then for Form_NameOfForm.checkboxname.value = True Then for
  11. F

    Check Box help

    Try this in the after update event handler: If Name_Of_Control.Value = True Then command1 Else command2 End if I hope this helps you? Felix
  12. F

    MS Word Mail Merge error "The remote server machine does not exist or is unavailable"

    MS Word Mail Merge error "The remote server machine does not exist or is unavailable" Greetings, I have researched everywhere on the web and have not been able to figure out the problem with the code below. When I run this code below for the first time I don't receive any errors. Yet, when I...
  13. F

    The remote server machine does not exist or is unavailable, MS Word Mail Merge

    Buenos dias, I have researched everywhere on the web and have not been able to figure out the problem with the code below. When I run this code below for the first time I don't receive any errors. Yet, when I run it for a second time I receive the error message below: "The remote server...
  14. F

    Mail Merge MS Word error: The remote server machine does not exist or is unavailable

    Greetings, When I run this code below for the first time I don't receive any errors. Yet, when I run it for a second time I receive the error message below: "The remote server machine does not exist or is unavailable" If I exit MS Access and return to the same program it works well but again...
Back
Top Bottom