VBA-Web
VBA-Web: Connect VBA, Excel, Access, and Office for Windows and Mac to web services and the web (by VBA-tools)
stdVBA
VBA Standard Library - A Collection of libraries to form a common standard layer for modern VBA applications. (by sancarn)
VBA-Web | stdVBA | |
---|---|---|
9 | 67 | |
2,010 | 294 | |
0.3% | - | |
0.0 | 8.4 | |
8 months ago | 24 days ago | |
Visual Basic | VBA | |
MIT License | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
VBA-Web
Posts with mentions or reviews of VBA-Web.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-06-14.
-
Collect data every hour from API databases
Power query may or may not be suitable depending on the way that the API needs to be queried. VBA could also work but doesn't have great libraries available for working with standard web content. You could look at 3rd party VBA library like https://github.com/VBA-tools/VBA-Web .
-
Working Code to Post a Tweet??? Tried Everything...
Have you looked at the example for Twitter in this VBA GitHub?
-
Salesforce - Link objects
No examples of connecting to SalesForce itself but many examples of how to use VBA-Web to ping REST APIs. I don't find VBA-Web too intuitive, but hope it helps anyhow :)
-
Download XLSX-File from SharePoint to Local folder?
If you find you need to work with the SharePoint API's like Microsoft Graph https://learn.microsoft.com/en-us/graph/overview then you will need to be able to make web requests and process the responses. The VBA ecosystem is not really designed to work with content on the internet. It can be done via e.g. WinHTTP https://learn.microsoft.com/en-us/windows/win32/winhttp/about-winhttp or VBA-Web https://github.com/VBA-tools/VBA-Web
-
IE automation with VBA
Interesting question, otherwise you'll have to re-code to e.g. https://github.com/VBA-tools/VBA-Web or https://www.guru99.com/excel-vba-selenium.html
-
VBA like a proper dev?
TimHall's VBA-Web
-
API call in VBA
https://github.com/VBA-tools/VBA-Web has quite some interesting code that helps to connect to APIs.
-
Looking for software that will read data from API response and insert the data into defined cells of an Excel template
There is a very excellent VBA library VBA-web that can be used to connect to HTTP APIs and collect the data from them.
-
Help connecting Binance and Excel. Need a way to auth with the API and Secret Key.
GitHub - VBA-tools/VBA-Web: VBA-Web: Connect VBA, Excel, Access, and Office for Windows and Mac to web services and the web
stdVBA
Posts with mentions or reviews of stdVBA.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-11-15.
-
Why do people still use VBA?
I do RPA from VBA personally using IAccessiblity. See stdAcc (https://github.com/sancarn/stdVBA/blob/master/src/stdAcc.cls) and an example (https://github.com/sancarn/stdVBA-examples/tree/main/Example...)
-
Writing a Compiler is Surprisingly Easy (part 1)
You could have just treated everything as variant correct? That's what we do here: https://github.com/sancarn/stdVBA/blob/master/src/stdLambda....
-
Is the era of the self-taught dev over?
The responses I got was a mix. Some businesses didn't take me seriously because the main language I used was VBA. Some businesses claimed I was too eager and I "didn't have a life". No one seemed to care about the achievements I had made in the languages, like building a DSL in VBA, or this electron app. I did eventually get a job in another engineering firm though, where I spend 90% of my time to this day programming.
-
Best Practice in Aggregating Data
Really depends what you actually want to do and how neat (or fast) you want your code to be too... I typically use stdEnumerator and stdLambda from stdVBA.
-
How long have you been using VBA? What do you use it for at your job? Or for personal reasons
Sometimes, though more of a library / tool developer here. See stdVBA or stdVBA-examples
-
Why does VBA give general statement for errors and not exact?
That said it is effort. After building stdLambda which brings lambda syntax to VBA, I can tell you that error handling in this class is still trash. It's just a lot of effort to write good error messages, and handle all errors correctly. Still definitely an item on the TODO list, but will it ever be a priority? idk
-
Bulk Structured Spreadsheet Extractor
Otherwise this library poses as an example of how to use stdVBA libraries. Libraries used in this project: stdEnumerator, stdArray, stdCallback, stdCOM, stdICallable, stdLambda, stdRegex.
-
A Fast and Simple Settings Management Module. Automatically sets everything up and works for PC or MAC
If you want a solution though see stdSettings. There are both system and user settings. Users are bound by their domain, so should work across organisations :)
-
[EXCEL] How do I get the accName of a control via AccessibleObjectFromWindow
Use stdVBA's stdAcc:
-
/r/VBA PSA: ChatGPT is incredibly good at writing basic VBA code if you give it clear instructions of what you want it to do and how
Explaining code in such a way that it codes the correct thing is pretty awful though... Let's try to do that for stdTimer.