Skip to content

Instantly share code, notes, and snippets.

@eggist77
eggist77 / __vbs_get_ini_lib.md
Last active August 11, 2021 02:41
vbs: get_ini_lib.vbs

code: VBScript
description: VBScriptでINIファイルの読み書きをできるようにする

@eggist77
eggist77 / vba_make_arrow.vb
Last active July 18, 2021 06:31
vba: Insert an arrow in the selection hatena: entry/20181121/1542802915
' @description Insert an arrow in the selection hatena: entry/20181121/1542802915
' @auther n.
' @version 1.0
' @since 2018.11.21
' @update 2018.11.21
Sub makeArrow()
Dim r As Range
Set r = Selection
@eggist77
eggist77 / vba_read_text.vba
Last active August 7, 2021 11:57
vba read text
Sub read_text()
Dim buf As String
Dim n As Integer 'file number
Dim file As String
file = "C:\tmp\test.txt"
n = FreeFile
Open file For Input As #n