Jump to content

Ranja AZ

Members
  • Content Count

    26
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Ranja AZ


  1. Here is an instruction that I cannot convert to delphi:

     

                    printer.startPrint(false, new OnPrintListener() {       //roll paper or not
                        @Override
                        public void onPrintResult(final int retCode) {
                            runOnUiThread(new Runnable() {
                                @Override
                                public void run() {
                                    Toast.makeText(PrinterActivity.this, retCode + "", Toast.LENGTH_SHORT).show();
                                }
                            });
                        }
                    });

    Regard.

×