Search results

  1. nhorton79

    Google Maps API Autocomplete

    Would need to know. Is it happening on that particular line or just within that function? What are you running his on? Windows? Mac?
  2. nhorton79

    Google Maps API Autocomplete

    Link to my code under Sample Databases: Google Maps API Autocomplete | Access World Forums (access-programmers.co.uk) As I have had plenty of assistance from everyone here over the years. I thought I had better post this for everyone to share. I've been playing around with including an...
  3. nhorton79

    Google Maps API Autocomplete

    As I have had plenty of assistance from everyone here over the years. I thought I had better post this for everyone to share. I've been playing around with including an autocomplete address form, like you see here: Place Autocomplete Address Form | Maps JavaScript API | Google for Developers I...
  4. nhorton79

    BCrypt

    Don't know whether this is of any interest for everyone in the forums, however, I have found this for hashing and verifying password hashes created using BCrypt. https://github.com/as08/ClassicASP.Bcrypt I was able to register the DLL to a TLB by navigating to...
  5. nhorton79

    Calculator within textbox

    Sorry if my question was a little vague. Just reread it again. Users usually just use calculator in windows to get the figure to enter but want to find a way for them to just input directly into the field. So trusting their input anyway. I can get it to work by msgbox or printing to immediate...
  6. nhorton79

    Calculator within textbox

    Hi All, Wanting to have a textbox be able to perform calculations prior to saving. We are often working with square meterage of products in our quantity textbox (txtQty). So would like for users to be able to enter a calculation and have this evaluate prior to updating. e.g. typing in 10*4/10...
  7. nhorton79

    Filter continuous subform on tabcontrol

    Okay. I see what you did there. The tabcontrol doesn't hold the subform, the subform just sits on top and appears to be within the tabcontrol. Genius! And now I also see how to filte rmultiple Master/Child fields too. Now I just need to work on ensuring that the order comboboxes based on the...
  8. nhorton79

    Filter continuous subform on tabcontrol

    Hi DBguy, this is exactly what I was trying to achieve. I've quickly added your population of the txtItemTypeID to the load event of the from which ensure that on first load it shows the correct items. However, I am still trying to determine what else you have done. Is that single line ...
  9. nhorton79

    Filter continuous subform on tabcontrol

    Hi All, I want to be able to have a list of items display on multiple tabs on a form, but each list of items to be filtered to the type of tab. I have created a test form with a tabcontrol on it and managed to get the tab names (captions) defined from the records in a table. I want them...
  10. nhorton79

    Supabase - Looks Interesting!

    Found this thread when searching how to connect access to Supabase earlier tonight. Created an account with Supabase earlier today, as in the process of developing a web app and wanted to ensure Supabase would work with Access (which is our current in-house offering). Took me about half an...
  11. nhorton79

    Class object within Dictionary member variable of Class

    Thanks MajP! I had been thinking to use the internal methods with the dictionary, but better as your method shows to create my own methods to add, remove etc. I’ve got it working now. I could post final code but took directly from MajP’s examples and just changed a few names for dictionary...
  12. nhorton79

    Class object within Dictionary member variable of Class

    Seems fine working as an Integer...(?)
  13. nhorton79

    Class object within Dictionary member variable of Class

    I’m wanting to use this in a POST request to an API using VBA-Web and VBA-Json. I need to have multiple LineItems to post to XeroAPI. I’d tried using a UDT for the LineItems but vba didn’t like these in the class.
  14. nhorton79

    Class object within Dictionary member variable of Class

    Hi All, I have a class 'LineItem': Option Explicit ' Member variables Private m_LineItemID As String Private m_Description As String Private m_Quantity As Double Private m_UnitAmount As Double Private m_AccountCode As String Private m_TaxType As String ' Properties Property Get...
  15. nhorton79

    JWT JSON Web Token

    Here’s the link to the JWT code I found on Github Ssteiger/_Net20/vbJWT/JWT.vb It is in V and here’s the link to VBA-Web VBA-Web Hopefully this helps someone in the future.
  16. nhorton79

    JWT JSON Web Token

    I managed to sort this. It is an adaption of something I found on Github and converted to VBA. There was a LOT more code including Verify functions, but I kept just the code necessary to do the job (there is a little extra here that I didn't need but which may help someone else to handle JWT)...
  17. nhorton79

    JWT JSON Web Token

    Hey cheekybuddha, I'm wanting to decode a JWT to get the payload in VBA. I suppose I’ll need to decrypt using HMAC SHA256 or RSA. I was wondering whether anyone had done anything like this in VBA before.
  18. nhorton79

    JWT JSON Web Token

    Has anyone had any experience with JWTs. I’m currently working on an OAuth2 authenticator for Xero and they’ve decided to suddenly start returning the access tokens in a JWT.😞 Would appreciate any help or a good point in the right direction.
  19. nhorton79

    locked ldb file

    I’ve had this happen to me before where the ldb file wouldn’t delete. All I’ve ever had to do was reopen the database and then close again. Sent from my iPhone using Tapatalk
  20. nhorton79

    Mobile Calls via VOIP

    Any joy with these pekajo? Sent from my iPhone using Tapatalk
Top Bottom