Could you be a little more specific on just what you want to do?
Are you concerned about quotation marks embedded in a string?
In that case, you can use the Replace function to replace them with a
blank string.
OTOH, if you're concerned that you see string values reported with quotation
marks around them, that's so you can tell where the string value begins and
ends. Those quotation marks aren't really part of the value.
> How do I remove the quotation marks from a string variable?
> Can it be done?
GolfGolf - 31 Jul 2005 20:54 GMT
I am trying to refer to a subform field from another form.
I am trying to set the time from a popup form
I have; varTime = "Forms![Form1]![Form2].Form![ChickInTime]"
in the popup from
When the popup closes i am trying to set varTime = anopther Variable
that is a specific time.
But it's not working
> Could you be a little more specific on just what you want to do?
> Are you concerned about quotation marks embedded in a string?
[quoted text clipped - 7 lines]
> > How do I remove the quotation marks from a string variable?
> > Can it be done?
John Vinson - 01 Aug 2005 00:16 GMT
>I am trying to refer to a subform field from another form.
>I am trying to set the time from a popup form
[quoted text clipped - 4 lines]
>that is a specific time.
>But it's not working
That should set varTime to the text string
Forms![Form1]![Form2].Form![ChickInTime]
since you're setting it to a literal text string.
Try removing the quote marks - does that cause problems? If so, what
problems?
John W. Vinson[MVP]