Jump to content

Ulugbek

Members
  • Posts

    148
  • Joined

  • Last visited

  • Days Won

    4

Posts posted by Ulugbek

  1. Ok

    I undertstand if i set webfocus EditControl then send barcode string into  editContorl and onkeyevent or onchange event i will be select from database.....

    But how detect if webfocus setting on other control like button or unidbgrid i need before scanning set web focus editcontrol

  2. Barcode scanner devices generally can work like a usb keyboard, o like a serial com device.

    Working barcode scanner as usb keyboard is the simpliest  way, reading the codebar is like if your keyboard write the code in the focused control.

     

    it's not necessary develope a keyboard hook, just put a unieditcontrol, focus on him, and read the codebar with the scanner..

    or you can do a form that capture the onkeyevent, show this form , and capture the reading keys.

    Can you give mini demo ?

  3. Thank you for you reply
    Can you share example code or source?

    For sample
    On web form i have  
    1) UniEditFindBarcode
    2) UniNumberAmount
    3) UniNumberQty
    4) UniDbGrid Basket List Item
    5) BigButton Pay
    6) BigButton Clear

    But how set cursor to UniEditFindBarcode when start reading or before reading scanner
    If cursor not setting on UniEditFindBarcode cursor staying other controls grid or uniamt

  4. Hello all

    Not Work hover effect UniPanel..

    If I set color in design time clBlack and add document.getElementById(sender.body.id).className += " hoverpanel"

    Not work for me.

    If I place UniPanel and don't change color  and add document.getElementById(sender.body.id).className += " hoverpanel"  Work Fine

     

    Custom CSS

    .hoverpanel:hover {
     background-color: #3D3E3F;
    }

     

    I found answer myself

     

    .hoverpanel{
     background-color: #1B1C1D;

     

    .hoverpanel:hover {
     background-color: #3D3E3F;
    }

    :unsure:

    • Upvote 1
×
×
  • Create New...