sancarn / stdVBA

VBA Standard Library - A Collection of libraries to form a common standard layer for modern VBA applications.
MIT License
294 stars 58 forks source link

Missing variable declarations #95

Closed 6DiegoDiego9 closed 6 months ago

6DiegoDiego9 commented 6 months ago

I use to add "Option Explicit" to every module (module/cls/frm), and after I added it to stdHTTP I spotted this:

image

Not sure if you intended to: a) leave them empty, as it currently does (without Option Explicit) b) pass them as arguments c) add them into the "info" Type (info.User and info.Pass)

sancarn commented 6 months ago

For now I've set them to Empty - not sure they are required at all, but for now at least I've managed to use the class with them Empty anyway. It's possible that my intention was to allow them to be passed as arguments... not sure though.