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

    Problems with global variables

    Hello All, I have a report in which I have to formulas. One formula is within the details section: Global DateVar array Names; WhileReadingRecords; Redim Preserve Names[UBound(Names) + 1]; Names[UBound(Names)] := Date({Timeline.TransitionDate}); and it just adds a date value to the array for...
  2. flepkows

    Problems with triple formulas for accumulation of data

    I have the following three formulas, I am trying to accomplish the following with them. The Names array is holding dates pulled from the Db, I want the DB record associated with the date that is closest to todays date. I am getting the date difference in seconds between these two dates and...
  3. flepkows

    Help viewing SQL Query being used

    I am using the bundled version of CR for .NET 2002. I have a report that is using three tables from my database, and it runs very slow. I am thinking that the SQL statement for my report is grabbing much more data than it needs to from the database. I am trying to view the SQL query in order...
  4. flepkows

    Help with properly displaying data

    I have a recursive database design between two tables package table and parts table. These are setup as follows: Part(PartID(PK),PartNumber) Package(PackageID(PK),ParentID,ChildID) The partID is linked to the parentID(FK to Part table) and I am using aliases to be able to get info like the...
  5. flepkows

    Using table aliases for nesting: having problems displaying data

    I have a recursive database design between two tables package table and parts table. These are setup as follows: Part(PartID(PK),PartNumber) Package(PackageID(PK),ParentID,ChildID) The partID is linked to the parentID(FK to Part table) and I am using aliases to be able to get info like the...
  6. flepkows

    Making Crystal Reports Faster

    I have a crystal report which I am displaying using a web form viewer within an asp.net application. My report is based on a sort of recursive database design so my report is using aliases of many tables. I am wondering how to speed up this report, I looked into caching but that really doesn't...
  7. flepkows

    Double Link between tables or use alias?

    I have two tables setup in an access database that will allow recursive nesting. One table is called Parts, and essentially, everything is a part, then the second table is called packages and it contains three fields. PackageID, ParentID(PartID of parent part from Part table), and...
  8. flepkows

    Help retrieving indirectly associated data.

    I have a report that is using two tables Parts and Packages. The Packages table has a field in it called ParentID, which references PartID from the parts table. So everything in my db is a part but using the packages table parts can contain other parts. My problem is trying to retrieve an...
  9. flepkows

    Reporting from a recursive relationship in a database

    I am reporting off of an access database using CR bundled with VS.net. There are two tables in my database i.e. Parts table and Package table that essentially have two links between them, and there are two fields in the package table i.e. Parent and Child. THis design allows infinite amounts...
  10. flepkows

    Combining records with a formula

    Hello all, I am using the packaged CR for .NET and I am generating a report for which I need a formula I am having trouble creating. I have a table in my DB that records events (dates) for a certain part. When I execute the report I am getting seperate records on my report for each match it...

Part and Inventory Search

Back
Top