Results 1 to 5 of 5

Thread: Why Navigation Button Disappear On The Data Report?

  1. #1
    Join Date
    Jul 2006
    Posts
    218

    Why Navigation Button Disappear On The Data Report?

    I am having problems with the navigation button which are placed at the bottom of the data report. I am using the navigation button for displaying the number of records. Due to some reason the Navigation Button Disappear On The Data Report. I need this navigation button to view all the pages. Also can anyone tell me what are the Control Arrays in Visual Basic 6.?? Please provide me helpful information.!!
    Thanx in advance.
    ~*~Silent~Kid~*~
    "To The World You May Be Just One Person, But To One Person You May Be The World"

  2. #2
    Join Date
    Nov 2008
    Posts
    1,192

    Re: Why Navigation Button Disappear On The Data Report?

    Several times it happens that Navigation Buttons Disappear when being published. When you try to publish, directly to the web FTP site or just the Preview within Publisher, the navigation menus and buttons disappear. If you are facing the same problem then there might be the compatibility issue with Internet Explorer and Publisher 2003 and 2007. So first thing you will have to check that whether, is there any compatibility issue.? By doing this you can troubleshoot the problem.

  3. #3
    Join Date
    Mar 2008
    Posts
    349

    Re: Why Navigation Button Disappear On The Data Report?

    I am providing some facts that applies to the control arrays :
    • The set of controls that form a control array must be all of the same type. Like if you are using textboxes, labels, buttons, the control array must be all of the same type.
    • You can set the Index property of each control in the array to a non-negative value and you can also set up a control array by naming one or more controls of the same type the same name.
    • The properties of the controls in the control array can change.

  4. #4
    Join Date
    Nov 2008
    Posts
    996

    Re: Why Navigation Button Disappear On The Data Report?

    If you want to refer to a member of a control array, the following is the Syntax for that :
    Code:
    ControlName(Index)[.Property]
    For Example : If you want to refer to the Text property of the first element of an array of textboxes called txtField, you can use the following syntax :
    Code:
    txtField(0).Text

  5. #5
    Join Date
    Jul 2006
    Posts
    289

    Re: Why Navigation Button Disappear On The Data Report?

    You will have to perform the following steps to build a sample application that uses a control array :
    • First of all start a new VB project. Then place a command button toward the bottom of the form and set its properties.
    • Click the command button once to select it. Then Copy it, you can copy it by pressing Ctrl+C or right clicking the mouse and then selecting the option copy.
    • Click on an open area of the form and Paste. You can paste by pressing the Ctrl+V or right clicking the mouse and then selecting the option paste. Respond Yes, when the message "You already have a control named 'cmdTest'. Do you want to create a control array?" comes. By doing this VB automatically set the Index property of the original command button to 0 and set the Index of the pasted control to 1.
    • Place the following code in the cmdTest_Click event:
      Code:
      Private Sub cmdTest_Click(Index As Integer)
      Print cmdTest(Index).Caption
      End Sub
    • Lastly run the project.
    Signatures reduce available bandwidth

Similar Threads

  1. How to customize Windows 7 navigation button
    By Blake's in forum Customize Desktop
    Replies: 3
    Last Post: 17-06-2013, 03:04 PM
  2. Navigation button is not working in E71
    By Ande$rson in forum Portable Devices
    Replies: 6
    Last Post: 24-06-2011, 09:43 PM
  3. Which is best, Data report or Crystal report?
    By Smita.bendal in forum Software Development
    Replies: 5
    Last Post: 11-03-2010, 02:42 AM
  4. I pressed a button and suddenly icons disappear
    By banjoman in forum Customize Desktop
    Replies: 3
    Last Post: 24-04-2009, 07:06 PM
  5. start button, taskbar and desktop icons disappear
    By Spiritual in forum Windows XP Support
    Replies: 1
    Last Post: 28-04-2008, 06:03 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,714,003,330.75454 seconds with 17 queries