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 strongm 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. tbarone

    Return the last date modified of a file

    I do not quite understand the Get attributes command in Delphi. How do I get the last date modified from a file and bring it into Delphi? Thanks, Tony
  2. tbarone

    Searching for an SQL string in delphi TQuery Components

    Im sorry, i think you misunderstood. The search thing worked, but I just did not find that exact string. Is there anywhere else in delphi where sql can be execyted other than the actual code and the TQuery components? Thanks, Tony
  3. tbarone

    Searching for an SQL string in delphi TQuery Components

    Thanks for the suggestion. I tried it but no luck. Is there anywhere else in the Delphi project where this SQL can possibly be coming from? Thanks, Tony
  4. tbarone

    Searching for an SQL string in delphi TQuery Components

    I have a Delphi project with tons of forms. It is a Retail point of sale program. Every once in awhile when it is running, I get a 'Select * from Transactions' query in my SQL log. this query should never be run because this table is huge. I try to search the project for 'Select * from...
  5. tbarone

    EDBEngineError "Couldn't perform the edit because another user..."

    I wrote an application which uses .edit and .post in many areas. My problem is that when I click edit and then click save without making any changes I get EDBEngineError "Couldn't perform the edit because another user changed the record". In other words I do a .edit and then a .post...
  6. tbarone

    Scrolling in Grids

    Also, It is not a regular scrollbar, it is a infoPower 3000 wwDBGrid
  7. tbarone

    Scrolling in Grids

    I am using Delphi 5. Everytime I use any type of a grid I cannot get the scrollbar on the grid to work right. I cannot seem to get it to work like a real scroll bar. When I move to the second record the bar moves to the middle and the bar stays in the middle until i get to the last record? Is...
  8. tbarone

    Left Join problem?

    Made some little tweaks and worked great! Thanks a lot Tony
  9. tbarone

    Left Join problem?

    Basicly this has to do with payment types. I have a table which contains all my payment types. Then I have another table which has an amount for each payment type per drawer number. This is what the twowould look like if correct Table PaymentTypes ------------ 00000001 00000002 00000003...
  10. tbarone

    Defualt to "no" on a MessageDlg

    I Have a simple yes/no Message Dlg Box, but I want it to default to "no" instead of "yes? MessageDlg('Would you like to print a reciept?', mtConfirmation, [mbYes, mbNo], 0);
  11. tbarone

    Accessing Excel chart formulas from VB

    What would I put in for the name of the chart object?Does this formuls look correct: mybook.Worksheets("Activity vs Max Q").ChartObjects_(?).Chart.SeriesCollection("ACT_VIS").Formula Thanks, Tony Barone
  12. tbarone

    Accessing Excel chart formulas from VB

    I tried "theformula = mybook.Worksheets("Activity vs Max Q").range("ACT_VIS").Formula where Activity vs. Max is the name of the sheet with the chart and ACT_VIS is the name of the series on the chart. It gave me the error Subscript is out of range. I know the book is...
  13. tbarone

    Accessing Excel chart formulas from VB

    Here is my situation, I have the simple problem of trying to access an excel chart series formula from VB. The formula looks like this: =SERIES("2000-01",Data!$E$587:$E$632,Data!$F$587:$F$632,13) I want to import this formula from the excel chart into vb, change it, and then save...

Part and Inventory Search

Back
Top