Default Avatar

Si:K

Si:K

About

Username
Si:K
Joined
Visits
0
Last Active
Roles
Members

Comments

  • gpi wrote: » Try to set column width in cross' OnCalcWidth event Thanks for the reply but i dont hink it is as easy as that. Firstly, I am unsure of how i can link a dynamically created crossview with a pascal script event handler in code …
  • gordk wrote: » picture1.picture.loadfromfile(); Unfortunately this also does not work. From what i have read in the manual, Get('Logo') and are interchangeable. Is there a particular reason there are no output report pages? Why doesnt t…
  • I have a small sample project that shows my errors if you would like to see it. Basically the whole project consists of: public pic : String; procedure TForm1.Button1Click(Sender: TObject); begin if OpenDialog1.Execute then begin Image1.P…
  • gordk wrote: » that tells me you are doing something wrong in your application code so you will have to find it yourself. Ok, i will look in my application code, even though there is only 4 procedures on the form and they all seem to be ri…
  • gordk wrote: » i expect your problem may be here TfrxPictureView(Sender).FileLink := FclientLogo; What is fclientlogo, a property you are trying to read? if the logo is already in a delphi image component just assign the image to the picture…
  • gordk wrote: » if ClientLogo is a categorized variable you are trying to access the variable incorrectly RawViewReport.Variables.Variables := #39+FClientLogo+#39; it should be RawViewReport.Variables := also remember that when passing a s…
  • Ok, so i managed to show the picture - the TfrxPictureView will load the picture directly from an OleObject field in the database. I had a picture placed on the incrrect band - which was why it wasnt showing up. So - if anyone else comes across t…
  • gordk wrote: » are you sure it is an oleobject field, and not a blobfield? Yes im sure. My current code in my app looks like: First - function to get the start position in the stream. function JpegStartsInBlob (PicField:TBlobField):in…