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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. msgopala

    CTRL+C \ CTRL+V functionality and Delphi 2010

    Found out that its a problem with TTzEdits, problem resolved when switched to TRZEdits. Thanks msgopala
  2. msgopala

    CTRL+C \ CTRL+V functionality and Delphi 2010

    My program Thanks msgopala
  3. msgopala

    CTRL+C \ CTRL+V functionality and Delphi 2010

    CTRL+C and CTRL+V functionality have been replaced by CTRL+Ins and CTRL+Shift. The main menu shortcuts for the menu items still show CTRL+C and CTRL+V as the shortcut keys. The AutoHotkeys for each menu item has been set to maParent. Cannot use the edit menu to copy\paste as paste is always...
  4. msgopala

    Coreid140.bpl and rtl140.bpl error in Delphi 2010

    Recently moved over from Delphi7 to Delphi2010. Open a project, run, build and then run again crashes the ide and am getting a Coreid140.bpl and rtl140.bpl error. I have disabled JVC debugger as we do not use it but that did not help. Have checked library path for incorrect paths. This is a...
  5. msgopala

    Topaz ttzedit mask error in Delphi2010

    Moving over from Delphi7 to Delphi 2010 we noticed that the edit masks on ttzedit (dbasestyle) do not work so we tried changing the edit mask style property to delphi style but are not able to click on the ellipses for the edit mask property. We have an error, please see screenshot below. We...
  6. msgopala

    Need to export contents of VirtualTable to a dbf file

    so far no replies :( msgopala
  7. msgopala

    Need to export contents of VirtualTable to a dbf file

    Tried VTable.SaveToFile('OSCHKS'); and then renaming file to .dbf but that did not work. I can use a VTempFile.DbfFilename := 'OSCHKS.DBF'; and then open the dbf file with ARC . But really need to use vtable instead of vtempfile. Any ideas ? Muchos Gracias msgopala
  8. msgopala

    Help with creating an uninstaller for software written in Delphi 7

    I have to create an uinstaller for our program. The way I have to do it is similar to my auto updater prj wherein when the software is launched it connects to our web and checks a file that has the terminated agent codes and if so then starts an uinstall process. I already have the software to...
  9. msgopala

    OnCalcfields event for virtual table

    DMan, Thanks. Thought about what you said and ended up having a oncolexit to calc and display when adding new recs and an onenter event to display, if just view the grid. :) tx again M msgopala
  10. msgopala

    OnCalcfields event for virtual table

    yes msgopala
  11. msgopala

    OnCalcfields event for virtual table

    Yes I have dropped a component and creating the calc field via fields editor but the other fields in code. msgopala
  12. msgopala

    OnCalcfields event for virtual table

    Delphi 7 Have an oncalcfields event for a virtual table column in a dbgrid. This event wont fire at all. I can get it to work by putting the code in a browsegridcolexit event, but the problem with that the field gets cleared everytime user exits and unless user re-tabs over certain columns...
  13. msgopala

    Uploading a pdf to advantage db using delphi7

    I have figured out how to stream pdf files into the db. Now my challenge is to stream these to the printer without saving them first, as this causes a lag in spooling (tested this is in production, not a workable option). So far have had no luck except found some suggestions to use r=Rave...
  14. msgopala

    Displaying TImage.picture and TImage.canvas simultaneously

    I happened on this post by chance. Thank you this was a problem I encountered a while ago (the flickering) and now I know why and how to handle it. Thanks Glenn and Naktibalda !
  15. msgopala

    Uploading a pdf to advantage db using delphi7

    Thanks you DjangMan. I had this figured out by googling for it :D
  16. msgopala

    Return Value from popupmenu into ttzedit field

    I have a popmenu that shows up in an edit when the F10 key is pressed. I am however unbale to return the value from the popmenu into my edit. The popmenu has a tdbgrid (that displays values from the database), an ok and a cancel btn.
  17. msgopala

    Uploading a pdf to advantage db using delphi7

    We have a way of loading images into the db and also create pdf files and store in the db on the fly. But I need to know how to load a pdf document into the advantage db using delphi. Thanks
  18. msgopala

    TDBGrid Cell click problem

    I do have a DrawColumnCell proc and a OnClick event. ~**DrawColumncell**~ procedure TBrowsePolicies.TransactionsGridDrawColumnCell(Sender: TObject;const Rect: TRect; DataCol: Integer; Column: TColumnEh;State: TGridDrawState); var bitmap : TBitMap...

Part and Inventory Search

Back
Top