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 TouchToneTommy 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: *

  • Users: msgopala
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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
  5. 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...
  6. 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...
  7. 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.
  8. 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
  9. msgopala

    TDBGrid Cell click problem

    Have a TDBGrid that displays history for a customer. There may be one or more rows for a single customer. There is a column that displays an image and when the image is clicked it pulls up a pdf file stored in the db for this record. My problem is that cell remains in the clicked state even...
  10. msgopala

    Delphi 7 - previe and print problem

    when previewing and then printing from preview only the first half of the page prints. When a straight print, prints the entire report
  11. msgopala

    TQRSubDetailBand not pulling all records from dataset

    I have a report that should show all branches listed for an Agency #. There can be any number of branches for a given agency. The problem I am encountering is that the sub detail band only pulls the first 37 branches for an agency when it has 94 branches. For all agencies under 37 brnaches the...
  12. msgopala

    PDF export messes up document pages

    We moved over from using the qrpdffilt to using gnostice components to export pdf documents within quickreports. The exported pdf documents are messed up, the right side of the pages are cut off, data is not printed in text boxes provided and the boundaries of the bands overlap. We have...
  13. msgopala

    TDBGrid question

    How would I set the visibility of a row to be false in a TDBGrid ? Since I have to have a table as the datasource and cannot have a sql dataset to be the DS how could I achieve this ? Thanks in advance
  14. msgopala

    Search files in Dir and subdirectories

    I have an exe that is executed using a batch file -- which extracts files to a temp file and then searches for Myfile.INI and when a match is found copies files from the temp folder to the found folder. So far I have been able to find files using sysutils.FileSearch but this function does not...
  15. msgopala

    Auto update app from web

    There are several share and freeware out there that had to ask if anyone had used a auto update tool or component in delphi. We distribute our software updates through the web and are now looking to incorporate auto update which would update our clients app without having them login to our...
  16. msgopala

    QuickReports and Zip functionality

    Have a program that sends applications electronically to clients, trying to submit pictures embedded in the application creates a huge pdf file sometimes and the send will fail because of mailbox limit. I am looking for a way to zip the pictures and send with the application. Is there a way...
  17. msgopala

    QuickReports and QRRTFFilter

    thread101-935624 Need to export file as word. The report already exports to pdf using QRPDFFilter successfully. Cannot seem to export using the rtf filter. ~~~~Code for export to RTF does not work ~~~~~~~~ **Error Line** procedure TrpFile.FileCreateRTF; var RTFFilter : TQRRTFFileFilter...
  18. msgopala

    Printing Duplex in delphi

    Trying to access the printer settings and switch bins while printing duplex forms. Have tried the code from here thread102-1079747. Printer does not switch bins and will not print duplex. My code. procedure TDecPageModule.PrintForms; var pDevice,pDriver,pPort : array [0..255] of Char; S ...

Part and Inventory Search

Back
Top