User-defined property as textbox data source

  • Thread starter Thread starter Petr Danes
  • Start date Start date
P

Petr Danes

Is it possible to use a user-defined property DIRECTLY as the row source for
a text field on a form? Obviously it is possible to write a custom function
which retrieves such a property, but then it becomes a read-only field. I
want to change it as well. An unbound textbox with code behind works, but
that seems unnecessarily clumsy. None of the variations of syntax I have
tried have worked and I find no mention of such a usage in the archives.

Pete
 
Is it possible to use a user-defined property DIRECTLY as the row source for
a text field on a form? Obviously it is possible to write a custom function
which retrieves such a property, but then it becomes a read-only field. I
want to change it as well. An unbound textbox with code behind works, but
that seems unnecessarily clumsy. None of the variations of syntax I have
tried have worked and I find no mention of such a usage in the archives.

Pete

--
This e-mail address is fake, to keep spammers and their auto-harvesters out
of my hair. If you want to get in touch personally, I am 'pdanes' and I use
yahoo mail. But please use the newsgroup when possible, so that all may
benefit from the exchange of ideas.

The closest thing to this is to use a User-Defined Function in the
RowSource, example: = SomeFunction(Arg1,Arg2)
 
Back
Top