I suggest you try deleting the .res file asociated with your proyect and then open it again it will show a message like .res not found, recreated. Press ok and try again.
Hope It Helps. Camilo Andrés Sánchez A.
Ingeniería de Sistemas
Pontificia Universidad Javeriana
Bogotá, Colombia
I tried in my copiler and it works well. I think you must reinstall C++Builder.
Camilo Andrés Sánchez A.
Ingeniería de Sistemas
Pontificia Universidad Javeriana
Bogotá, Colombia
Put the unitname(Customer in your example) where your in the used of the form where you call the report, then
Put a QRLabel into the Title band and then
From the form where you show the report before show the report do:
QuickReport1.QRLabel1.Caption:=Customer.VariableName; Camilo Andrés...
I developed an application in Delphi 5 over Win2000 now i upgraded to WinXP but my application forms looks trunked because WinXP windows borders are bigger than 2000 was.
Is there any way to make my application always show windows with win2000 windows look?
Thanks for help. Camilo Andrés...
Just add it to your proyect, implib is usefull to make .lib files from dlls, but if you already have the .lib file you dont need to use it. Camilo Andrés Sánchez A.
Ingeniería de Sistemas
Pontificia Universidad Javeriana
Bogotá, Colombia
May be if you are a little more specific or put the sentence will be easy to help you :)
And i have used OR and AND in my sentences without trouble. Camilo Andrés Sánchez A.
Ingeniería de Sistemas
Pontificia Universidad Javeriana
Bogotá, Colombia
Use a UpdateSql component use:
with UpdateSql1 do
begin
Sql[ukInsert]:='insert into yourtable(blobfieldname) values (:p1)';
Params[0].ASBlob:=Memo1.Text;
try
Query[ukInsert].ExecSQL;
except
ShowMessage('Unable to save blob field');
end;
end;
Dont forget to...
Windows copy only the path of a file into the clipboard, you dont need to copy the content of the file. When you paste windows just use the path to find the file. So dont copy the content of the file, just copy the path to it.
Hope it helps
I think the way to do that is:
Canvas1.Height:=DBCanvas1.Heigth;
Canvas1.Width:=DBCanvas1.Width;
for i:=0 to DBCanvas1.Width do
for j:=0 to DBCanvas1.Height do
Canvas1.Pixels[i,j]:=DBCanvas1.Pixels[i,j];
You must use OnDrawItem to remove the space before your item and when you ae drawing the item with the -1 ImageIndex use
Canvas.TextRect(Rect,Rect.Left+1,Rect.Top+1,'your item text');
And for draw a image on the rigth of the items text you can use
//if you want the image on the left too...
In my current project, there are user controles created. I cannot remove them. On removing a message says:
"Can't remove control or reference; in use"
Thanx.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.