Field name derived from a string value returns a Run-time error 2465.

A

ab

I have two labels on a form and want to populate them during the run
time of my form. The name of the labels are "1" the other is called
"2" (without the quotes of course). Field 1 runs OK but two returns a
run-time error 2465.
Of course, the real form is much bigger. A lot of fields called 1
through 31 are populated from within a loop. To simplify my question I
down sized this post to two label fields.

Any one know how to solve the problem with label "2"? Any help or hint
is appreciated.


' This works OK
Me![1].Caption = "abc"

' This return a Run-time error '2465': Can't find field 'x'
Dim x As String
x = "2"
Me![x].Caption = "def"
 
A

ab

Works! Thanks a bunch!

Cheers,
Ab


Try  Me.Controls(x).Caption = "def"


I have two labels on a form and want to populate them during the run
time of my form. The name of the labels are "1" the other is called
"2" (without the quotes of course). Field 1 runs OK but two returns a
run-time error 2465.
Of course, the real form is much bigger. A lot of fields called 1
through 31 are populated from within a loop. To simplify my question I
down sized this post to two label fields.
Any one know how to solve the problem with label "2"? Any help or hint
is appreciated.
   ' This works OK
   Me![1].Caption = "abc"
   ' This return a Run-time error '2465': Can't find field 'x'
   Dim x As String
   x = "2"
   Me![x].Caption = "def"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top