Skip to content
View patrickjlee's full-sized avatar

Block or report patrickjlee

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. core-comparison core-comparison Public

    Sharing some reflections on some important maths problems still in .net Core, also some differences between .NET 4.xx and .NET Core 2.2

    C#

  2. This is in response to a request fo... This is in response to a request for example code using the VBADictionary class at https://gist.github.com/actuary21c/9529767
    1
    Sub ExampleOfUsingVBADictionary()
    2
        On Error GoTo ErrorHandler ' recommended: always have error trapping in top level (ie directly called by the user) routines
    3
        ' This is in response to a request for example code using the VBADictionary class at https://gist.github.com/actuary21c/9529767
    4
        
    5
        Dim strMyTitle As String
  3. A free implementation of a basic Dic... A free implementation of a basic Dictionary (hashed array) class for use in VBA
    1
    Option Explicit
    2
    
                  
    3
    ' License: distributed under Creative Commons license
    4
    ' (Basically: use as you wish providing you attribute/give appropriate credit, see https://creativecommons.org/licenses/by/4.0/)
    5
    ' Use at your own risk!
  4. VBA: how to select existing or new f... VBA: how to select existing or new files using Common Dialogs
    1
    Option Explicit
    2
    
                  
    3
    Public Sub ExampleOfChoosingExistingOrNewFilesInVBA()
    4
    ' Author: PJL (Patrick Lee, [email protected])
    5
    ' License: use on an AS IS basis, entirely at your own risk
  5. wpf-text-editor wpf-text-editor Public

    Utility to format .txt file transcripts of edX course videos more nicely (removes excessive line breaks).

    C# 1