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?

QRコード・メーラー起動QRコード作成アプリ

Posted at

QRコードを使って業務をしたいと思ったので作ってみた。

image.png

まずはQRコードの内容となるTextInputを配置
次に、QRコード作成については下記サイトより
https://goqr.me/api/
image.png
Exampleの部分をTextInput.Textとすれば良いので

imageコントロールを配置して
imageプロパティ

"https://api.qrserver.com/v1/create-qr-code/?size=150x150&data="&TextInput.Text

と記述する。

これで良い感じにQRコードが作成できる。

ただ、これだけでは面白くないので良く使いそうな機能を追加する。

QRを読んだらメーラーが起動する機能である。

QRコードの内容をCopilot様に聞いてみた。

image.png

快く教えてもらったので下記の様にコントロールを置いて
先ほどと同じようにimageコントロールimageプロパティ
下記の様に記述
image.png

"https://api.qrserver.com/v1/create-qr-code/?size=150x150&data="&
"MATMSG:TO:"&txtToDetailMailQR.Text&
";SUB:"&txtSubDetailMailQR.Text&
";BODY:"&txtBodyDetailMailQR.Text&";;"

説明不要と思うが上から宛先、タイトル、本文のTextの値である。
こんな感じで簡単にメーラー起動のQRコード作成アプリもできる。

業務の利用想定では例えば、
補充が必要な物品棚などにQRコードを貼って
補充が必要なタイミングでQRコードを読んでそのままメールを送るだけで
担当者に補充を要求するメールを送信する。
みたいな事に利用できる。

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?