Re: [fpc-pascal] Can not set voice property of SpVoice

2016-08-23 Thread Michael Van Canneyt



On Tue, 23 Aug 2016, Toru Takubo wrote:


Hello,

I am testing a text to speech program working on Windows SAPI, and I
encountered a problem that I can not set the Voice property because
"member not found".

Below is the code which describe the problem. It is originally from
the freepascal wiki (http://wiki.freepascal.org/SAPI) and slightly
modified. Setting the voice property in this code is meaningless,
I know. It is just to reproduce the problem.

The SpVoice.Speak method itself works fine. I am working with fpc
3.0.0 on Windows 7 64bit. Any advice would be appreciated.

Regards,

Toru

___
program TestSAPI;

uses
SysUtils, comobj;
var
SavedCW: Word;
SpVoice: Variant;
Token: Variant;
begin
SpVoice := CreateOleObject('SAPI.SpVoice');
// Change FPU interrupt mask to avoid SIGFPE exceptions
SavedCW := Get8087CW;
try
  Set8087CW(SavedCW or $4);

  Token := SpVoice.Voice; //I can get a voice token.
  Writeln(Token.GetDescription); //The token actually works.

  try
SpVoice.Voice := Token; //"member not found" exception here. I can't set  
it.


Did you try

  spVoice.SetVoice(Token);

?

Michael.
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] Can not set voice property of SpVoice

2016-08-23 Thread Toru Takubo



On 2016/08/23 16:22, Michael Van Canneyt wrote:



On Tue, 23 Aug 2016, Toru Takubo wrote:


Hello,

I am testing a text to speech program working on Windows SAPI, and I
encountered a problem that I can not set the Voice property because
"member not found".

Below is the code which describe the problem. It is originally from
the freepascal wiki (http://wiki.freepascal.org/SAPI) and slightly
modified. Setting the voice property in this code is meaningless,
I know. It is just to reproduce the problem.

The SpVoice.Speak method itself works fine. I am working with fpc
3.0.0 on Windows 7 64bit. Any advice would be appreciated.

Regards,

Toru

___
program TestSAPI;

uses
SysUtils, comobj;
var
SavedCW: Word;
SpVoice: Variant;
Token: Variant;
begin
SpVoice := CreateOleObject('SAPI.SpVoice');
// Change FPU interrupt mask to avoid SIGFPE exceptions
SavedCW := Get8087CW;
try
  Set8087CW(SavedCW or $4);

  Token := SpVoice.Voice; //I can get a voice token.
  Writeln(Token.GetDescription); //The token actually works.

  try
SpVoice.Voice := Token; //"member not found" exception here. I can't set  
it.


Did you try

  spVoice.SetVoice(Token);



I got another exception.

"Method 'SetVoice' is not supported by automation object"

Regards,
Toru






___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] Can not set voice property of SpVoice

2016-08-23 Thread Michael Van Canneyt



On Tue, 23 Aug 2016, Toru Takubo wrote:




On 2016/08/23 16:22, Michael Van Canneyt wrote:



On Tue, 23 Aug 2016, Toru Takubo wrote:


Hello,

I am testing a text to speech program working on Windows SAPI, and I
encountered a problem that I can not set the Voice property because
"member not found".

Below is the code which describe the problem. It is originally from
the freepascal wiki (http://wiki.freepascal.org/SAPI) and slightly
modified. Setting the voice property in this code is meaningless,
I know. It is just to reproduce the problem.

The SpVoice.Speak method itself works fine. I am working with fpc
3.0.0 on Windows 7 64bit. Any advice would be appreciated.

Regards,

Toru

___
program TestSAPI;

uses
SysUtils, comobj;
var
SavedCW: Word;
SpVoice: Variant;
Token: Variant;
begin
SpVoice := CreateOleObject('SAPI.SpVoice');
// Change FPU interrupt mask to avoid SIGFPE exceptions
SavedCW := Get8087CW;
try
  Set8087CW(SavedCW or $4);

  Token := SpVoice.Voice; //I can get a voice token.
  Writeln(Token.GetDescription); //The token actually works.

  try
SpVoice.Voice := Token; //"member not found" exception here. I can't 
set  it.


Did you try

  spVoice.SetVoice(Token);



I got another exception.

"Method 'SetVoice' is not supported by automation object"


Strange, because it is listed in the SAPI reference.

This is probably why you cannot set it: the property seems to be read-only.

Michael.
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] Can not set voice property of SpVoice

2016-08-23 Thread Toru Takubo



On 2016/08/23 16:38, Michael Van Canneyt wrote:



On Tue, 23 Aug 2016, Toru Takubo wrote:




On 2016/08/23 16:22, Michael Van Canneyt wrote:



On Tue, 23 Aug 2016, Toru Takubo wrote:


Hello,

I am testing a text to speech program working on Windows SAPI, and I
encountered a problem that I can not set the Voice property because
"member not found".

Below is the code which describe the problem. It is originally from
the freepascal wiki (http://wiki.freepascal.org/SAPI) and slightly
modified. Setting the voice property in this code is meaningless,
I know. It is just to reproduce the problem.

The SpVoice.Speak method itself works fine. I am working with fpc
3.0.0 on Windows 7 64bit. Any advice would be appreciated.

Regards,

Toru

___
program TestSAPI;

uses
SysUtils, comobj;
var
SavedCW: Word;
SpVoice: Variant;
Token: Variant;
begin
SpVoice := CreateOleObject('SAPI.SpVoice');
// Change FPU interrupt mask to avoid SIGFPE exceptions
SavedCW := Get8087CW;
try
  Set8087CW(SavedCW or $4);

  Token := SpVoice.Voice; //I can get a voice token.
  Writeln(Token.GetDescription); //The token actually works.

  try
SpVoice.Voice := Token; //"member not found" exception here. I can't set  
it.


Did you try

  spVoice.SetVoice(Token);



I got another exception.

"Method 'SetVoice' is not supported by automation object"


Strange, because it is listed in the SAPI reference.

This is probably why you cannot set it: the property seems to be read-only.



I wrote a JScript (saved as tts.js) and it worked fine.
___
var SpVoice = WScript.CreateObject("SAPI.SpVoice");

var Token = SpVoice.Voice;

WScript.Echo(Token.GetDescription());

SpVoice.Voice = Token;

SpVoice.Speak("hi");
___

I could even change voice with additional code.
Why my pascal code does not work as jscript does?

Regards,
Toru






___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


[fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread Maciej Izak
Hi,

finally we have simple way to test new syntax to improve FPC quality /
$MODE DELPHI without spending $ on Delphi :)

Probably limited time offer:

https://www.embarcadero.com/products/delphi/starter/promotional-download

-- 
Best regards,
Maciej Izak
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread code dz
thanks for the link
downloading 

2016-08-23 10:43 UTC+01:00, Maciej Izak :
> Hi,
>
> finally we have simple way to test new syntax to improve FPC quality /
> $MODE DELPHI without spending $ on Delphi :)
>
> Probably limited time offer:
>
> https://www.embarcadero.com/products/delphi/starter/promotional-download
>
> --
> Best regards,
> Maciej Izak
>
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread Sandro Cumerlato
Downloaded, thank you very much for sharing!

Sandro Cumerlato


On 23 August 2016 at 11:43, Maciej Izak  wrote:
> Hi,
>
> finally we have simple way to test new syntax to improve FPC quality / $MODE
> DELPHI without spending $ on Delphi :)
>
> Probably limited time offer:
>
> https://www.embarcadero.com/products/delphi/starter/promotional-download
>
> --
> Best regards,
> Maciej Izak
>
> ___
> fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
> http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread Felipe Monteiro de Carvalho
"Offer valid from August 22nd 2016 to September 9th 2016"

So people interested should be aware of this time limit.

-- 
Felipe Monteiro de Carvalho
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread Marcos Douglas
On Tue, Aug 23, 2016 at 6:43 AM, Maciej Izak  wrote:

> Hi,
>
> finally we have simple way to test new syntax to improve FPC quality /
> $MODE DELPHI without spending $ on Delphi :)
>
> Probably limited time offer:
>
> https://www.embarcadero.com/products/delphi/starter/promotional-download
>

Thank you! I didn't know that.

Best regards,
Marcos Douglas
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread Stephen Chrzanowski
Nice.  Thanks.  Pretty much gave up on Delphi due to costs.  For a single
developer who doesn't make money off his programs, this'll be nice.

Side note: So, as *none* of you know, I recently moved from "Tech Support"
to another position within the company I work for.  I look at what Berlin
offers, one of their pics on a cell phone is "Tech Support Meeting".  Sent
a shiver down my spine.

On Tue, Aug 23, 2016 at 8:23 AM, Marcos Douglas  wrote:

>
> On Tue, Aug 23, 2016 at 6:43 AM, Maciej Izak  wrote:
>
>> Hi,
>>
>> finally we have simple way to test new syntax to improve FPC quality /
>> $MODE DELPHI without spending $ on Delphi :)
>>
>> Probably limited time offer:
>>
>> https://www.embarcadero.com/products/delphi/starter/promotional-download
>>
>
> Thank you! I didn't know that.
>
> Best regards,
> Marcos Douglas
>
> ___
> fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
> http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
>
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread silvioprog
On Tue, Aug 23, 2016 at 6:43 AM, Maciej Izak  wrote:

>

> Hi,
>
> finally we have simple way to test new syntax to improve FPC quality /
$MODE DELPHI without spending $ on Delphi :)
>
> Probably limited time offer:
>
> https://www.embarcadero.com/products/delphi/starter/promotional-download


Great news.

Thank you! (y)

-- 
Silvio Clécio
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread ezrashumla
what about windows 7


 

 

 

-Original Message-
From: silvioprog 
To: FPC-Pascal users discussions 
Sent: Tue, Aug 23, 2016 4:59 pm
Subject: Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition



On Tue, Aug 23, 2016 at 6:43 AM, Maciej Izak  wrote:


>


> Hi,
>
> finally we have simple way to test new syntax to improve FPC quality / $MODE 
> DELPHI without spending $ on Delphi :)
>
> Probably limited time offer:
>
> https://www.embarcadero.com/products/delphi/starter/promotional-download

Great news.
Thank you! (y)
-- 
Silvio Clécio

___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread Dennis



Maciej Izak wrote:

Hi,

finally we have simple way to test new syntax to improve FPC quality / 
$MODE DELPHI without spending $ on Delphi :)


Probably limited time offer:

https://www.embarcadero.com/products/delphi/starter/promotional-download

--
Best regards,
Maciej Izak


Thanks a lot.
I wonder if there is any catch.
Anyway, I gave up Delphi after Delphi 5 and stick to FPC since then.  
However, from time to time, I miss its lightning fast compiler and good 
debugger.


Dennis
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread wkitty42

On 08/23/2016 11:40 AM, Dennis wrote:

Thanks a lot.
I wonder if there is any catch.


you mean like having to create an account, having to provide a phone number or 
having to run it in a winwhatever environment? ;)



Anyway, I gave up Delphi after Delphi 5 and stick to FPC since then.  However,
from time to time, I miss its lightning fast compiler and good debugger.


i definitely miss that from TP/BP...

--
 NOTE: No off-list assistance is given without prior approval.
   *Please keep mailing list traffic on the list* unless
   private contact is specifically requested and granted.
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread Gabor Boros

2016. 08. 23. 17:40 keltezéssel, Dennis írta:


I miss its lightning fast compiler and good debugger.


+1

Gabor
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread Dennis



wkitt...@windstream.net wrote:

On 08/23/2016 11:40 AM, Dennis wrote:

Thanks a lot.
I wonder if there is any catch.


you mean like having to create an account, having to provide a phone 
number or having to run it in a winwhatever environment? ;)

\

it says:
"a limited commercial use license"

I wonder that means.

To me, the company has a very bad public image after Delphi 7, so I get 
paranoid.


Dennis
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread Ralf Quint

On 8/23/2016 9:49 AM, Dennis wrote:



wkitt...@windstream.net wrote:

On 08/23/2016 11:40 AM, Dennis wrote:

Thanks a lot.
I wonder if there is any catch.


you mean like having to create an account, having to provide a phone 
number or having to run it in a winwhatever environment? ;)

\

it says:
"a limited commercial use license"

I wonder that means. 

Just read the license, simple as that...

As a very rough summary, you can't use the Starter Edition if you are 
making more than $1000 a year from the software created with it...


Ralf

---
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus

___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] Doubt related to the issue #30498

2016-08-23 Thread silvioprog
On Tue, Aug 23, 2016 at 2:57 AM, Sven Barth 
wrote:
[...]

> See here: http://bugs.freepascal.org/view.php?id=30503
>
> Regards,
> Sven
>
Thank you! :-)

I did:

...
{$IFDEF FPC}
var
  VPairs: TArray>;
{$ENDIF}
begin
...
{$IFDEF FPC}
  // issues #30503 and #30498
  SetLength(VPairs, 2);
  VPairs[0] := TPair.Create(TMyObject, 'my qualifier');
  VPairs[1] := TPair.Create(TMySerializable,
TMySerializable.QualifiedClassName);
  TClassRegistry.Register(VPairs);
{$ELSE}
  TClassRegistry.Register([TPair.Create(TMyObject, 'my
qualifier'),
TPair.Create(TMySerializable, TMySerializable.
QualifiedClassName)]);
{$ENDIF}
...

and now my test-case compiles fine.

--
Silvio Clécio
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread Jonas Maebe

On 23/08/16 19:14, Ralf Quint wrote:

As a very rough summary, you can't use the Starter Edition if you are
making more than $1000 a year from the software created with it...


And you can't use any edition to "develop an application that is 
directly competitive to the Product or to any other Embarcadero 
products" (https://www.embarcadero.com/products/rad-studio/rad-studio-eula )


So no FPC development with Delphi.


Jonas
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread Marco van de Voort
In our previous episode, Jonas Maebe said:
> And you can't use any edition to "develop an application that is 
> directly competitive to the Product or to any other Embarcadero 
> products" (https://www.embarcadero.com/products/rad-studio/rad-studio-eula )

Well, that is of course subject to interpretation, is a free product 
"competitive" ?
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread Jonas Maebe

On 23/08/16 20:02, Marco van de Voort wrote:

In our previous episode, Jonas Maebe said:

> And you can't use any edition to "develop an application that is
> directly competitive to the Product or to any other Embarcadero
> products" (https://www.embarcadero.com/products/rad-studio/rad-studio-eula )

Well, that is of course subject to interpretation, is a free product 
"competitive" ?


I can't think of a reason why it would not be.


Jonas
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread geneb

On Tue, 23 Aug 2016, Jonas Maebe wrote:


On 23/08/16 19:14, Ralf Quint wrote:

As a very rough summary, you can't use the Starter Edition if you are
making more than $1000 a year from the software created with it...


And you can't use any edition to "develop an application that is directly 
competitive to the Product or to any other Embarcadero products" 
(https://www.embarcadero.com/products/rad-studio/rad-studio-eula )


EULAs have the same value as toilet paper and should be used for the same 
purpose.  I for one, will use Delphi for whatever I like, and if 
Embarcadero has a problem with that, they're invited to kiss my ass. :)


g.

--
Proud owner of F-15C 80-0007
http://www.f15sim.com - The only one of its kind.
http://www.diy-cockpits.org/coll - Go Collimated or Go Home.
Some people collect things for a hobby.  Geeks collect hobbies.

ScarletDME - The red hot Data Management Environment
A Multi-Value database for the masses, not the classes.
http://scarlet.deltasoft.com - Get it _today_!
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread Ralf Quint

On 8/23/2016 12:19 PM, geneb wrote:

On Tue, 23 Aug 2016, Jonas Maebe wrote:


On 23/08/16 19:14, Ralf Quint wrote:

As a very rough summary, you can't use the Starter Edition if you are
making more than $1000 a year from the software created with it...


And you can't use any edition to "develop an application that is 
directly competitive to the Product or to any other Embarcadero 
products" 
(https://www.embarcadero.com/products/rad-studio/rad-studio-eula )


EULAs have the same value as toilet paper and should be used for the 
same purpose.  I for one, will use Delphi for whatever I like, and if 
Embarcadero has a problem with that, they're invited to kiss my ass. :) 

Hope you got a good lawyer...

Ralf

---
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus

___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread Graeme Geldenhuys
On 2016-08-23 16:40, Dennis wrote:
> I miss its lightning fast compiler

FPC is fast enough for me - especially if you compare it to other
compilers like for C, C++ etc.


> and good debugger.

Now that I definitely miss!! This is by far the weakest point of FPC.


Regards,
  Graeme

___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread Maciej Izak
2016-08-23 19:42 GMT+02:00 Jonas Maebe :

> And you can't use any edition to "develop an application that is directly
> competitive to the Product or to any other Embarcadero products"


AFAIK they can write any nonsense in the license agreement and nobody can
forbid them to do so ;)... You can't dictate people what they can not do
with compiler. That means Delphi can't be used to develop any OS project
(Zeos, mORMot).

-- 
Best regards,
Maciej Izak
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread Ralf Quint

On 8/23/2016 1:46 PM, Maciej Izak wrote:
2016-08-23 19:42 GMT+02:00 Jonas Maebe >:


And you can't use any edition to "develop an application that is
directly competitive to the Product or to any other Embarcadero
products" 



AFAIK they can write any nonsense in the license agreement and nobody 
can forbid them to do so ;)... You can't dictate people what they can 
not do with compiler. That means Delphi can't be used to develop any 
OS project (Zeos, mORMot).
No, it means you can't use Delphi Starter Edition to develop another 
Object Pascal or C++ compiler, that are competing products...


Ralf


---
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread Maciej Izak
2016-08-23 22:54 GMT+02:00 Ralf Quint :

> No, it means you can't use Delphi Starter Edition to develop another
> Object Pascal or C++ compiler, that are competing products...


that is part of license for all Delphi versions. It affects also many other
open source project not only compilers. They have FireDac and other stuff...

-- 
Best regards,
Maciej Izak
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread Stephen Chrzanowski
FULLY understanding that this forum is for FPC and not Delphi/Embarcadero,
has anyone installed Berlin, gone into Tools> Options> Environment Options>
Form Designer and see NO OPTIONS show up?  Stuff like the grid size, the
toggling the Embeded Designer, etc should be here but I get no options.
That particular form option screen is completely blank, and I'm not sure
why.
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread Ralf Quint

On 8/23/2016 6:19 PM, Stephen Chrzanowski wrote:
FULLY understanding that this forum is for FPC and not 
Delphi/Embarcadero, has anyone installed Berlin, gone into Tools> 
Options> Environment Options> Form Designer and see NO OPTIONS show 
up?  Stuff like the grid size, the toggling the Embeded Designer, etc 
should be here but I get no options. That particular form option 
screen is completely blank, and I'm not sure why.

Not sure why either, but that page is blank for me too...

Ralf

---
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus

___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] Free Delphi 10.1 Berlin Starter Edition

2016-08-23 Thread Maciej Izak
2016-08-23 20:02 GMT+02:00 Marco van de Voort :

> Well, that is of course subject to interpretation, is a free product
> "competitive" ?


Topic on G+ to get more info... :

https://plus.google.com/115782878581272923715/posts/AUHPRTJyF9b


-- 
Best regards,
Maciej Izak
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal