-
@uezo and others, I'm a newbie to GitHub collaboration. I have been adding proposed code and object model ideas to the TinySeleniumVBA Issue bin, but I am wondering if there isn't a better way to do that, as many of the contributions there are not really issues but functionality suggestions. I apologize for helping to create what looks like a mess! Again, I am learning. Is there a preferred way/place to contribute code suggestions and enhancements that really aren't "issues"? Thanks, GCUser99 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@GCuser99 Thank you for asking me this very important issue. And, I apologize for late response and updating the codes. Generally, the flow is like below:
1-4 by contributor and just 5 by repository owner. These flow works well for the general program languages like Python, C#, Java and so on because the source codes are the text files. However source code of VBA is included in the Excel file that can't be compared directly like text files. So you have to export or copy & paste the modified program every time you want to compare. This is a productivity issue I think. If you can, give me pull request just adding comment to a module / class as training. |
Beta Was this translation helpful? Give feedback.
@GCuser99 Thank you for asking me this very important issue. And, I apologize for late response and updating the codes.
Generally, the flow is like below:
1-4 by contributor and just 5 by repository owner.
These flow works well for the general program languages like Python, C#, Java and so on because the source codes are the text files. However source code of VBA is included in the Excel file that can't be compared directly like text files. So you have to export or copy & paste the modif…