CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 1 of 1
  1. #1
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,283

    [2005] General: What is the My Object and What does it do?

    What is the My Object and What does it do?

    Q: What is the My Object?

    A: My s not really an Object as we know it, it is more a feature. The My "Object" does host ( wrap ) several other objects in it, to act as shortcuts for some common tasks. More information it can be found here

    Q: What objects does it wrap ?

    A:
    • Application
    • Computer
    • Forms
    • Resources
    • Settings
    • User
    • WebServices


    Q: What does the Application object do?

    A: My.Application

    Q: What does the Computer object do?

    A: My.Computer

    Q: What does the Forms object do?

    A: My.Forms

    Q: What does the Resources Object do?

    A: My.Resources

    Q: What does the Settings Object do?

    A: My.Settings

    Q: What does the User Object do?

    A: My.User

    Q: What does the WebServices Object do?

    A: My.WebServices

    Q: Can I have a small example on the My Objects' usage?

    A: Yes . Have a look at the attachment, which contains the most common uses for these objects.
    Attached Files Attached Files
    Last edited by HanneSThEGreaT; February 10th, 2010 at 12:58 AM. Reason: Fixed Link

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