Kevin Nowaczyk

Results 265 comments of Kevin Nowaczyk

@sancarn Could you open up the “issues” section on that project? I’d love to test things out and be able to offer feedback.

Does that mean the last piece of the process is combining the compressed project files (*.cls, *.bas) into one file (vbaProject.bin)?

The library does not support cashaddr formatted addresses. I've used submtd/cashaddr-converter together with bitcoin-php/bitcoin-ecdsa like this: ````php use BitcoinPHP\BitcoinECDSA\BitcoinECDSA; use Submtd\CashaddrConverter\CashaddrConverter; $converter = new CashaddrConverter(); $legacy_address = $converter->convertFromCashaddr($address); $bitcoinECDSA =...

I noticed you have a solution file in this patch. The code repository does not have any solution files. Maybe that’s what’s stopping the patch from being accepted. If I...

I've re-rolled this patch to my latest develop branch (https://github.com/Beakerboy/NaturalDocs/tree/develop). I've included both italics and code to the the unit tests. This increases the overall code coverage slightly :-). If...

Over a year old and no feed back from the developers?

I've forked the code and added CI support. I've integrated your code and italics pull request to my fork. Feel free to submit more code to my fork. I'll work...

Here’s the full header of an exported class module: ````vba VERSION 1.0 CLASS BEGIN MultiUse = -1 'True END Attribute VB_Name = "SQLSelect" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable =...

If you have two interfaces, called `iFoo` and `iQix` that defined a function called `Bar(sBaz as String)`, the child Class will define the function as `iFoo_Bar(sBaz as String)`. The function...

Oh, I see...I don't know if the `Implements` statements have to be all together. I've never had to Implement multiple interfaces. The functions can be coded in any order.