Tombstone0 Posted July 10, 2001 Posted July 10, 2001 Just wondering if there's anyway switch character or any other way to get double quotes into a text calculation. Thanks
JPaul Posted July 11, 2001 Posted July 11, 2001 ... and i think it will not work .... In the programming languages (and i really think in FM also) it works as follows: to insert in the variable Var the text Robert you MUST assign: Var := "Robert" to insert in the variable Var the text "Robert" you MUST assign: Var := char(34) & "Robert" & char(34) - where char(34) represents the " sign Then, to accomplish the job, assign to a global text field (we call it g_Text) the " sign and use it in your calculation: YourField=WhatYouNeed & g_Text & "Robert" & g_Text. I really think this is the proper way. Greetings from Holy Lands. [ July 11, 2001: Message edited by: JPaul ]
Recommended Posts
This topic is 8642 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now