RE: WritePro expression undefined

2018-12-23 Thread David Ringsmuth via 4D_Tech
Tim! We have great support from 4D! (Erick) This is an effective 4D tech support work-around to the problem of “Undefined”. Here “WParea” is a 4D Write Pro object. After running this method on our converted 4D Write to 4D Write Pro documents, none of the embedded statements return

Re: Pasting Spreadsheet Data into 4D Records

2018-12-23 Thread Pat Bensky via 4D_Tech
You're going to have to either save it as a text file (csv or tab-delimited) and then parse it, or use a plugin (such as Pluggers' XL Plugin) to read the spreadsheet directly. Pat On Mon, 24 Dec 2018 at 00:48, Alan Tilson via 4D_Tech <4d_tech@lists.4d.com> wrote: > Greetings everyone, > > Is

Applying attributes to a WritePro table cell

2018-12-23 Thread Pat Bensky via 4D_Tech
I want to insert text and apply formatting to individual cells in a WP table. Here's my test code: $WPRange:=WP Create range(wpTablePreview;wk start text;wk end text) $WPTable:=WP Insert table($WPRange;wk replace;wk include in range;2;1) $cell:=WP Table get cells($WPTable;1;1) // column

Pasting Spreadsheet Data into 4D Records

2018-12-23 Thread Alan Tilson via 4D_Tech
Greetings everyone, Is there a way to copy from a spreadsheet like data source and to paste directly into 4d while parsing it into table(s) and fields? I'm using v17 if that matters. I thought about saving the data into a text file and then importing the text file, but there seem to be