January 11, 200718 yr Newbies How do u get a regular text string (char[256] or bstring) from the dataVect type?
January 22, 200718 yr 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);
Create an account or sign in to comment