> Pino Zollo wrote:
> > FMain.printer_Draw.49: FMain.printer_Draw.47    Type mismatch: wanted
> > Float, got Null instead
> 
> I am hoping the following will allow for comma decimals (would be grateful
> if you could check) :
> 
> ftp://ftp.drivehq.com/charlesg628/publicfolder/BarcodeG3-0.0.5.tar.gz
> BarcodeG3-0.0.5.tar.gz

The "Case" tests in ChkInput method are incorrect:

        Select Key.Code
          Case (key["n"] Or Key["N"]) And Key.Alt

does not mean:

        If (Key.Code = Key["n"] Or Key.Code = Key["N"]) And Key.Alt

but:

        If Key.Code = ((Key["n"] Or Key["N"]) And Key.Alt)

And if you want to check against an alphabetic key, you should use Key.Text, 
not Key.Code.

Regards,

-- 
Benoît Minisini

------------------------------------------------------------------------------
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image
Editing and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev
_______________________________________________
Gambas-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to