Results 1 to 5 of 5

Thread: Change the title

  1. #1

    Thread Starter
    Hyperactive Member dandono's Avatar
    Join Date
    Aug 2004
    Location
    Cornwall, UK
    Posts
    485

    Change the title

    if any one wanted to know how to have a user make the title insted of programing a title into a vb application here's how to:

    you need a text box and a button and this is the very simple code

    Private Sub Command1_Click()
    Form1.Caption = Text1
    End Sub

    one line of code and it is done.. but does anyone know how i can do this by pressing enter on the keyboard

    i know how to change it as soon as a letter is typed in to the text box like this

    Private Sub Text1_Change()
    Form1.Caption = Text1
    End Sub

    but there must be a way of getting something to happen when i press enter on the keyboard.. please post a reply
    If there is only one perfect person in the universe, does that make them imperfect?

  2. #2
    Lively Member rm_03's Avatar
    Join Date
    Aug 2004
    Posts
    92
    Hi,

    you could try it this way:

    Code:
    Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer)
        If KeyCode = vbKeyReturn Then Me.Caption = Text1
    End Sub
    But then it will make a cruel "pling"...

  3. #3

    Thread Starter
    Hyperactive Member dandono's Avatar
    Join Date
    Aug 2004
    Location
    Cornwall, UK
    Posts
    485
    thanks it works now
    later
    If there is only one perfect person in the universe, does that make them imperfect?

  4. #4
    Big D Danial's Avatar
    Join Date
    Jul 2000
    Location
    ASP.Net Forum
    Posts
    2,877
    Originally posted by rm_03

    But then it will make a cruel "pling"...
    To stop the "pling" or beep you could use :

    VB Code:
    1. Private Sub Text1_KeyPress(KeyAscii As Integer)
    2.     If KeyAscii = 13 Then
    3.         KeyAscii = 0
    4.     End If
    5. End Sub
    [VBF RSS Feed]

    There is a great war coming. Are you sure you are on the right side? Atleast I have chosen a side.

    If I have been helpful, Please Rate my Post. Thanks.

    This post was powered by :

  5. #5

    Thread Starter
    Hyperactive Member dandono's Avatar
    Join Date
    Aug 2004
    Location
    Cornwall, UK
    Posts
    485
    cool thnx
    If there is only one perfect person in the universe, does that make them imperfect?

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