0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

概要

cscの作法、調べてみた。
vbsから操れるUIコンポーネント(DLL)をC#で書いてみた。
vbsから操ってみた。

写真

image.png

環境

windows 11

サンプルコード

ohi0.vbs

Dim o
Dim fs
Dim fp

Set o = CreateObject("Ohi.Compo7")
o.Put "hello world!"
a = o.Open()
msgbox a
Set o = Nothing
Set fs = WScript.CreateObject("Scripting.FileSystemObject")
Set fp = fs.CreateTextFile("tmp.txt")
fp.Write(a)
fp.close
Set fs = Nothing


実行手順

>%systemdrive%\Windows\SysWoW64\CScript.exe ohi0.vbs

じゃんけん

湯婆婆

fizzbuzz

九九

zundoko

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?