Results 1 to 2 of 2

Thread: [RESOLVED] contol Question

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Aug 2001
    Location
    Washington DC
    Posts
    330

    Resolved [RESOLVED] contol Question

    where can I find a list of all contol properties/methods. They do not populate during programming.

    i.e.,

    ctl.name
    ctl.caption
    ctl.value



    Swoozie
    Somedays you just should not get out of bed.

  2. #2
    VB Addict Pradeep1210's Avatar
    Join Date
    Apr 2004
    Location
    Inside the CPU...
    Posts
    6,614

    Re: contol Question

    The intellisense menu comes up only for early binding, not late binding. So declare your variables correctly.

    e.g.

    Dim ctl ------> If you declare it like this, intellisense menu won't work with this.

    Dim ctl as TextBox ----> If you declare it like this, you will get the intellisense menu as soon as you type ctl. (the dot).
    Pradeep, Microsoft MVP (Visual Basic)
    Please appreciate posts that have helped you by clicking icon on the left of the post.
    "A problem well stated is a problem half solved." — Charles F. Kettering

    Read articles on My Blog101 LINQ SamplesJSON ValidatorXML Schema Validator"How Do I" videos on MSDNVB.NET and C# ComparisonGood Coding PracticesVBForums Reputation SaverString EnumSuper Simple Tetris Game


    (2010-2013)
    NB: I do not answer coding questions via PM. If you want my help, then make a post and PM me it's link. If I can help, trust me I will...

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