Search results

  1. N

    Solved Urgently needed a third party QR code generator seller for MS Access Invoices

    I can buy it at $200.00 Simply contact me on the email indicated
  2. N

    Solved Urgently needed a third party QR code generator seller for MS Access Invoices

    Dear all, I need a VBA QR code generator from a third party seller urgently of high quality , can somebody point me to that person as soon as possible . For example in the database control called QR I'm storing the URL received from the Virtual server see below: QR (Text control) =...
  3. N

    Can Studio Management for MS SQL Work with MySQL

    Many thanks for the valuable information, actually it has turned out to be cpanel to do the job that we normally do in MS SQL Management Studio , we need to download Mysl connector ODBC depending to the window bit installed. Exporting is just the same like wo do it one by one using ODBC (1) We...
  4. N

    Can Studio Management for MS SQL Work with MySQL

    Sorry People, For the purpose of switching over from MS SQL Server which I'm used with to MYSQL which I have never used before I want to find out whether the SSMA studio can still be used to create tables, view and stored procedures for the cloud database under MYSQL. We have been doing this...
  5. N

    MS SQL Server cloud database Performance

    Many thanks Minty , I have now an idea
  6. N

    MS SQL Server cloud database Performance

    We are currently using WIFi all the machines are using one network or hooked to a router.
  7. N

    MS SQL Server cloud database Performance

    The performance of the cloud database is not impressive compared to local MS Access database evening after making sure that the following are done: (1) All calculation are done by the server itself (2) All combo boxes load empty until four matching characters are type in (3) All reports are...
  8. N

    Solved How reference an IP Address Control In MS Access

    Many thanks this is what I wanted
  9. N

    Solved How reference an IP Address Control In MS Access

    I want to reference an Ip Address from a text control in a form to VBA , currently I'm hard coding it like below: stUrl = "http://192.168.8.110:8080/xxxxxxxxxxxxxxxxxxxxxxxxxxxx"[CODE] Now instead where I'm putting "192.168.8.110" I want to use a control as reference ,example...
  10. N

    Solved Forwarding a port number such 8080 via in bound rules-MS Access FE

    Many thanks for the detailed answer sir. Regards
  11. N

    Solved Forwarding a port number such 8080 via in bound rules-MS Access FE

    Support three computers are using MS Access, now to communicate to the virtual server using the windows resources stored on the local server we need to forward the connection port such us 8080, via the windows firewall, correct? What if all three computers on the same network are using...
  12. N

    Solved How to increment a number with VBA

    Many thanks to all .
  13. N

    Solved How to increment a number with VBA

    Dear all I'm now screwed out here : I want to increment a number in format (1) 0000010 to 99 (2) 0000100 to 199 (5) 0000200 to 299 ETC I have tried to use the primary key but its considering the zeros Private Sub itemTyCd_AfterUpdate() Me.itemCd = Ctri("000000") & Me.ProductID End Sub
  14. N

    Solved How to format unbound MS Access to Receive a Pure String

    Thank you people all your answers are valuable no answer is wrong , it now turned out that I just needed to enter the value the way it is in unbound control and Json accepted it as a string
  15. N

    Solved How to format unbound MS Access to Receive a Pure String

    Do you mean you want to validate the data in an unbound control to ensure it's a string? If so, the Before Update event is the place to do that. Here is what I want to enter : CZ110062536406AETY
  16. N

    Solved How to format unbound MS Access to Receive a Pure String

    I think I neglected this one, how do we format unbound control in MS Access form to hold a pure string that can be referenced in VBA and recognized as a string?
  17. N

    QR Code In MS Access

    Hi I'm trying to implement a QR Code with VBA in Access sales invoice, this is done by reference a URL received through Json from the virtual server and then stored in my BE in the same line for the sales invoice and date such that if I pull the invoice, it will also show the URL received from...
  18. N

    Solved Saving one field from Json String received in MS Access

    Many thanks to you people for assistance all is fine now With Regards
  19. N

    Solved Saving one field from Json String received in MS Access

    Sorry people I thought this was going to be very easy, but I seem to run into trouble again, I do not seem to be able to grab the resultCd field from the received Json string could it be there is an error again in my code: Json string received {"resultCd":"000","resultMsg":"It is...
  20. N

    Solved MS Access Unbound Combo Box

    Ok thanks minty
Back
Top Bottom