Send CathInfo's owner Matthew a gift from his Amazon wish list:
https://www.amazon.com/hz/wishlist/ls/25M2B8RERL1UO

Author Topic: Seeking Program Language Recommendations  (Read 2119 times)

0 Members and 1 Guest are viewing this topic.

Offline Ladislaus

  • Supporter
Re: Seeking Program Language Recommendations
« Reply #10 on: August 25, 2020, 05:27:23 PM »
I've programmed over the year in C#, Java, C/C++, Perl, PHP, Delphi/Pascal, Visual BASIC, and a few others, and C# is by far my favorite.  C# makes a lot of things easy that are cuмbersome and repetitive in the others.  You can focus more on what you want the code to DO and less on the low-level plumbing.

Re: Seeking Program Language Recommendations
« Reply #11 on: September 14, 2020, 01:51:17 AM »
I've programmed over the year in C#, Java, C/C++, Perl, PHP, Delphi/Pascal, Visual BASIC, and a few others, and C# is by far my favorite.  C# makes a lot of things easy that are cuмbersome and repetitive in the others.  You can focus more on what you want the code to DO and less on the low-level plumbing.

That's impressive that you know so many languages.

Since you're familiar with C#, is it possible to create custom form controls in C# ??
I'm interested in building custom form controls for my VBA applications.


Offline Ladislaus

  • Supporter
Re: Seeking Program Language Recommendations
« Reply #12 on: September 14, 2020, 07:47:58 AM »
That's impressive that you know so many languages.

Since you're familiar with C#, is it possible to create custom form controls in C# ??
I'm interested in building custom form controls for my VBA applications.

Yes, you can create custom form controls by overriding the existing ones.  I'm not sure if VBA can consume these natively (haven't worked with it in many years) or whether you have to "COM-wrap" them.

Offline Ladislaus

  • Supporter
Re: Seeking Program Language Recommendations
« Reply #13 on: September 14, 2020, 07:50:27 AM »