Table of Content
HAL Forum
procedure UserTrace (
string str,Integer datatype)
Description:
Displays first argument with type defined as second argument as a message on the screen. Using to show process status.
Parameters:
str string
datatype M4 datatype of the field
global 
procedure Testm()
begin
  integer i;   
  for (i=0;i<10000;i=i+1) begin
    UserTrace(i,M4Int);
  end;
  return;
end;
Related topics:
««