Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Micros 3700 - Something Like InfoMessage But with more options 1

Status
Not open for further replies.

mvelazquez

Technical User
Mar 14, 2015
118
MX
In an ISL , when using the InfoMessage function " Title ", " Message content " which recives is a popup window with that title , a message and a " Ok " button, which when clicking the message disappears ( As is his name says , is for information only ) .

Anyone know of any other function so you can choose more than one option depending on the selected button and perform different actions ?
 
You'll have to generate your own window to anything more than that. The SIM Window and various Display commands are what you're looking for.
 
Thanks PMEGAN, you know where I can find documentation on what you mention me?
 
Here's a simple Player inquiry that asks the Cashier if they wish to print the information.
By the way, this was scripted on 9700 system.

Code:
  Window 14,55, "Player Points & eComp Information"
    display 2,2,  "First Name      : ",pfirst
    display 3,2,  "Last Name       : ",plast
    display 4,2,  "Player Acct. #  : ",cardswipe
    display 6,2,  "Player $ Avail. : $ ",dollarbal
    display 7,2,  "eComp Available : $ ",eCompAmnt2
    display 8,2,  "eComp Qty @ $   : ",eCompQtyDesc
    display 9,2,  "eComp Name      : ",ecompName
    display 10,2, "Discountable    : ",discountable
    display 11,2, "eCoupon Total   : $ ", eCouponAmtTtl
    display 13,@CENTER, "DO YOU WISH TO PRINT A COPY OF THIS?"
    display 14,@CENTER, "[ENTER - Yes]  OR  [CLEAR - No]"
  
    //WaitForConfirm "[ENTER] to PRINT | [CLEAR] to CONTINUE"               // Commented out, has errors when using with inputkey
    inputkey key_pressed, data, "[ENTER] to PRINT or [CLEAR] to Continue"

  if key_pressed = "9:12"   // Enter Key was pressed
      // Print Inquiry Information if Enter was Pressed
      Call print_eCompInquiryChoices
      
  endif

Here's the 3700 Sim Guide. Page 3-8 has some info.
 
It became clear to me the code and I are very useful , but , once identified the number of ticket

How I Do realize the void ?.
 
Sorry , I was wrong to Tab to post, and this question belonged an Other Topic
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top