Search results

  1. I

    Deleting records

    You are right..Thanks a lot
  2. I

    Deleting records

    My back end database is almost 490 mb. and was going slowly through network. After deleting almost a more than miliion of records the size didn't change at all. it still remain 490 mb..How is that possible. Any ideas? Thanks
  3. I

    help needed in opening MDB file

    I am sorry, could't attach.more than 2 mb..
  4. I

    help needed in opening MDB file

    Hello can anyone open this mdb file. it seemed corrupted but some info I need from it Thanks Sorry, couldn't attach file
  5. I

    Variable not defined

    Great Thanks to Sonic8...
  6. I

    Variable not defined

    Hello I am sending query to Excel and everything is ok if in References is Excel 15.0 Object Library. To avoid Excel version I made it late binding..and everything is ok until the code reach this line: .Range("A4:F4").Borders(xlEdgeTop).LineStyle = XlLineStyle.xlContinuous I got this message...
  7. I

    Soap web services

    I am trying to solve this: Dim xml As String Dim req As New XMLHTTP60 Dim resp As New DOMDocument60 xml = "<?xml version='1.0' encoding='UTF-8' ?>" & vbNewLine _ & "<root>" & vbNewLine _ & "<SecurityKey>633862AD-22B0-4813-93A0-...
  8. I

    using Function key

    Thanks a lot
  9. I

    using Function key

    FOR EXAMPLE F5 CALLS A Procedure that is printing a fiscal bill and then another procedure that saves records...
  10. I

    using Function key

    After using function key F5 or F10 in a certain field I want the cursor to stay in the field but the cursor is going to another field. Using a function key calls a procedure. Key preview is set to yes. Why my cursor is being moved?
  11. I

    MD5 hash generator

    Thank you Certified Grand Pa..Enjoy...
  12. I

    MD5 hash generator

    I will outside generate MD5 and then insert generated code into XML line
  13. I

    MD5 hash generator

    Thanks The_Doc-man Actually I need this: xml = "<?xml version='1.0' encoding='UTF-8' ?>" & vbNewLine _ & "<request>" & vbNewLine _ & "<public_key>" & broj & "</public_key>" & vbNewLine _ & "<auth_token>" & "MD5(username.pasword)" & "</auth_token>" & vbNewLine _ &...
  14. I

    MD5 hash generator

    Hi how to use MD5 Hash generator in VBA. I need it to get some info in XML format from a server. Thanks
  15. I

    Two POS thermal printers

    I have two POS thermal printers. How to choose one with VBA to send report. Only one of them is default printer. Thanks
  16. I

    Comma problem in SQL

    Great!!! Thank you pbaldy..it works without parentheses....
  17. I

    Comma problem in SQL

    HI How to solve this comma problem? DoCmd.RunSQL "INSERT INTO tblMAK_FAKTURI (NUMBER, DATE_DOK) SELECT ('" & mNUMBER & "'" & ", " & "'" & mDATE_DOK & "'" & ")" all values are strings I got this message Syntax error (comma) Thanks
  18. I

    MD5 encryption

    Thanks Gemma...I need to encrypt something like this "hopeforall.always@155" Can you be more specific how to do it
  19. I

    MD5 encryption

    Hi is it possible to md5 encript a string in vba. I am using Access 2016 if not, how to do it Thanks
  20. I

    Show pop up message every hour "Not registered..."

    Thanks a lot After a short thinking I found this solution..and it works perfectly Code Tags Added by UG Please use Code Tags when posting VBA Code Please feel free to Remove this Comment https://www.access-programmers.co.uk/forums/threads/please-use-code-tags-when-posting-vba-code.240420/...
Back
Top Bottom