QR코드에 색상 지정 가능

This commit is contained in:
chi
2019-05-03 21:10:44 +09:00
commit a0961a9a8b
260 changed files with 167684 additions and 0 deletions

21
Epole/Form_Work.vb Normal file
View File

@@ -0,0 +1,21 @@
Public Class Form_Work
Public Sub Msg(ByVal t As String)
Me.Label1.Text = t
My.Application.DoEvents()
End Sub
Public Property pval() As Integer
Get
Return Me.ProgressBar1.Value
End Get
Set(ByVal value As Integer)
If value < Me.ProgressBar1.Maximum Then Me.ProgressBar1.Value = value
End Set
End Property
Private Sub Form_Work_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Me.Show()
My.Application.DoEvents()
End Sub
End Class