CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Visual Basic

  1. #1
    Join Date
    Sep 2001
    Location
    india,kerala
    Posts
    1

    Visual Basic

    What is the difference between form unload and query unlode?


  2. #2
    Join Date
    Jun 2001
    Location
    MO, USA
    Posts
    2,868

    Re: Visual Basic

    QueryUnload is called before Unload and has a Cancel parameter which you can set to true if you want to prevent the form from Unloading (for example if the user needs to save data first or something of that nature). Unload runs it's code and the form Unloads.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured