Results 1 to 3 of 3

Thread: Change name

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Jun 2000
    Location
    Ca
    Posts
    93

    Question

    Me again, I have made a program and created an exe out of it but when I satre it it says form1 where I want it to say Extreamly Annoing Program. How can I fix that?
    Timbudtwo
    I have no life, only one with computers.

    VB 6.0 Enterprise Edition
    [hr]

  2. #2
    Fanatic Member RealisticGraphics's Avatar
    Join Date
    Jul 1999
    Location
    Arkansas
    Posts
    655
    Well, you could set the form's caption property to whatever you want using the property window or you could use the following:

    Code:
    Private Sub Form_Load()
    form.caption = "Hello World!"
    End Sub
    replace "form" with your form's name.
    www.RealisticGraphics.net

    Running VS.Net Enterprise & VB 6

    Other Languages: JavaScript, VBScript, VBA, HTML, CSS, ASP, SQL, XML

    MSN Messenger: kmsheff

  3. #3

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