Open & Show FRM files during runtime (not as MDI), and WebAPI requests
Hello! :duck:
Is it possible to have the user that uses my application, save then open a VB Form file? Or I guess for security, I will just make the saved/opened FRM file a different file extension but treat it like a .frm file.
Also, what kind of HTTP requests can I make in VB6, for example, can I do a PUT, or PATCH, or DELETE request?
I'd like to get help on how to do those things!
Thanks! :wave: :)
Re: Open & Show FRM files during runtime (not as MDI), and WebAPI requests
*.frm files are for the VB6 source code. What would your program do with them?
About the second point, making HTTP requests in VB6, there is no native method built in in VB6 for that. But you can use a WinHttpRequest object.
Examples.