Results 1 to 4 of 4

Thread: This is about the About form.

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Jun 2002
    Posts
    586

    Cool This is about the About form.

    Greetings,

    I am creating an About form for my app with the supplied About form. For some reason, I can't make the caption of the Form and the lbltitle what i want. It seems to only give me the name of my app. The app is called, say, ABC. I want the About form to have for its caption

    About ABC File Importer

    and I put this in the caption property. All it shows when I run the app, though, is

    About ABC.

    And the same things happens with the lblTitle.

    Any clues anyone?

    Thank you,
    Jim

  2. #2
    Banished Cander's Avatar
    Join Date
    Dec 2000
    Location
    Why do you care?
    Posts
    6,913
    Take out the code in the Form_Load that is doing that

    Code:
        Me.Caption = "About " & App.Title
        lblVersion.Caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision
        lblTitle.Caption = App.Title
    Stack Overflow
    See the features of Visual Studio 2010 and C# 4.0: The 10-4 show on Channel9

  3. #3

    Thread Starter
    Fanatic Member
    Join Date
    Jun 2002
    Posts
    586
    Originally posted by Cander
    Take out the code in the Form_Load that is doing that

    Code:
        Me.Caption = "About " & App.Title
        lblVersion.Caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision
        lblTitle.Caption = App.Title
    Thanks very much! Say, my next question is does anybody know how I can display that funny little copyright symbol, with the circle around the "c"?

  4. #4
    Banished Cander's Avatar
    Join Date
    Dec 2000
    Location
    Why do you care?
    Posts
    6,913
    Chr(169)
    Stack Overflow
    See the features of Visual Studio 2010 and C# 4.0: The 10-4 show on Channel9

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