LoginSignup
2
1

More than 5 years have passed since last update.

文字列→数値 数値→文字列

Posted at

10進数整数 → 16進数整数

dim dec as integer
value = 10

msgbox hex(value) //-> A

16進数文字列 → 10進数整数

dim Value as string
value = 3A
msgbox CLng("&H" & Value) //->58

2
1
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
2
1