Re: Import from RTF

2017-10-09 Thread Keisuke Miyako via 4D_Tech
a simple converter:

https://github.com/miyako/4d-plugin-RTF2TEXT

> 2017/10/10 0:41、stardata.info via 4D_Tech <4d_tech@lists.4d.com> のメール:
> I use 4D V15 on windows and i need to import from an RTF file.
> Is possible to do using 4D?




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Import from RTF

2017-10-09 Thread Koen Van Hooreweghe via 4D_Tech
Hi Ferdinando,

Open it in 4D Write. 

HTH
Koen

> Op 9 okt. 2017, om 17:41 heeft stardata.info via 4D_Tech 
> <4d_tech@lists.4d.com> het volgende geschreven:
> 
> I use 4D V15 on windows and i need to import from an RTF file.
> 
> Is possible to do using 4D?

**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Import from RTF

2017-10-09 Thread stardata.info via 4D_Tech

Hi All,

I use 4D V15 on windows and i need to import from an RTF file.

Is possible to do using 4D?

Thanks
/Ferdinando/
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Import from RTF

2017-10-09 Thread stardata.info via 4D_Tech

Hi All,

I use 4D V15 on windows and i need to import from an RTF file.

Is possible to do using 4D?

Thanks
/Ferdinando/

Il 06/10/2017 17:48, 4d_tech-requ...@lists.4d.com ha scritto:

Send 4D_Tech mailing list submissions to
4d_tech@lists.4d.com

To subscribe or unsubscribe via the World Wide Web, visit
http://lists.4d.com/mailman/listinfo/4d_tech
or, via email, send a message with subject or body 'help' to
4d_tech-requ...@lists.4d.com

You can reach the person managing the list at
4d_tech-ow...@lists.4d.com

When replying, please edit your Subject line so it is more specific
than "Re: Contents of 4D_Tech digest..."


Today's Topics:

1. Re: Create multi array (Jeremy Roussak)
2. AW: Create multi array (Flury Olivier)
3. Re: Create multi array (Spencer Hinsdale)
4. Re: Create multi array (Arnaud de Montard)
5. Re: [offish]Volume of mail (Arnaud de Montard)
6. Re: [offish]Volume of mail (Peter Jakobsson)
7. Re: [offish]Volume of mail (Jim Medlen)
8. Re: How do workers die? (Julio Carneiro)
9. What happened to 4D documentation in R releases? (Richard Wright)
   10. RE: What happened to 4D documentation in R releases?
   (Michael McCall)


--

Message: 1
Date: Fri, 06 Oct 2017 10:16:04 +0100
From: Jeremy Roussak 
To: 4D iNug Technical <4d_tech@lists.4d.com>
Subject: Re: Create multi array
Message-ID: <90d57a97-1192-4856-821f-7685fe7da...@mac.com>
Content-Type: text/plain;   charset=us-ascii

EXECUTE FORMULA should do the trick.

For ($i;1;17)
$s:="ARRAY REAL(aANA_"+String($i)+";0)"
EXECUTE FORMULA($s)
End for

Jeremy

Jeremy Roussak
j...@mac.com




On 6 Oct 2017, at 09:57, stardata.info via 4D_Tech <4d_tech@lists.4d.com> wrote:

Hi All,

I need to create 20 arrays that have a similar name.
I can do this using the pointers?
I try with this code, but in compiled mode not work.

For ($I;1;17)
$vPoint:=Get pointer("aAna_"+String($I))
ARRAY REAL("aAna_"+String($I);0)
End for

Have suggestions?

Thanks
Ferdinando


--

Message: 2
Date: Fri, 6 Oct 2017 12:21:55 +0200
From: "Flury Olivier" 
To: "'4D iNug Technical'" <4d_tech@lists.4d.com>
Subject: AW: Create multi array
Message-ID: <008401d33e8c$ef59f530$ce0ddf90$@vtxnet.ch>
Content-Type: text/plain;   charset="utf-8"

I would not do this unless there is no other solution for the problem I want to 
solve.

Better solutions:

- Pre-declare a number of arrays (Array text(MyArray_001 etc.) and use them by get 
pointer (Get pointer ("MyArray_"+string($lCounter))
- On interface level you can address most elements without declaring a process 
variable, e.g. Listbox columns.

If you do an EXECUTE FORMULA check this:

http://doc.4d.com/4Dv16/4D/16.2/Using-tokens-in-formulas.300-3432926.en.html

-Ursprüngliche Nachricht-
Von: 4D_Tech [mailto:4d_tech-boun...@lists.4d.com] Im Auftrag von Jeremy 
Roussak via 4D_Tech
Gesendet: Freitag, 6. Oktober 2017 11:16
An: 4D iNug Technical <4d_tech@lists.4d.com>
Cc: Jeremy Roussak 
Betreff: Re: Create multi array

EXECUTE FORMULA should do the trick.

For ($i;1;17)
$s:="ARRAY REAL(aANA_"+String($i)+";0)"
EXECUTE FORMULA($s)
End for

Jeremy

Jeremy Roussak
j...@mac.com




On 6 Oct 2017, at 09:57, stardata.info via 4D_Tech <4d_tech@lists.4d.com> wrote:

Hi All,

I need to create 20 arrays that have a similar name.
I can do this using the pointers?
I try with this code, but in compiled mode not work.

For ($I;1;17)
$vPoint:=Get pointer("aAna_"+String($I)) ARRAY
REAL("aAna_"+String($I);0) End for

Have suggestions?

Thanks
Ferdinando



--

Message: 3
Date: Fri, 6 Oct 2017 03:43:56 -0700
From: Spencer Hinsdale 
To: 4D iNug Technical <4d_tech@lists.4d.com>
Subject: Re: Create multi array
Message-ID: <22d55f41-1f21-48a3-86f5-980de5ea9...@bigsoftware.com>
Content-Type: text/plain;   charset=us-ascii


1) Use a Two Dimensional Array:
http://doc.4d.com/4Dv16/4D/16.2/Two-dimensional-Arrays.300-3433911.en.html

2) Decide if your arrays are Rows or Columns.  The Docs call them Rows.  If you decide 
your arrays are Columns, then you must REMEMBER the Docs need "translation" 
anytime you refer to them.

3) Decide if you will use array zero.  If you decide to use array zero, then 
you must REMEMBER to Clear it yourself.


That's it.


You will want to fill your arrays, so you may want to pass them to another 
method, or perhaps another process, or even another computer (method with 
execute-on-server attribute).  You will want to declare them.  You can declare 
20 arrays in 20 lines.  Or, see #1.

You may want to display your arrays.  If so, you will use a List Box.  And your 
arrays will be Columns.  See #2.

And you may want somewhere to put additional info, that goes with the data when 
you pass the arrays, and stays synchronized when