1

(1 replies, posted in General)

Hi,

I have a minor update license which I purchased at version 4.0. Which means I should be able to use this license in all versions numbered 4.x.
But when I download from your website I can only get version 5.0 now. When I go into your public download folder (myvisualdatabase.com/download/) the only version useable for me is 4.0b.

I would like to be able to download and use the newest version for my license!

It's kindof annoying and I need it pretty quickly too.

If I create a project in 5.0 will that be backwards compatible with 4.x?

Please help!

2

(4 replies, posted in Script)

Sorry, I've been busy for a while!

Sending the project is a bit difficult (its 3 projects Frankensteined into 1 and they are dependant on each other through root folder. Also the project total is now 2,5GB)

I've tried alot of ways to do it but I think I can explain with a bit of script:
---------------------------------------------------------------------------------------------------

procedure Form1_in001_OnClick (Sender: TObject);
begin
      Form1.ShowRecord('Inkoopstelling', 1);
end;

procedure Form1_in001_OnMouseLeave (Sender: TObject);
begin
      Picture := TPicture.Create();
      Picture.LoadFromFile('.\Inkoopstellingen\pics\wit.jpg');
      Form1.in001.Picture := Picture;
      Form1.lokatielabel.Text := 'Kies Lokatie';
      Form1.lokatielabel.Enabled := False;

end;

procedure Form1_in001_OnMouseEnter (Sender: TObject);
begin
      Picture := TPicture.Create();
      Picture.LoadFromFile('.\Inkoopstellingen\pics\rood.jpg');
      Form1.in001.Picture := Picture;
      Form1.lokatielabel.Text := 'IN001';
      Form1.lokatielabel.Enabled := True;
end;

--------------------------------------------------------------------------------------------------------------

As you can see the script is not very complicated or long. The problem is in this little bit of script there are 3 events for 1 object/image (click/mousenter/mouseleave)

This is the script for 'IN001'. I have to make IN001 to IN256 if you see what i mean.... so for the code above I have to click the event 3 times to have it recognize the script that corresponds with it. Then I have to do that with 256 objects/images.

3

(4 replies, posted in Script)

Oh, and also (I don't want to be rude here)

Your software doesn't have an Undo (ctrl-Z) function and it has caused some problems for me in the past so I would LOVE to see it in a next version!

4

(4 replies, posted in Script)

Hi all,

I am working on a project that does a few lines of code but for A LOT of slightly different records. To handle this i have events for 256 images (onclick/mouseEnter/mouseLeave).

I have written all the code. but now I am finding myself clicking in the events window on the left for EVERY event to recognise it in the code and then clicking back to the form to do it all again. This 3 times per image, times 256 for all images. Its killing my wrist.

PLEASE tell me there is a way to have the program recognise ALL events in the code that correspond with an object.

5

(2 replies, posted in Reports)

That worked perfectly! Thank you very very much!

6

(2 replies, posted in Reports)

Hi all,

I made a simple invoice program that generates a report as an invoice. Everything is working perfectly so far...

but!

The report has a header/company logo image on the top of the page. I have a really high quality (6000x1500) image of this in multiple formats. In the report designer it looks great, however, when I generate the report as a PDF the image quality is horrible and compressed. angled lines look jaggy and blocked. The logo looks great when the report is made as HTML or JPEG or any other file type.

So as a workaround i tried making a full page-sized image of the logo with whitespace below and insert it as background image. But when the report is generated as PDF the background image is not shown. When I generate the report as HTML or preview in fast-report it works as expected and the background image shows, in good quality. But I want the report as PDF, because of the easy emailing function of PDF viewers and the accesible format.

Can anyone help please?