Re: [ADVANCED-DOTNET] Creating filling a textbox from a string... sort of

2007-04-19 Thread Marc Brooks
I have a string with the value of say "FirstName". I also have a string named FirstName... so they match. Then I have a TextBox with a tag of "FirstName". What I want to do is get the value of the FirstName string into the value of the textbox. Using my Dynamic library would make this fairly

Re: [ADVANCED-DOTNET] Creating filling a textbox from a string... sort of

2007-04-19 Thread Dave
ave. www.omniscienttrader.com www.omniscient.ca -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Jon Rothlander Sent: April 19, 2007 4:40 PM To: [email protected] Subject: Re: [ADVANCED-DOTNET] Creating filling a textbox from a

Re: [ADVANCED-DOTNET] Creating filling a textbox from a string... sort of

2007-04-19 Thread Jon Rothlander
EMAIL PROTECTED] On Behalf Of Bob Provencher Sent: Thursday, April 19, 2007 2:37 PM To: [email protected] Subject: Re: [ADVANCED-DOTNET] Creating filling a textbox from a string... sort of The second option probably wouldn't work the way you want because you'd have t

Re: [ADVANCED-DOTNET] Creating filling a textbox from a string... sort of

2007-04-19 Thread Bob Provencher
filling a textbox from a string... sort of I think what you're asking is impossible - sounds like reflection on variable names. Just use a Dictionary, make your array 2 dimensional or pass in an object with properties like FirstName... === This list is hosted by

Re: [ADVANCED-DOTNET] Creating filling a textbox from a string... sort of

2007-04-19 Thread brian zinn
Jon, I think what you're asking is impossible - sounds like reflection on variable names. Just use a Dictionary, make your array 2 dimensional or pass in an object with properties like FirstName... -- Brian On 4/19/07, Jon Rothlander <[EMAIL PROTECTED]> wrote: I have a string with the value

[ADVANCED-DOTNET] Creating filling a textbox from a string... sort of

2007-04-19 Thread Jon Rothlander
I have a string with the value of say "FirstName". I also have a string named FirstName... so they match. Then I have a TextBox with a tag of "FirstName". What I want to do is get the value of the FirstName string into the value of the textbox. That's kind of hard to follow. Here's the basic i