|
-
Dec 7th, 2002, 11:08 AM
#1
Thread Starter
Hyperactive Member
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.
-
Dec 7th, 2002, 11:33 AM
#2
Sleep mode
as simple as this
VB Code:
Private Sub TextBox1_TextChanged(ByVal sender _
As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
Me.Text = TextBox1.Text
End Sub
-
Dec 7th, 2002, 11:43 AM
#3
Frenzied Member
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
-
Dec 7th, 2002, 11:50 AM
#4
Sleep mode
weird question , lol
-
Dec 7th, 2002, 12:01 PM
#5
Thread Starter
Hyperactive Member
It's just me being anal.. I hate watching my text in that small box...

Anjari
-
Dec 7th, 2002, 12:37 PM
#6
PowerPoster
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'.
-
Dec 7th, 2002, 06:27 PM
#7
Thread Starter
Hyperactive Member
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
-
Dec 8th, 2002, 05:46 AM
#8
Sleep mode
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|