Newbies Matthew R. Albert Posted January 11, 2007 Newbies Posted January 11, 2007 How do u get a regular text string (char[256] or bstring) from the dataVect type?
Adam Dempsey Posted January 22, 2007 Posted January 22, 2007 Here's some code I use. I'm fairly new to C++ and FilMaker plugins, so it's prob not the best way, but it works. sText will contain the text from the dataVect. char *sText=(char*)GlobalAlloc(GPTR, 255); const fmx::Text& param1 = dataVect.AtAsText(0); param1.GetBytes((char*)sText,255);
Recommended Posts
This topic is 6854 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