Results 1 to 12 of 12

Thread: Help with writting a Function

Hybrid View

  1. #1
    VB-aholic & Lovin' It LaVolpe's Avatar
    Join Date
    Oct 2007
    Location
    Beside Waldo
    Posts
    19,541

    Re: Help with writting a Function

    Try playing with the example.

    If you type the function name, using the above example: SayThis
    Then hit a space
    You'll get the list of enumeration values to choose from. That is intellisense

    Similar to this if you typed it in a form: Me.Enabled =
    Then after you hit the equal sign, you'd get a drop down of options (similar to an enumeration)

    Edited:

    FYI: Intellisense is more than that though; it'll finish commands for you, fix some things
    Example, type this in VB: Endif
    If you then hit enter, VB will fix it for you so it reads: End If

    If you didn't want to type out a complete property name, intellisense will help there too.
    Example: Type this in VB: Me.Win
    You'll get a drop down of options & simply pressing the tab key will finish it so it reads: Me.WindowState

    I must admit that I abuse the heck out of intellisense . I never type End If any more; always type endif & enter

    Last but not least for .Net users, VS2010 has code snippet intellisense. Now that sounds cool.
    Last edited by LaVolpe; Feb 8th, 2011 at 10:51 PM.
    Insomnia is just a byproduct of, "It can't be done"

    Classics Enthusiast? Here's my 1969 Mustang Mach I Fastback. Her sister '67 Coupe has been adopted

    Newbie? Novice? Bored? Spend a few minutes browsing the FAQ section of the forum.
    Read the HitchHiker's Guide to Getting Help on the Forums.
    Here is the list of TAGs you can use to format your posts
    Here are VB6 Help Files online


    {Alpha Image Control} {Memory Leak FAQ} {Unicode Open/Save Dialog} {Resource Image Viewer/Extractor}
    {VB and DPI Tutorial} {Manifest Creator} {UserControl Button Template} {stdPicture Render Usage}

  2. #2

    Thread Starter
    Fanatic Member
    Join Date
    Mar 2005
    Posts
    651

    Re: Help with writting a Function

    Ahhhhh
    I get it!

    Thanx!!!!!

    Wish I could give more Rep but say I have to spread around!!!

    I will work on implementing this tonight and in the morning!

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