Recent content by pike

  1. P

    What's your best/worst joke?

    Copper Wire Network After having dug to a depth of 10 feet last year, British scientists found traces of copper wire dating back 200 years and came to the conclusion that their ancestors already had a telephone network more than 150 years ago. Not to be outdone by the British , in the weeks...
  2. P

    php and accdb extension

    thats what I do
  3. P

    Loop record attached document names

    solved it with Function AttachedLetters(strWordDocument As String) As Boolean Dim attItem If Me.Attachments.AttachmentCount > 0 Then For attItem = 0 To Me.Attachments.AttachmentCount - 1 If Me.Attachments.FileName(attItem) Like strWordDocument Then...
  4. P

    Loop record attached document names

    Hello, currently using the function below to attach a word document to a record. If a document already exist with same name it triggers the error number 3820 Public Sub loadAttachFromFile(strPath As String, rsAll As DAO.Recordset, attachmentFieldName As String) Dim rsAtt As DAO.Recordset...
  5. P

    php and accdb extension

    thanks peeps, all good now
  6. P

    php and accdb extension

    Hello, It was for any download in any thread. I'll try the "Compatibility View settings" Thanks PS The search tool didn't find any similar threads to with the terms "php accdb extension" in the thread titles but I found this one trolling the forum...
  7. P

    php and accdb extension

    [Solved] php and accdb extension Hi When I down load an example file in theads they have a accdb extension in the forum but php in the saved folder. I have to change the extension to accdb to open the file. what is happening?
  8. P

    combo not allowing to copy value

    Solved the problem by adding a dummy set of values to the array changed the column count to two and bound column one Sub fillwordform() Dim appword As Word.Application Dim Doc As Word.Document Dim Path As String On Error Resume Next Error.Clear Path =...
  9. P

    combo not allowing to copy value

    [Solved] combo not allowing to copy value Hi, I am using the following code to generate a word document from a userform combo and textbox values and word Formfields Set Doc = appword.Documents.Open(Path, , True) With Doc .FormFields("txtstudent").Result = Me.Assigned_To.Column(1)...
Back
Top Bottom