Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Bigger font size for barcode scanning
Message
De
23/09/2022 04:06:30
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Titre:
Bigger font size for barcode scanning
Divers
Thread ID:
01684991
Message ID:
01684991
Vues:
57
Visual FoxPro barcode scanner application uses accept command for barcode collection via RDP:
    _screen.FontSize=20
    _screen.FontName='Arial'
    DO WHILE .T.
    accept 'Barcode' to cBarCode
    if empty(cBarCode)
      exit
      endif
    insert into barcodes value (cBarCode)
    ENDDO
Scanned barcode font size is too small (see https://i.stack.imgur.com/ZJPbF.png ).

How to increase displayed scanned barcode 123456 font size?

Only ACCEPT prompt font size can changed.
Re-writing application using @ GET commands or Forms is huge work.
Answer in
https://social.msdn.microsoft.com/Forums/en-US/c3f9e89a-8917-4236-bc2c-474592f1af4c/increase-font-size-on-accept-input-and-wait?forum=visualfoxprogeneral

recommends to use INPUTBOX() but this hides whole mobile screen.

Maybe there is FoxPro code for command line data entry which uses INKEY() or something other to mimics this command?
Or can some Windows api function or external dll called for this?

Posted also in https://stackoverflow.com/questions/73824658/increasing-accept-command-entry-font-size
Andrus
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform