• WSkwvh

    WSkwvh

    @wskwvh

    Viewing 15 replies - 16 through 30 (of 432 total)
    Author
    Replies
    • in reply to: “Function is not available . . . in query” #1204101

      Wendell,

      Thanks for the followup. ย Yes, there is VBA Code. ย  I have 7 references in the VBA project, and all appear to be there. ย For the sake of expediency I added a module in VB to update the field using the ‘Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)’ and looping through the recordset.ย 

      Very strange. ย FYI I am using Access 2003 SP3.

      Thanks again.

      Ken

    • in reply to: “Function is not available . . . in query” #1198389

      Wendell,

      Thanks for the followup. ย Yes, there is VBA Code. ย  I have 7 references in the VBA project, and all appear to be there. ย For the sake of expediency I added a module in VB to update the field using the ‘Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)’ and looping through the recordset.ย 

      Very strange. ย FYI I am using Access 2003 SP3.

      Thanks again.

      Ken

    • in reply to: “Function is not available . . . in query” #1199477

      Wendell,

      Thanks for the followup. ย Yes, there is VBA Code. ย  I have 7 references in the VBA project, and all appear to be there. ย For the sake of expediency I added a module in VB to update the field using the ‘Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)’ and looping through the recordset.ย 

      Very strange. ย FYI I am using Access 2003 SP3.

      Thanks again.

      Ken

    • in reply to: “Function is not available . . . in query” #1199942

      Wendell,

      Thanks for the followup. ย Yes, there is VBA Code. ย  I have 7 references in the VBA project, and all appear to be there. ย For the sake of expediency I added a module in VB to update the field using the ‘Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)’ and looping through the recordset.ย 

      Very strange. ย FYI I am using Access 2003 SP3.

      Thanks again.

      Ken

    • in reply to: “Function is not available . . . in query” #1200698

      Wendell,

      Thanks for the followup. ย Yes, there is VBA Code. ย  I have 7 references in the VBA project, and all appear to be there. ย For the sake of expediency I added a module in VB to update the field using the ‘Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)’ and looping through the recordset.ย 

      Very strange. ย FYI I am using Access 2003 SP3.

      Thanks again.

      Ken

    • in reply to: “Function is not available . . . in query” #1202357

      For some reason I get the following message when trying to run a query with “SSN: Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)” as the Field to append to a table:

      “Function is not available in expressions in query expression ‘SSN: Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)’.”

      Any ideas what would cause this?

      Thanks,

      Ken

    • in reply to: “Function is not available . . . in query” #1203161

      For some reason I get the following message when trying to run a query with “SSN: Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)” as the Field to append to a table:

      “Function is not available in expressions in query expression ‘SSN: Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)’.”

      Any ideas what would cause this?

      Thanks,

      Ken

    • in reply to: “Function is not available . . . in query” #1204069

      For some reason I get the following message when trying to run a query with “SSN: Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)” as the Field to append to a table:

      “Function is not available in expressions in query expression ‘SSN: Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)’.”

      Any ideas what would cause this?

      Thanks,

      Ken

    • in reply to: “Function is not available . . . in query” #1199361

      For some reason I get the following message when trying to run a query with “SSN: Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)” as the Field to append to a table:

      “Function is not available in expressions in query expression ‘SSN: Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)’.”

      Any ideas what would cause this?

      Thanks,

      Ken

    • in reply to: “Function is not available . . . in query” #1199911

      For some reason I get the following message when trying to run a query with “SSN: Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)” as the Field to append to a table:

      “Function is not available in expressions in query expression ‘SSN: Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)’.”

      Any ideas what would cause this?

      Thanks,

      Ken

    • in reply to: “Function is not available . . . in query” #1200667

      For some reason I get the following message when trying to run a query with “SSN: Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)” as the Field to append to a table:

      “Function is not available in expressions in query expression ‘SSN: Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)’.”

      Any ideas what would cause this?

      Thanks,

      Ken

    • in reply to: “Function is not available . . . in query” #1201544

      For some reason I get the following message when trying to run a query with “SSN: Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)” as the Field to append to a table:

      “Function is not available in expressions in query expression ‘SSN: Left([Field4],3) & Mid([Field4],5,2) & Right([Field4],4)’.”

      Any ideas what would cause this?

      Thanks,

      Ken

    • in reply to: Parsing string (from the right) #1197357

      Awesome. ย Just another function (InStrRev) that I was not aware of.

      THANKS! ! !ย 

    • in reply to: Parsing string (from the right) #1197295

      This worked.

      Dim i As Integer

      For i = 1 To Len(FileName)
      [indent]ย ย ย ย If Left(Right(FileName, i), 1) = “” Then
      [/indent][indent][indent]ย ย ย ย ย ย ย ย strFilenameonly = Right(FileName, i – 1)

      ย  ย  ย  ย  i = Len(FileName)

      [/indent][/indent][indent]ย ย ย ย End If
      [/indent]Next i

      Thanks

    • in reply to: Set Focus to specific tab on a Tab Control #1182643

      > Where do you find documentation for things like that?

      In the Access VBA help.

      > I am trying to actually get the tab itself to have the focus and not the first field on the tab. Is that possible?

      Don’t think so.

      Hans,

      I tried setting the focus to a control on the form header, then Me.TabCtl0.Value = 3. Voila’, I get the results I want. I don’t know why, but it works.

      THANK YOU for putting me on the right path.

      Ken

    Viewing 15 replies - 16 through 30 (of 432 total)