S
Secret Squirrel
I'm using the following code to pass data from one form to another but the
data I'm trying to pass has other characters besides letters in it. What
string should I use instead of the Chr(34)?
If Len(Me.OpenArgs) > 0 Then
Me![RMA#].DefaultValue = Chr(34) & Me.OpenArgs & Chr(34)
Me![Customer].DefaultValue = Chr(34) & [Forms]![2005
Form]![Customer] & Chr(34)
Me![PO#].DefaultValue = Chr(34) & [Forms]![2005 Form]![Customer PO#]
& Chr(34)
data I'm trying to pass has other characters besides letters in it. What
string should I use instead of the Chr(34)?
If Len(Me.OpenArgs) > 0 Then
Me![RMA#].DefaultValue = Chr(34) & Me.OpenArgs & Chr(34)
Me![Customer].DefaultValue = Chr(34) & [Forms]![2005
Form]![Customer] & Chr(34)
Me![PO#].DefaultValue = Chr(34) & [Forms]![2005 Form]![Customer PO#]
& Chr(34)