We respect your privacy and want to protect your privacy.
In order to comply with EU General Data Protection Regulation (GDPR), our website will display a form asking for your consent to save non-essential cookie to your browser. If you do NOT accept, only essential cookies will be sent to your browser, such as TempData and Session cookies. Learn More.
CMC7 OCRにVisual Basicを使用している場合は、さらに開発するために以下のコードスニペットをコピーして貼り付けてください。
Private Sub Command1_Click()
Dim bcsocr As Object
Set bcsocr = CreateObject("BCSPreciseOCR.bcsocr.1")
bcsocr.SetMode (0) ;スキャナーモードの場合は0
bcsocr.setFont (3) ;CMC7フォントOCRの場合3
Dim retval As String
retval = bcsocr.Recognize(Text1.Text)
Text2.Text = retval
End Sub