Kevin Nowaczyk

Results 265 comments of Kevin Nowaczyk

Feel free to make changes the way you would if it were your project and submit a pull request. Then I could check out that branch and mess around with...

Yeah, I was hoping someone would like to stress test it. The oletools package is to my VbaProject-Compiler project what olefile is to MS-CFB. However, MS-CFB can both assemble and...

[My Linting project](https://github.com/Beakerboy/VBA-Linter) is able to identify incorrect line endings in files. With this tool on hand, what would you propose as the best strategy? I’m guessing you’ll say save...

> Will that be incorporated into your github action … ? Yes. The dev branch works, but is not release ready. The main-directory branch is where I’m currently doing my...

Should the database have creation functions which accept table schema as a parameter, or should the database execute a create statement?

Can you please supply a code snippet, what the resulting SQL is, and what you expected? Even better would be if you were able to provide a failing test case...

Rereading your comment, are you calling `addTable()` multiple times? You only need to do that once. I wonder if there is an issue if instead of using a join, a...

It looks like `addTable` cannot be successfully called multiple times. Also, `addJoin “” table, alias` does not work because it fails to add a comma between tables. I think I’ll...

#33 may be related to this, and it has been fixed. Please let me know how to reproduce this issue or if that fix resolved your issue.

What is the error that you are seeing? Does `#1/12/2022#` need to be quoted? ``` .AddWhere "tblDataRecords.RecordDate", str("#1/12/2022#") ``` When I run your first code snippet, I get: ``` SELECT...