0

i am calling an old vfp procedure through DO WITH PARA COMMANDS

when the command executes, it displays a form and Waits(Read command)

Can i skip this Read, through programing? so that it doesn't wait..

Fayyaz Ali
  • 787
  • 1
  • 8
  • 18

1 Answers1

1

Sounds like a VERY OLD program with an explicit "READ" command... If you just comment out the read, will that work for you. Are you trying to otherwise bypass some functionality based on parameters and just have the function continue? If so, you could put an IF around the read for only the condition that you NEED it to stop.

Also, if the form is a "MODAL" (WindowState = Modal), it will stay on that form until it is closed (or set to hidden) and returns back to calling source to continue execution.

Showing some context of the form, procedure might help other options.

Fayyaz Ali
  • 787
  • 1
  • 8
  • 18
DRapp
  • 47,638
  • 12
  • 72
  • 142
  • yes.. am working on some integration project with an old legacy system. the if condition is a good idea.. Thanks.. – Fayyaz Ali Dec 25 '12 at 13:22