How to disable the error messagebox on RO client?

hi

when ro client lost the connect then it would show me a error dialog,that’s not what i want,how can i to disable it or override it ?

pls specify what platform (Delphi/.NET/Java/JS/Cocoa) you are using.

sorry about that

i am using delphi and RO7.0,

as I understand, error dialog is shown when table is opened.

you can put it into try/except code:

  try
     table.open;
  except
     //raise
  end;

EvgenyK,may be i described the issue incorrect .

there are some procedure and functions to provide data for client on RO server (like function GetOrders(Id:string):Binary)
I wrote a procedure to call GetOrders function from RO server and put it on a timer( the procedure will be excute every 30 seconds )
If client can not connect to RO server(network issue) then it will show a dialog(“can’t connect the server”) and have to press OK button close it every time .

RemoteService and ROWinInetHTTPChannel are created dynamic,
should i override its ROWinInetHTTPChannel’s OnException event to disable the error dialog?

OnException event can be used if other exception should be raised or for retrying operation.

Better to put your code in try/except:

try
   CoMyService.Create(Message, Channel).GetOrders(...);
except
end;

thank you EvgenyK