Apr 25, 2002 #1 FontanaS Programmer Joined May 1, 2001 Messages 357 Location US I do a find on a datawindow that successfully finds the row I am looking for. I then do a scrolltorow, but the information does not appear on the screen? Is there a refresh or something that makes the datawindow display the information? THANKS!
I do a find on a datawindow that successfully finds the row I am looking for. I then do a scrolltorow, but the information does not appear on the screen? Is there a refresh or something that makes the datawindow display the information? THANKS!
Apr 26, 2002 #2 rt63 IS-IT--Management Joined Aug 20, 2001 Messages 255 Location IN Normally it should display data. Have you used setredraw(false) function somewhere without calling setredraw(true) after the code for scrolling is getting executed? Do you have similar code somewhere else which is scrolling you back to original row? If you can show the code you have written, maybe it can be figured out. RT Upvote 0 Downvote
Normally it should display data. Have you used setredraw(false) function somewhere without calling setredraw(true) after the code for scrolling is getting executed? Do you have similar code somewhere else which is scrolling you back to original row? If you can show the code you have written, maybe it can be figured out. RT
Apr 26, 2002 Thread starter #3 FontanaS Programmer Joined May 1, 2001 Messages 357 Location US I figured out the problem. I was trying to do everything in the itemchanged event. I had to create a new user event and when I put the code there it worked fine. Apparently I found that the item changed event had to complete first, before it could do the refresh THANKS Upvote 0 Downvote
I figured out the problem. I was trying to do everything in the itemchanged event. I had to create a new user event and when I put the code there it worked fine. Apparently I found that the item changed event had to complete first, before it could do the refresh THANKS