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 gkittelson 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: Wenin
  • Order by date
  1. Wenin

    Saving down to Version 7 Crystal Reports

    What is the highest version of Crystal Reports that allows a user to save down to Version 7 formatting? We're using a program here at my work that is unable to work with versions higher than 7. Thanks
  2. Wenin

    seconds to Minutes/Seconds

    If you want to add Hrs into the mix you can use the following. I built off of Mike's existing code, so as not to grab all the credit. numbervar sec:={Sec value here}; numbervar nMins; numbervar nSecs; numbervar nHrs; stringvar sMins; stringvar sSecs; stringvar sHrs; nHrs:=truncate(sec/3600)...
  3. Wenin

    Converting Seconds to Minutes?

    Found this answer through a few searches. numbervar sec:={your.seconds.field}; stringvar mins; stringvar secs; mins:=totext(truncate(sec/60),"0"); secs:=totext(remainder(sec,60),"00"); mins +":" + secs Gave the guy a star to! =)
  4. Wenin

    Converting Seconds to Minutes?

    Does Crystal come with a function that allows the easy conversion of Seconds to minutes? I am needing to run reports from a database that is storing its times in Seconds. I'd like to avoid, but may have to just accept the fact that I'll need to come up with my own conversions.
  5. Wenin

    Crystal is Adding Decimals to values that don't have Decimals

    That did the trick!! I went to Database > Convert Database Driver > and selected the "OLE DB" driver. Fixed it!!! Thank you!
  6. Wenin

    Crystal is Adding Decimals to values that don't have Decimals

    I have a SQL Database that has numeric data-type fields. When I assign the database to a Crystal Report, the data that is being pulled over is having decimals added to the information. For example, if I have a value in the database equal to "3600", for some reason it sees that value as 36.00...

Part and Inventory Search

Back
Top