I still see "Demo Version"

F-IN-BOX for Delphi / Builder C++ / VCL
SamJokO
Posts: 6
Joined: Wed Aug 22, 2007 8:54 am

I still see "Demo Version"

Postby SamJokO » Wed Aug 22, 2007 8:58 am

i got 'Single developer License' - 2006-09-22

i using in delphi6 and Flashcontrol...SetContext('....');

but, i still see "Demo Version" flag.

what am i doing?

Softanics
Site Admin
Posts: 1402
Joined: Sat Sep 18, 2004 3:03 am
Location: Russia, St. Petersburg
Contact:

Postby Softanics » Wed Aug 22, 2007 9:04 am

Thank you for your question.

You should place SetContext in the initialization section. Where do you place SetContext?
Best regards, Artem A. Razin,
F-IN-BOX support
Ask your question here: http://www.f-in-box.com/support.html

SamJokO
Posts: 6
Joined: Wed Aug 22, 2007 8:54 am

Postby SamJokO » Wed Aug 22, 2007 9:24 am

i create fMain form.

and i placed in FormCreate procedure.

sample app is running ok.

what's different?

Softanics
Site Admin
Posts: 1402
Joined: Sat Sep 18, 2004 3:03 am
Location: Russia, St. Petersburg
Contact:

Postby Softanics » Wed Aug 22, 2007 10:20 am

SamJokO wrote:i create fMain form.

and i placed in FormCreate procedure.

sample app is running ok.

what's different?


The difference is that when you call SetContext in FormCreate, flashplayercontrol is already created. That's why you should SetContext before creating any instances of TFlashPlayerControl or TTransparentFlashPlayerControl. Place SetContext in the initialization section in dpr file:

Code: Select all


begin
  Application.Initialize;

  SetContext(...);

  Application.CreateForm(...);
  Application.Run;
Best regards, Artem A. Razin,

F-IN-BOX support

Ask your question here: http://www.f-in-box.com/support.html

SamJokO
Posts: 6
Joined: Wed Aug 22, 2007 8:54 am

it still not working...

Postby SamJokO » Thu Aug 23, 2007 12:39 am

i tried like this...

[code]

uses
Forms,
FlashPlayerControl,
...
...

begin
Application.Initialize;
FlashPlayerControl.SetContext('.....');
Application.CreateForm(....);
...
[/code]

but it still visible 'Demo Version'

and, later i tried like this

[code]
private
Flash : TFlashPlayerControl;
...
...

Procedure TForm1.FormCreate(Sender: TObject);
begin
FlashPlayerControl.SetContext(.......);
Flash := TFlashPlayerControl.Create(Self);
Flash.Parent := Self;
Flash.Visible := true;
end;
[/code]

but, it's not working.

i download v3.1.2 without_sources

it's something change?? version 3.01 is working very well.

Softanics
Site Admin
Posts: 1402
Joined: Sat Sep 18, 2004 3:03 am
Location: Russia, St. Petersburg
Contact:

Postby Softanics » Thu Aug 23, 2007 8:27 am

It seems, it's our mistake. We will resolve the issue in the nearest time.
Best regards, Artem A. Razin,

F-IN-BOX support

Ask your question here: http://www.f-in-box.com/support.html

Softanics
Site Admin
Posts: 1402
Joined: Sat Sep 18, 2004 3:03 am
Location: Russia, St. Petersburg
Contact:

Postby Softanics » Thu Aug 23, 2007 8:28 am

The updated version will be available tomorrow. I'm sorry for the delaying.
Best regards, Artem A. Razin,

F-IN-BOX support

Ask your question here: http://www.f-in-box.com/support.html

Softanics
Site Admin
Posts: 1402
Joined: Sat Sep 18, 2004 3:03 am
Location: Russia, St. Petersburg
Contact:

Postby Softanics » Thu Aug 23, 2007 4:43 pm

We have found the problem... The update is almost ready.
Best regards, Artem A. Razin,

F-IN-BOX support

Ask your question here: http://www.f-in-box.com/support.html

Softanics
Site Admin
Posts: 1402
Joined: Sat Sep 18, 2004 3:03 am
Location: Russia, St. Petersburg
Contact:

Postby Softanics » Thu Aug 23, 2007 10:07 pm

Please download it and check again.

Thank you.
Best regards, Artem A. Razin,

F-IN-BOX support

Ask your question here: http://www.f-in-box.com/support.html

SamJokO
Posts: 6
Joined: Wed Aug 22, 2007 8:54 am

Postby SamJokO » Fri Aug 24, 2007 8:33 am

thx! it's working!


Return to “Delphi / Builder / VCL Edition”

Who is online

Users browsing this forum: No registered users and 5 guests

cron