Visual FoxPro Developer Center > Visual FoxPro Forums > Visual FoxPro General > When I open 2 same forms the one in the back is blanked as I drag the top one to reveal the bottom one, when clicking on the 2nd, normal viewing returns
Ask a questionAsk a question
 

General DiscussionWhen I open 2 same forms the one in the back is blanked as I drag the top one to reveal the bottom one, when clicking on the 2nd, normal viewing returns

All Replies

  • Friday, November 06, 2009 4:33 PMCraig BerntsonMVPUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Sounds like a screen refresh problem and not a VFP problem.
    Craig Berntson MCSD, Visual FoxPro MVP www.craigberntson.com
  • Saturday, November 07, 2009 2:50 PMLarry_Nuñez Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    In the init event I use the following

    select mytable
    go bottom
    thisform.text1.value=mytable.code+1

    In the save button I write thisform.init() to call the secuence, but it only works before I use any cursorsetprop commands and it discontrols everything.
    Is there another way to control the secuence of my data without a .prg?