Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by CodeGenerator

  1. CodeGenerator

    external exception

    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
  2. CodeGenerator

    SQL error in C++Builder

    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
  3. CodeGenerator

    How to use variables in QReports ?

    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...
  4. CodeGenerator

    Windows XP appeareance trouble

    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...
  5. CodeGenerator

    import libs

    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
  6. CodeGenerator

    SQL error in C++Builder

    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
  7. CodeGenerator

    insert and read(view) interbase blob fields

    And for read it you can use: Query1.FieldByName('BlobField').AsText; Hope it helps
  8. CodeGenerator

    insert and read(view) interbase blob fields

    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...
  9. CodeGenerator

    Copy file to clipboard

    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
  10. CodeGenerator

    Copying a TChart's canvas to a separate TCanvas

    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];
  11. CodeGenerator

    image in a listview

    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...
  12. CodeGenerator

    I cannot remove user-controls...

    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.

Part and Inventory Search

Back
Top