Results 1 to 4 of 4

Thread: Change access forms title in vba

  1. #1
    Join Date
    Apr 2009
    Posts
    27

    Change access forms title in vba

    I use the chart wizard in Access 2000. I want to change title at runtime through VBA. Can anyone help me changing the title through VBA....???
    Any suggestion will be appreciated......!

  2. #2
    Join Date
    Oct 2005
    Posts
    2,393

    Re: Change access forms title in vba

    Try this code if possible

    Code:
    Sub Macro8()
    ActiveSheet.ChartObjects(8).Chart. _
    ChartTitle.Characters.Text = "Text"
    End Sub

  3. #3
    Join Date
    May 2008
    Posts
    2,389

    Re: Change access forms title in vba

    They know the entrance title, by them the characteristic. The following code becomes the entrance title along the category entrance :

    ActiveChart.Axes(xlCategory, xlPrimary).AxisTitle.Caption = “WEEK”

  4. #4
    Join Date
    Feb 2008
    Posts
    1,852

    Re: Change access forms title in vba

    Try this:

    Code:
    Sub Macro1()
    With Sheets("3. FHS").ChartObjects("ProjGraph1")
    .Chart.HasTitle = True
    .Chart.ChartTitle.Text = "This is New Title"
    End With
    End Sub

Similar Threads

  1. How to change author and title of PDF files
    By Katyayani in forum Software Development
    Replies: 10
    Last Post: 30-12-2011, 07:23 AM
  2. How to turn-off OWA (outlook web access) forms
    By Dyumani in forum Windows Software
    Replies: 3
    Last Post: 25-07-2009, 10:22 AM
  3. How to Automatically access the fields of an Access 2007 forms
    By Corona in forum Software Development
    Replies: 3
    Last Post: 25-06-2009, 12:54 PM
  4. Change browser title in Opera
    By absolute55 in forum Tips & Tweaks
    Replies: 2
    Last Post: 09-05-2009, 05:53 PM
  5. Change Yahoo Messenger Title bar
    By NGV BalaKrishna in forum Tips & Tweaks
    Replies: 1
    Last Post: 09-12-2008, 07:28 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,503,613.24332 seconds with 17 queries