Results 1 to 5 of 5

Thread: What is Hide Method in Visual basic?

  1. #1
    Join Date
    Dec 2010
    Posts
    8

    What is Hide Method in Visual basic?

    Hey guys, I am student of BCA where in I am having a problem in subject Visual basic 6.0. I am not able to understand a topic in Visual basic which is Hide method. I don’t know when ever I try to implement this method practically, I find that my output is completely different. This may be possible because of I am not aware of this term. So, I think that I should know this term better then implement it. So, anyone having any idea about this term then let me know as soon as possible.

  2. #2
    Join Date
    Apr 2009
    Posts
    488

    Re: What is Hide Method in Visual basic?

    The Hide method is used to hide a form. FormName is the name of the form you want to hide. The form is just hidden and remains in the memory. ExamplefrmSummary.Hide The Load Statement SyntaxLoad FormNameExplanationi.FormName is the name of a form. It loads the specified form in the memory but does not display it. The Form_Load event of the form is triggered on loading it. It is generally not used since the Load is done automatically when the Show method is called.

  3. #3
    Join Date
    May 2009
    Posts
    527

    Re: What is Hide Method in Visual basic?

    ExampleLoad frmSummaryThe Unload Statement SyntaxLoad FormNameExplanationi.FormName is the name of a form. It removes the specified form from the memory thus releasing the resources. The Form_Unload event of the form is triggered before unloading it. It is used when the form is no longer needed. ExampleUnload frmSummaryThe Me Keyword DescriptionYou can refer to the currently active form by the Me keyword. You can use Me in place of the form name when coding form statements and methods. ExamplesUnload Me Me.Hide.

  4. #4
    Join Date
    May 2009
    Posts
    637

    Re: What is Hide Method in Visual basic?

    Well, you must be aware that Hide Method is basically used to hide the form in visual basic environment. Me keyword is used by this method to hide the forms. Using Me keyword it will hide the current form in which it has written this code. I think that this is the simplest topic visual basic environment. Now, when you try you will find the difference as it hides the current form.

  5. #5
    Join Date
    May 2009
    Posts
    529

    Re: What is Hide Method in Visual basic?

    I also agree with this point that Hide method is used to hide the current form in Visual basic environment. It uses Me keyword which is then followed by Hide keyword also. Over here Me represents the current form. Many of them get confused with this term. But, once the concept is cleared then it is the simplest chapter in Visual basic.

Similar Threads

  1. How to hide and show cursor in Visual C + +
    By Mrigankasekhar in forum Software Development
    Replies: 5
    Last Post: 07-03-2010, 12:50 AM
  2. what are Visual Basic IDE?
    By Naresh Modi in forum Software Development
    Replies: 2
    Last Post: 06-03-2009, 09:49 AM
  3. Is GUI same like Visual Basic ?
    By Caesar in forum Software Development
    Replies: 2
    Last Post: 02-03-2009, 01:32 PM
  4. Visual Basic 2005 or Visual Basic 6
    By Aasha in forum Software Development
    Replies: 5
    Last Post: 15-01-2009, 06:56 PM
  5. Visual Basic on LAN
    By djbbenn in forum Software Development
    Replies: 2
    Last Post: 05-08-2008, 02:15 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,147,434.31771 seconds with 16 queries