Results 1 to 8 of 8

Thread: Such a simple question someone should slap me...

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Dec 2002
    Location
    Canton, GA
    Posts
    487

    Such a simple question someone should slap me...

    Ok I am quite sure this is very simple!

    When designing a form and I am typing the text... I like to see my text actualy change on the form while I am typing... (You know like it did in VB6) Is there a way to turn that on????

    Example: Label6 on a form would not continue to show the text Label6 while I am typing "THIS IS MY LABEL" in the text area under properties.

    Also when using Shortcuts.... Example: &File - WHERE IS MY LINE!!!


    Additional Note: Thanks for everyones help even when it comes to stupid questions such as this...



    Anjari
    Last edited by Anjari; Dec 7th, 2002 at 11:12 AM.

  2. #2
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    as simple as this
    VB Code:
    1. Private Sub TextBox1_TextChanged(ByVal sender _
    2.  As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
    3.         Me.Text = TextBox1.Text
    4.     End Sub

  3. #3
    Frenzied Member DevGrp's Avatar
    Join Date
    Nov 2001
    Location
    Charlotte, NC
    Posts
    1,256
    I dont think thats what he means Pirate. He wants the text to change as he is typing in label.Text properties windows at design time. Anyway, I think MS changed that, so you have to hit enter and tab before the new text show up. As for the line under the the shortcut keys, you have to press alt before they show up. I read somewhere that this is a feature of the OS (win2000/winXp).
    Dont gain the world and lose your soul

  4. #4
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    weird question , lol

  5. #5

    Thread Starter
    Hyperactive Member
    Join Date
    Dec 2002
    Location
    Canton, GA
    Posts
    487
    It's just me being anal.. I hate watching my text in that small box...



    Anjari

  6. #6
    PowerPoster hellswraith's Avatar
    Join Date
    Jul 2002
    Location
    Washington St.
    Posts
    2,464
    I read somewhere that this is a feature of the OS (win2000/winXp).
    Yes it is a new feature. To turn it off, just open your display properties (right-click on the desktop and select properties). Go to the Appearance tab and click the Effects button. There is a check box on the bottom that you unselect to turn off this 'feature'.

  7. #7

    Thread Starter
    Hyperactive Member
    Join Date
    Dec 2002
    Location
    Canton, GA
    Posts
    487

    great...

    ok thanks for the advice on the short cut....

    any idea on showing text in the label as im typing or do I still have to watch it in the small properties section?

    Thanks,

    Anjari

  8. #8
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    Did you try what DevGrp and hellswraith said? It seems the only way to do that , otherwise this can't be done.

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