arunkw
4th November 2004, 14:02
Hi All,
In below mention code
skip.io("")
Every time this is hit I get Pop Up message "Record not Modified"
This message comes since I am passing "" as an argument parameters which shows default message (Record not Modified)
I don't want popup message to be displayed.
How do I do that?
Regards
Arun kumar :)

pbracke
4th November 2004, 17:13
Hi,

I am not sure if it works but did you ever tried : skip.io()

arunkw
5th November 2004, 05:06
skip.io()
Gives compilation erorr
Error: At least 1 arguments expected for function skip.io()

mark_h
5th November 2004, 16:33
Maybe you could post the code for the session. Maybe someone will see something that is wrong or propose something else. I know I have used skip.io(maybe once or twice) and I did not have a problem with this message appearing. Of coure I just used it in the after.read section of main.table.io.

Mark

lbencic
5th November 2004, 19:06
The skip io only generates a message if it's skipping an update (write or rewrite), it does not generate the message if it's skipping a read. The reason is, if an update is skipped, they feel the user should know. I would agree with that, but I'm sure you have your reasons for not wanting...

One different approach (there are probably many!), is to save the old values, then if you want to skip the update, instead of skipping, just replace the values with the old values and let the update happen.

Just some thoughts, as Mark said if you post your code or let us know a little more about the session / functionality, maybe we can suggest more.

lbencic
5th November 2004, 19:09
That post was edited (if anyone saw the first version) to remove the 'choice again' suggestion, that would not work as you don't have the new values yet at that point to base your validation on.