+ Reply to Thread
Results 1 to 13 of 13

ActiveControl again

Hybrid View

  1. #1
    Geoff
    Guest

    ActiveControl again

    The following code fails at line 2 with Object vaiable not set and I cannot
    find the correct syntax.
    The proc refers to 2 optionbutton labels in a frame on a multipage hence
    needing to use SelectedItem.

    If Me.MultiPage1.SelectedItem.ActiveControl.Name = "fraOneDayTwoDay" Then
    If fraOneDayTwoDay.ActiveControl.TabIndex = 3 Then
    lblOneDayBack.Visible = True
    Else
    lblTwoDayBack.Visible = True
    End If
    End If

    T.I.A.

    Geoff

  2. #2
    Tom Ogilvy
    Guest

    RE: ActiveControl again

    You don't need activecontrol:

    If Me.MultiPage1.SelectedItem.ActiveControl.Name = "fraOneDayTwoDay" Then
    If fraOneDayTwoDay.TabIndex = 3 Then
    lblOneDayBack.Visible = True
    Else
    lblTwoDayBack.Visible = True
    End If
    End If

    --
    Regards,
    Tom Ogilvy



    "Geoff" wrote:

    > The following code fails at line 2 with Object vaiable not set and I cannot
    > find the correct syntax.
    > The proc refers to 2 optionbutton labels in a frame on a multipage hence
    > needing to use SelectedItem.
    >
    > If Me.MultiPage1.SelectedItem.ActiveControl.Name = "fraOneDayTwoDay" Then
    > If fraOneDayTwoDay.ActiveControl.TabIndex = 3 Then
    > lblOneDayBack.Visible = True
    > Else
    > lblTwoDayBack.Visible = True
    > End If
    > End If
    >
    > T.I.A.
    >
    > Geoff


  3. #3
    Geoff
    Guest

    RE: ActiveControl again

    Thank you.

    Geoff

    "Tom Ogilvy" wrote:

    > You don't need activecontrol:
    >
    > If Me.MultiPage1.SelectedItem.ActiveControl.Name = "fraOneDayTwoDay" Then
    > If fraOneDayTwoDay.TabIndex = 3 Then
    > lblOneDayBack.Visible = True
    > Else
    > lblTwoDayBack.Visible = True
    > End If
    > End If
    >
    > --
    > Regards,
    > Tom Ogilvy
    >
    >
    >
    > "Geoff" wrote:
    >
    > > The following code fails at line 2 with Object vaiable not set and I cannot
    > > find the correct syntax.
    > > The proc refers to 2 optionbutton labels in a frame on a multipage hence
    > > needing to use SelectedItem.
    > >
    > > If Me.MultiPage1.SelectedItem.ActiveControl.Name = "fraOneDayTwoDay" Then
    > > If fraOneDayTwoDay.ActiveControl.TabIndex = 3 Then
    > > lblOneDayBack.Visible = True
    > > Else
    > > lblTwoDayBack.Visible = True
    > > End If
    > > End If
    > >
    > > T.I.A.
    > >
    > > Geoff


  4. #4
    Geoff
    Guest

    RE: ActiveControl again

    Tom
    I thought at first that was the solution but by coincidence it was
    referencing the same tabindexc of the multipage not the tabindex of the frame
    control . So i'm still stuck on this.

    Geoff

    "Geoff" wrote:

    > Thank you.
    >
    > Geoff
    >
    > "Tom Ogilvy" wrote:
    >
    > > You don't need activecontrol:
    > >
    > > If Me.MultiPage1.SelectedItem.ActiveControl.Name = "fraOneDayTwoDay" Then
    > > If fraOneDayTwoDay.TabIndex = 3 Then
    > > lblOneDayBack.Visible = True
    > > Else
    > > lblTwoDayBack.Visible = True
    > > End If
    > > End If
    > >
    > > --
    > > Regards,
    > > Tom Ogilvy
    > >
    > >
    > >
    > > "Geoff" wrote:
    > >
    > > > The following code fails at line 2 with Object vaiable not set and I cannot
    > > > find the correct syntax.
    > > > The proc refers to 2 optionbutton labels in a frame on a multipage hence
    > > > needing to use SelectedItem.
    > > >
    > > > If Me.MultiPage1.SelectedItem.ActiveControl.Name = "fraOneDayTwoDay" Then
    > > > If fraOneDayTwoDay.ActiveControl.TabIndex = 3 Then
    > > > lblOneDayBack.Visible = True
    > > > Else
    > > > lblTwoDayBack.Visible = True
    > > > End If
    > > > End If
    > > >
    > > > T.I.A.
    > > >
    > > > Geoff


  5. #5
    Tom Ogilvy
    Guest

    Re: ActiveControl again

    What are you actually trying to determine/do?

    --
    Regards,
    Tom Ogilvy

    "Geoff" <Geoff@discussions.microsoft.com> wrote in message
    news:656AA61D-62DA-430C-A9F4-313840686ADC@microsoft.com...
    > Tom
    > I thought at first that was the solution but by coincidence it was
    > referencing the same tabindexc of the multipage not the tabindex of the

    frame
    > control . So i'm still stuck on this.
    >
    > Geoff
    >
    > "Geoff" wrote:
    >
    > > Thank you.
    > >
    > > Geoff
    > >
    > > "Tom Ogilvy" wrote:
    > >
    > > > You don't need activecontrol:
    > > >
    > > > If Me.MultiPage1.SelectedItem.ActiveControl.Name = "fraOneDayTwoDay"

    Then
    > > > If fraOneDayTwoDay.TabIndex = 3 Then
    > > > lblOneDayBack.Visible = True
    > > > Else
    > > > lblTwoDayBack.Visible = True
    > > > End If
    > > > End If
    > > >
    > > > --
    > > > Regards,
    > > > Tom Ogilvy
    > > >
    > > >
    > > >
    > > > "Geoff" wrote:
    > > >
    > > > > The following code fails at line 2 with Object vaiable not set and I

    cannot
    > > > > find the correct syntax.
    > > > > The proc refers to 2 optionbutton labels in a frame on a multipage

    hence
    > > > > needing to use SelectedItem.
    > > > >
    > > > > If Me.MultiPage1.SelectedItem.ActiveControl.Name = "fraOneDayTwoDay"

    Then
    > > > > If fraOneDayTwoDay.ActiveControl.TabIndex = 3 Then
    > > > > lblOneDayBack.Visible = True
    > > > > Else
    > > > > lblTwoDayBack.Visible = True
    > > > > End If
    > > > > End If
    > > > >
    > > > > T.I.A.
    > > > >
    > > > > Geoff




  6. #6
    Geoff
    Guest

    Re: ActiveControl again

    To get the control with focus when tabbing through the form. The problem is
    how deep to go with activecontrol. The optionbuttons are within a frame on a
    multipage.

    So far I have:
    Me.ActiveControl.Name returns "MultiPage1"
    Me.MultiPage1.SelectedItem.Name returns "Page1"
    Me.MultiPage1.SelectedItem.ActiveControl.Name returns "fraOneDayTwoDay"

    but I cannot get to the controls within the frame fraOneDayTwoDay which are
    named as optOneDay and optTwoDay.

    Geoff


    "Tom Ogilvy" wrote:

    > What are you actually trying to determine/do?
    >
    > --
    > Regards,
    > Tom Ogilvy
    >
    > "Geoff" <Geoff@discussions.microsoft.com> wrote in message
    > news:656AA61D-62DA-430C-A9F4-313840686ADC@microsoft.com...
    > > Tom
    > > I thought at first that was the solution but by coincidence it was
    > > referencing the same tabindexc of the multipage not the tabindex of the

    > frame
    > > control . So i'm still stuck on this.
    > >
    > > Geoff
    > >
    > > "Geoff" wrote:
    > >
    > > > Thank you.
    > > >
    > > > Geoff
    > > >
    > > > "Tom Ogilvy" wrote:
    > > >
    > > > > You don't need activecontrol:
    > > > >
    > > > > If Me.MultiPage1.SelectedItem.ActiveControl.Name = "fraOneDayTwoDay"

    > Then
    > > > > If fraOneDayTwoDay.TabIndex = 3 Then
    > > > > lblOneDayBack.Visible = True
    > > > > Else
    > > > > lblTwoDayBack.Visible = True
    > > > > End If
    > > > > End If
    > > > >
    > > > > --
    > > > > Regards,
    > > > > Tom Ogilvy
    > > > >
    > > > >
    > > > >
    > > > > "Geoff" wrote:
    > > > >
    > > > > > The following code fails at line 2 with Object vaiable not set and I

    > cannot
    > > > > > find the correct syntax.
    > > > > > The proc refers to 2 optionbutton labels in a frame on a multipage

    > hence
    > > > > > needing to use SelectedItem.
    > > > > >
    > > > > > If Me.MultiPage1.SelectedItem.ActiveControl.Name = "fraOneDayTwoDay"

    > Then
    > > > > > If fraOneDayTwoDay.ActiveControl.TabIndex = 3 Then
    > > > > > lblOneDayBack.Visible = True
    > > > > > Else
    > > > > > lblTwoDayBack.Visible = True
    > > > > > End If
    > > > > > End If
    > > > > >
    > > > > > T.I.A.
    > > > > >
    > > > > > Geoff

    >
    >
    >


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1