View Single Post
  #2  
Old May 17th, 2010, 01:12 PM posted to microsoft.public.access.forms
Jon Lewis[_3_]
external usenet poster
 
Posts: 40
Default Field name derived from a string value returns a Run-time error 2465.

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

Jon
"ab" wrote in message
...
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"