Search results

  1. I

    after closing app file lock still reamins

    hi After closing app file lock is still remaining so I cannot ente in design mode. Also I cannot delete manually this file What can I do?
  2. I

    five caracter string

    maybe you gave me an idea..let say I make a string of letters and nubmer i.e ABCD..XYW123456789, how many letters are in english and 9 numbers..for example 23 letters and 9 number it is 32.. with for next loop running 5 times , using rnd() function and mid() function, I will take the letter...
  3. I

    five caracter string

    as I wrote mixed = capital letters and numbers from 1-9, excluding zero as number...letters and number can duplicate, no problem so random letters and random number = string of five caracters
  4. I

    five caracter string

    Hi how to generate five caracters string of capital letters and number from 1 - 9, for example QQR5T, GH67P...AND SO ON Thanks !
  5. I

    scanning barcode

    The problem with barcode scanner was that AUTOMATIC ENTER KEY SUFFIX was not fixed...I found the right code to scan and fixed it.. Thanks a lot for your effort to reply on my post..
  6. I

    scanning barcode

    Thanks a lot...it helps
  7. I

    scanning barcode

    Hi. When scanning barcode of a product, scanned barcode stays in a field and need to press Enter to read it...this happens in only one computer. In all others everything is ok...I assumed that the problem is in local comp but how to solve it... Any ideas
  8. I

    get token

    Well, thanks for your effort..but first things first...I am not able to get to the server, which means request.readystate = 4...after that I should receive response i.e JWT token and about long text I will think after...
  9. I

    get token

    good logic...don't misunderstand me please.. so..here is a bit of documentation that is in cURL language and says this: This is given to us as an example: curl --location --request POST 'http://api.fzo.org.mk/api/Auth/GetToken' \ --data-raw '<LogIn> <UserName>farmaceft@fzo.org.mk</UserName>...
  10. I

    get token

    I am afraid you will not understand it. it is in macedonian language. The endpoint is when I get the token i use it after as a bearer token to get some info about recipe and patients and issuing drug in a pharmacy..My app is in pharmacy and is about issuing drugs in a pharmacy... The UserName...
  11. I

    Inserting code of other languages in vba procedure

    i can give examples of other languages if it helps, like cURL, Java-Okhttp, Java-Unirest, JavaScrip Fetch, JavaScript Jquery, php, Python and so on Ok..now let's find a solution...http is correct, and Username and pass are corect so method is "POST" and user and pass are body...
  12. I

    Inserting code of other languages in vba procedure

    Please read my reply to UncleGizmo..Thanks
  13. I

    Inserting code of other languages in vba procedure

    I need to get a token using this location and Username and password curl --location --request POST 'http://api.fzo.org.mk/api/Auth/GetToken' \ --data-raw '<LogIn> <UserName>farmacevt@fzo.org.mk</UserName> <Password>P@ssw0rd</Password> </LogIn> ' I have tried a lot of combination like ie...
  14. I

    Inserting code of other languages in vba procedure

    Hi I have a question. can I insert code of other languages in VBA procedure? like this in HTTP: POST /api/Auth/GetToken HTTP/1.1 Host: api.fzo.org.mk Content-Length: 101 <LogIn> <UserName>farmacevt@fzo.org.mk</UserName> <Password>P@ssw0rd</Password> </LogIn> or like this in...
  15. I

    bearer token

    thanks a lot
  16. I

    get token

    Hi Can anyone help me getting token using this: curl --location --request POST 'http://api.fzo.org.mk/api/Auth/GetToken' \ --data-raw '<LogIn> <UserName>farmaceft@fzo.org.mk</UserName> <Password>P@ssw0rd</Password> </LogIn> I am using this code but no success Dim req As New XMLHTTP60...
  17. I

    bearer token

    I am retrieving a Json token with API method and then as a header I put it as a bearer token using POST to get some XML file for example... mToken= "ksgfkasgklgkglfpjgRPOAGIOopeijiofjagfm" req.Open "POST", "https://grmmapi.st/api/Prescription/AllPrescriptions?insuredPersonId=" &...
  18. I

    bearer token

    Hi How do I send a POST Request with Bearer Token Authorization Header? .
  19. I

    IF ChildNode EXIST?

    in the meantime i solved this with a little trick...since I store value od each childnodes("fund_code") in a variable and then in a table, after storing in a table I initialize variabile to null...so if there is no value of "fund_code" I did Resume Next and go on for next loop..That is
  20. I

    IF ChildNode EXIST?

    Maybe you need more than a cleared glasses...hm.. Maybe this can help you...this is just a line of a code that works perfectly...for example in an XML file with 5 nodes of "prescription" and 5 childnodes of "issued_drug" and 4 childnodes of "fund_code"...so ..one childnode "fund_code" is...
Back
Top Bottom