Form_Current

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • TrueColors

    #1

    Form_Current

    I have a project with VBA and i want to re-write it with VB 2003 but i can't
    find the equivalent of event "Current" (Form_Current -- vba) in VB 2003.

    Can anyone help me please.

    Many thanks.


  • Herfried K. Wagner [MVP]

    #2
    Re: Form_Current

    "TrueColors " <cyber.newsg@ya hoo.frschrieb:
    >I have a project with VBA and i want to re-write it with VB 2003 but i
    >can't find the equivalent of event "Current" (Form_Current -- vba) in VB
    >2003.
    Which object are you referring to? Excel VBA's UserForm doesn't have a
    'Current' event, for example. In addition, when is this event raised?

    --
    M S Herfried K. Wagner
    M V P <URL:http://dotnet.mvps.org/>
    V B <URL:http://dotnet.mvps.org/dotnet/faqs/>

    Comment

    • =?Utf-8?B?Q3lib3JneDM3?=

      #3
      RE: Form_Current

      If you are using Access, then the Form_Current event is fired each time a new
      record is loaded into the form's fields (as a response to the user navigating
      through the data).

      VB 2003 is not going to have a directly equivalent event. You could create a
      sub that accomplishes what you want to happen and then call that sub from
      each control which somehow navigates through the data.

      Without a more specific description of what you are trying to accomplish,
      that's the best advice I can give.

      "TrueColors " wrote:
      I have a project with VBA and i want to re-write it with VB 2003 but i can't
      find the equivalent of event "Current" (Form_Current -- vba) in VB 2003.
      >
      Can anyone help me please.
      >
      Many thanks.
      >
      >
      >

      Comment

      Working...