I know rtf2html, the problem is it works with file (infile outfile). And I need
one that works
with strings as params.
Also it must work on windows.
--- Damien Gerard <[EMAIL PROTECTED]> wrote:
>
> Le May 12, 2008 à 8:34 PM, Leonardo M. Ramé a écrit :
>
> > Hi, does anyone knows a good Rtf
Le May 12, 2008 à 8:34 PM, Leonardo M. Ramé a écrit :
Hi, does anyone knows a good Rtf To HTML converter for FPC/Delphi?
I need one that accept strings/streams, not files.
Under OS X (via MacPorts):
sudo port install rtf2html
Under Linux (Gentoo):
emerge -av app-text/rtf2html
I suppose
Hi, does anyone knows a good Rtf To HTML converter for FPC/Delphi?
I need one that accept strings/streams, not files.
Leonardo M. Ramé
http://leonardorame.blogspot.com
Be a better friend, newshound, an
[EMAIL PROTECTED] wrote:
Joao Morais wrote:
s := 'hello world';
vsound.speak(s);
speaks using a literal but says randomic words (sometimes says
nothing) using a variable. Is there something that I am missing?
You should use a variable of type WideString:
VAR
S: WideString;
And all
Marco van de Voort wrote:
{$mode objfpc}{$H+}
uses
comobj;
var
vsound: olevariant;
s: string;
begin
vsound := createoleobject('SAPI.SpVoice');
writeln('playing using literal');
vsound.speak('hello world');
writeln('ok (press enter)');
readln;
writeln('now playing using
>
> {$mode objfpc}{$H+}
> uses
>comobj;
> var
>vsound: olevariant;
>s: string;
> begin
>vsound := createoleobject('SAPI.SpVoice');
>writeln('playing using literal');
>vsound.speak('hello world');
>writeln('ok (press enter)');
>readln;
>writeln('now playing using
On Mon, May 12, 2008 06:13, John Youngquist wrote:
> Jonas Maebe wrote:
>> On 10 May 2008, at 22:30, John Youngquist wrote:
>>> Jonas Maebe wrote:
On 10 May 2008, at 21:34, John Youngquist wrote:
> I am a regular user of FPC and find it is a great system. I ported
> a 10k line app
Joao Morais wrote:
s := 'hello world';
vsound.speak(s);
speaks using a literal but says randomic words (sometimes says nothing)
using a variable. Is there something that I am missing?
You should use a variable of type WideString:
VAR
S: WideString;
And all will be good