|
-
Nov 14th, 2002, 02:10 PM
#1
Thread Starter
Fanatic Member
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
-
Nov 14th, 2002, 02:14 PM
#2
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
-
Nov 14th, 2002, 02:18 PM
#3
Thread Starter
Fanatic Member
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"?
-
Nov 14th, 2002, 02:21 PM
#4
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
|