Skip to content

Instantly share code, notes, and snippets.

# InfoWorks ICM - How to customise your toolbars
# InfoWorks ICM - How to customise your toolbars programatically
By now you should know that if I'm talking about it, it'd be because I've found a way to autoamte it!
@sancarn
sancarn / Ruby enum windows.md
Last active July 15, 2018 20:14
How to call enum windows (and other win32 functions) using dl / fiddle, in a clean manor.

Ruby IDispatch

A way of dispatching Ruby classes and objects as COM OLE objects, via win32ole.

Uses

Useful for IE intergration:

require 'win32ole'

ICM Method Lists

Attempts to produce a list of all available classes and methods available in the current ICM instance.

Issues

Currently does not retrieve methods of Object class and it's ancestors (e.g. BasicObject) - Perhaps this should be added

@sancarn
sancarn / .ClassAndMethodsReport.md
Last active July 2, 2018 13:54
Retrieve all Classes and Methods in Ruby.

Ruby - Class and Methods Report

Attempts to produce a list of all available classes and methods available in the current Ruby instance.

Issues

Currently does not retrieve methods of Object class and it's ancestors (e.g. BasicObject) - Perhaps this should be added

Alter Table S104 (Add CAB Logical, KST Logical, PLT Logical)
select * from S104 where Adoption_Date <> "" into qNoBlank
select * from qNoBlank where Adoption_Date < CurDate() into qCAB
select * from qNoBlank where Adoption_Date >= CurDate() into qKST1
select * from S104 where Adoption_Date = "" into qBlank
select * from qBlank where Date_Confirmation < CurDate() or dwellings(DWF_Total_m3_per_sec) < 50 into qKST2
select * from qBlank where Date_Confirmation > CurDate() and dwellings(DWF_Total_m3_per_sec) >= 50 into qPLT
def proxy__enwrap(obj)
isClass = obj.is_a?(Class)
oldClass = isClass ? obj : obj.class
sNewClass = "Proxy#{oldClass.to_s}"
code = <<-EOF
class #{sNewClass}
include InstanceProxy
def self.__cinit__(obj)
@@__cobj__ = obj
end
@sancarn
sancarn / .Infoworks-ICM-BetterTreeview.md
Last active May 8, 2018 08:45
A better Powershell treeview for ICM

Test

@sancarn
sancarn / ReturnedErrors.txt
Last active May 5, 2018 19:02
Runs in ISE, Doesn't run in powershell
At C:\Users\sancarn\AppData\Local\Temp\script.ps1:20 char:20
+ $parent = [System.Windows.Forms.TreeNode]$global:database.Ite ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Unable to find type [System.Windows.Forms.TreeNode].
At C:\Users\sancarn\AppData\Local\Temp\script.ps1:27 char:36
+ ... [void]$node.nodes.add([System.Windows.Forms.TreeNode]::new(" ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Unable to find type [System.Windows.Forms.TreeNode].
At C:\Users\sancarn\AppData\Local\Temp\script.ps1:33 char:45
+ ... PSCustomObject]IWDBGetChildren([System.Windows.Forms.TreeNode]$node) ...
@sancarn
sancarn / ActivityWatcher.AHK
Last active August 19, 2024 19:40
Activity Watcher - This application monitors the windows you visit on your computer, and how long you visit them for. It was built due to my frustration with inability to remember what to put on my timesheets.
SetTimer, ActivityWatcher, 150
return
ActivityWatcher:
if !CurrentTitle
{
WinGetTitle, CurrentTitle, A
QPC(1)
}