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 bkrike 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: ipazzo
  • Content: Threads
  • Order by date
  1. ipazzo

    SP for all tables

    Hi all, is it possible to make a stored procedure taht work for all tables ? what i need is to set values for two fields (usermod, datemod) that i have in all tables in my database, with the current database user an current datetime values. Thanks in advance. Regards.
  2. ipazzo

    Trouble for seconds & time

    Hi friends :D i have trouble in summary functions a date time display. The case is the following: i need to compute time difference between the begging and end of a task and show this difference as hh:mm:ss, i need average of this difference and plus i want to display this difference in a a...
  3. ipazzo

    Summary on Time formula. help

    Hi experts, i have this formula on a detail row WhilePrintingRecords; NumberVar SecondsDiff := DateDiff("s", {trv.hbegin}, {trv.hend} ); NumberVar Hours; NumberVar Mins; NumberVar Secs; SecondsDiff := IIF (SecondsDiff > 0, SecondsDiff, 0 ); Hours := truncate(secondsdiff/3600); Mins :=...
  4. ipazzo

    Free Copy Protection Routine

    Does any one can help me in finding a copy protection routine for VFP applications that i can use for free ? Vito M. from BARI (Italy) --------------------------------------- When you build a TEAM, try always those that they love to win. If you do not succeed to find them, then try those...
  5. ipazzo

    WEBComponent problem

    I have made many reports using a VFP datasource via a file DSN that's works fine trought my crystalreport viewer application , now i have a request to use these report via del webcomponent server, but i receive the following error: CRAXDRT Error occured on server -2147189176 : Logon Failed...
  6. ipazzo

    WebComponent problem

    I have made many reports using a VFP datasource via a file DSN that's works fine trought my crystalreport viewer application , now i have a request to use these report via del webcomponent server, but i receive the following error: CRAXDRT Error occured on server -2147189176 : Logon Failed...
  7. ipazzo

    Fixed row in grid

    Hi dear friends, is it possible to have a fixed row at the bottom of the grid object ? I want to have a row at the bottom of the grid with the total of columns value. Thanks in advance. Ciao Vito M. from BARI (Italy) --------------------------------------- When you build a TEAM, try always...
  8. ipazzo

    How to sync two girds ?

    Hello, does anyone knows how two sync two girds ? I have a form with two girds that not fit horizontally on the form and i need to scoll left and right the second gird when the user scrolls the first. Using the DoScroll metod and Scrolled event works only if the user uses the scrollbar but not...
  9. ipazzo

    Form resize

    Hello, how is possible to resize a form when the toplevel window resizes. My case is this: i have a top level window in the top level window i have a button the click event contains DO FORM newForm when i resize the toplevel window i will resize the newForm also. Thanks in advance. Vito...
  10. ipazzo

    Rec.selection formula with select from

    Is it possible to write a record selection formula checking that the value of a field is in another table ??? Ex. zip in (select zip from country where state = 'italy' Thanks for any suggestion ;-) Vito M. from BARI (Italy) --------------------------------------- When you build a TEAM...
  11. ipazzo

    Numeric format from remote views

    I have e remote view on an Oracle DB, when i copy the view on a local temporary table decimal values are rounded! Also when i browse the view i can see exactly all the decimal values, but when i highligth the field the decimal places becomes 0. Eg.: highlighted is How can i solve this...
  12. ipazzo

    CR with VFP data

    Hi friends, I have user CR to make reports for my application and now i have this problem: On my pc all works fine but on others pc .... This is my field definition This is data in the table This is what i see in the report on my pc and this is what i see if i install application on...
  13. ipazzo

    Strange VFP with CR reports

    Hi friends, I have user CR to make reports for my application and now i have this problem: On my pc all works fine but on others pc .... This is my field definition This is data in the table This is what i see in the report on my pc and this is what i see if i install application on...
  14. ipazzo

    VFP 6.0 and CrystalReports 8.0

    Hi friends. I have developed an application with VFP 6.0 that imports data from text files and uses CR 8.0 for reports. Now i have these needs: 1. give the user the possibility to create multiple database into wich import the datas. 2. give the user the possibility to select the database...
  15. ipazzo

    Date difference in hh.mm.ss

    I have two filed a start date/time "hbeg" and an end date/time "hend". Is there a way to use a formula to have the difference in the hh.mm.ss format? Thanks for any suggestion.
  16. ipazzo

    My problem is this: I have develo

    My problem is this: I have developed an application that allows the final customer to construct the own ones report. But in the report designer it is not possible to create a query on the database. Is there a way for giving the possibility to the customer to create the query to use in the...
  17. ipazzo

    Report designer in TOPLEVEL form

    How can i open the report designe with MODIFY REPORT in my toplevel form? PS. the main VFP screen is off! Thanks.
  18. ipazzo

    WaitForSingleObject and setup.exe ????

    Hi All, I'm want to execute a setup program from my FOX application. I use the CreateProcess API function and WaitForSingleObject WIN API function to accomplish this. When I execute notepad.exe, the WaitForSingleObject function waits untill I close the notepad. But when I'm executing the...
  19. ipazzo

    ShellAndWait and installshield setup.exe ?

    Hi to all, I use shellandwait in order to start various setup programs in succession, but the procedure does not wait for that the first setup it ends before to launch the successive one. The setups they are made with installshield. Some suggestion? Thanks.
  20. ipazzo

    UTF-8 Encoding

    Please help ME!!!! I have VFP6 and i need a function to encode/decode strings from/to UNICODE and UTF-8. Anyone can help me. Thanks.

Part and Inventory Search

Back
Top