Dim x01 As Boolean
Dim x02 As Byte
Dim x03 As Currency
Dim x04 As Date
Dim x05 As Double
Dim x06 As Integer
Dim x07 As Long
Dim x08 As LongPtr
Dim x09 As MsoRGBType
#' Todo:
Might want to make this class based with an event sink.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class A_ { | |
class COM { | |
GetActiveObject(){ | |
} | |
GetActiveObjects(){ | |
} | |
class _COMObject { | |
__New(obj){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Modelling in Excel | |
description: GIS Embedded in Excel | |
author: sancarn | |
host: EXCEL | |
api_set: {} | |
script: | |
content: |- | |
MakeMap() | |
var data = {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: VbaJsBridge | |
description: '' | |
author: sancarn | |
host: EXCEL | |
api_set: {} | |
script: | |
content: |- | |
//Initialise VbaJsBridge | |
VbaJsBridge_Initiate(); | |
var Timer: Number = 1000; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public HeaderColor as Long | |
Private OptionsSheet as Worksheet | |
Private DataSheet as Worksheet | |
Private Sub Worksheet_Change(ByVal Target As Range) | |
Me.HeaderColor = RGB(217, 217, 217) | |
set OptionsSheet = sheets("Options") | |
set DataSheet = ActiveWorksheet | |
if target.address = "$B$1" then |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="/libraries/jQuery.js"></script> | |
<script src="/libraries/Ace/build/ace.js"></script> | |
<script src="console.js"></script> | |
<link rel="stylesheet" href="console.css" type="text/css" /> | |
<style> | |
html, body{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=begin | |
Piles are a great way of updating all values of a set at once, instead of mapping arrays constantly. | |
E.G. | |
Example CSV: | |
a,b,c | |
1,2,3 | |
4,5,6 | |
Then: | |
csv=CSV.new(text, {:headers=>true}) |