Moregelen,
I am not sure if I should post this here. I am trying to create a secondary display for my customers and have a programmer who is helping. But having some issue.Here is Pms9.ISL file which is not displaying the items properly. every time we choose the item on the menu it keeps asking with a small popup window with "info" title and ask to confirm the price. Then when we choose an additional item, again same pop-up window and adds the same item twice.
Can you please check my ISL file below and advice?
thanks
mxap
retainglobalvar
var dll_handle:N32
event signin
DLLLoad dll_handle, "customerdisplay.dll"
DLLCALL_CDECL dll_handle, cdshowdisplay ()
endevent
event signout
DLLFree dll_handle
endevent
Event MI
var i:N3
var tmpstr:A20
for i = 1 to @NUMDTLT // @NUMDTLR = Number of Detail Entries this Service Round
if @DTL_TYPE = "M" // M = Menu Item; I = Check Information Detail; D = Discount Name; S = Service Charge; T = Tender Media; R = Reference Number; C = CA Detail
tmpstr = "" + @DTL_TTL
//DLLCall_CDECL dll_handle, cdsenddata (0, @DTL_NAME, @DTL_QTY, tmpstr )
endif
endfor
EndEvent
inttest
//event mi_void
//endevent
//event mi_return
//endevent