Sancarn
Sancarn
# `OSPasteHandler` Upgrades ## Current issues * Not all applications paste with `ctrl+v`. * Not all applications have a keyboard shortcut at all for pasting e.g. Specialist business software `InfoWorks...
### Description and Reproduction Steps For some reason, I'm yet to figure out totally why, but the extension isn't installable on http://vscode.dev ... Looking [here](https://code.visualstudio.com/api/extension-guides/web-extensions#web-extension-anatomy) there could be many culprits...
I've built an [exporter for VBA type information](https://github.com/sancarn/TypeLibToJSON). As a result you can find all types in [VBE7.dll](https://raw.githubusercontent.com/sancarn/TypeLibToJSON/master/TypeLibs/VBE7.json) and [Excel](https://github.com/sancarn/TypeLibToJSON/blob/master/TypeLibs/Excel.json) which are both common exports for VBA usage. It would...
I found that `hw_2d_sed_ic_polygon` was missing from the tables table. A list of all tables which I can create in Infoworks is found below: ``` -- hw_shape hw_runoff_surface hw_land_use hw_headloss...
```sql select max(tsr.ds_flow) when tsr.timestep_no=7; ```
There are various methods which are undocumented. Let's fix this as best as we can. > _Note:_ > Class.method = Static method > Class.instance.method = Instance method List of undocumented...
Many methods are available only in ICM exchange, however are documented as available in the UI mode. Current ruby automation method: ```rb def try(object,method,args) begin object.method(method).call(*args) rescue Exception => e...
We noticed today that `WSOpenNetwork#each_selected` seems to be asynchronous such that: ```rb net.scenarios do |scenario| net.current_scenario = scenario net.each_selected |obj| puts scenario end end ``` And your scenarios are `["CAB","KST","PLT"]`...
Currently we are using Markdown to display the files. Though markdown is great it isn't very flexible. Suggest a switch to [DML](https://tarvk.github.io/Empirler/docs/DML/About.html) Extended suggestions: * Each method can be assigned...
Suggested detail added at root of `WSTableInfo`: ``` `WSTableInfo` class may be sourced from `WSOpenNetwork`'s `table` or `tables` instance methods, and from `WSRowObjects` `table_info` instance method. ```