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 SkipVought 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. sync123

    Jar file problems

    Hi, Thanks so much for your help!! So this is what I did G:\TEST>java -Xbootclasspath/a:classes12.zip;nygh.jar;fop.zip;batik.jar;avalon.jar -jar report.jar So now its launching the application and not giving me the oracledriver no class def error However I am getting another exception when...
  2. sync123

    Jar file problems

    I tried changing my manifest to $ more Manifest.mf Class-Path: report.jar avalon.jar batik.jar classes12.zip fop.zip nygh.jar Main-Class: report.ReportGenerator (ie. removed the ./) The application is launching but i am still getting the java.lang.NoClassDefFoundError...
  3. sync123

    Jar file problems

    Hi, Thanks grentis.I almost got it to work. I changed the manifest file $ more Manifest.mf Class-Path: ./report.jar ./avalon.jar ./batik.jar ./classes12.zip ./fop.zip ./nygh.jar Main-Class: report.ReportGenerator $ jar mcf Manifest.mf myJarFile classes12.zip fop.zip avalon.jar batik.jar...
  4. sync123

    Jar file problems

    Hi, Thanks for the quick reply. I am still having some problems.This is what I did. I changed the manifest file $ more Manifest.mf Class-Path: report.jar avalon.jar batik.jar classes12.zip fop.zip nygh.jar Main-Class: ReportGenerator $ jar mcf Manifest.mf myJarFile avalon.jar batik.jar...
  5. sync123

    Jar file problems

    Hi , I have created a java application in eclipse. My application uses some classes present in jar files. When I run my program, eclipse sets the classpath to point to these jar files.One of these files is classes12.zip that contains the oracle driver.My application works fine when I run it in...
  6. sync123

    Using one report as 3 diffferent subreports

    Hi Duane, Just recapping my problem : I have imported the same report 3 times as a subreport.Now I was thinking of changing the record source of each of these subreports. -What I found is that in most cases you would just go into the subreport design view and change its record source...
  7. sync123

    Using one report as 3 diffferent subreports

    Hi, I created a report which is based on a cross tab query and it is based on one particular col in my table. Now I have 2 other reports which are exactly the same but just picking up a dif col from the table.So I just used the same report and change my record source depending on the report I...
  8. sync123

    Using same report

    Hi, In the onOpen event of your report.. ---------------- if(somecriteria) then Me.recordSource="qry_1" else Me.recordSource="qry_2" end if ------------------- where qry_1 and qry_2 are names of queries in your database. Doing so sets the record source of your report...
  9. sync123

    Grouping in cross tab queries

    Thanks Duane!! That works great! I really appreciate all your help. Here's a star for you. Thanks again. sync123
  10. sync123

    Grouping in cross tab queries

    thanks jonfer! I just needed the report solution.But this is good to know as well.Its sure to come in handy. Also, I had one more general question. I am using the same report template for two reports. These reports are identical except that they just have a different record source. In the on...
  11. sync123

    Grouping in cross tab queries

    thanks dhookom!I have one more question to ask. In my report I want a col that gives me the total of 2 group_names, shc and branson. ie area: SHC Branson Total Gen total SHC and branson...
  12. sync123

    Grouping in cross tab queries

    Hi, I have a table that I have created from a query with the following fields sort group_name Area month_actual summary 1 M of H Seniors HC 5 funds 2 OHIP Branson 332 other suppl 3 Emp benefits Branson 66 salaries&Wages 4 M...
  13. sync123

    Subreports

    Hi, I have a table that contains the following fields ---------------------------------------------------------- name actual budget summary sort -----------------------------------------------------------'m of h' 10.0 20.0 'revenue' 100...
  14. sync123

    Report Source

    Thanks duane for all your help. I created the query using the choose function and it works great.I have a small question for you though. My report source is called qryActivityRehab.The Fields in my query are account,Month_Prev,Month_Actual,Month_Budget Now for one part of my report I want to...
  15. sync123

    Report Source

    I'll try an explain my question again. I guess I wasn't very clear. I want to generate a financial report. The user choses the month for which they want the financial report. My report will be based on a query called selCols. So selcols is my report source. Due to my table structure I need to...
  16. sync123

    Report Source

    This is something I would like to do : My report would look something like this --------------------------------- Month:April 2003 actual_last_yr actual this_yr Budget Inpatient Srvs: Admissions - (select cols where account='...
  17. sync123

    Report Source

    Thanks. It makes sense! Wasn't aware of this chose function. I have another question ,some of my controls would need a value based on one particular account from my account table . How could I set up the control source so it select the appropriate month using the chose finction for each column...
  18. sync123

    Report Source

    Hi, I am not really sure I understand your solution. Wouldn't this chose all 12 months when all I want is a particular month. Where would I be doing this? sync123
  19. sync123

    Report Source

    Hi, I haven't created the table structure. It was created a long time ago by someone and now its just too much work to fix it. :( Unfortunatley changing the table structure is not an option and I have to live with it. I want to chose the correct cols according to the month the user choses. So...
  20. sync123

    Report Source

    Hi, My database consists of a fin_Account table that contains the following fields -account which is of the format ###-##-###-######-###-#-###### -account description -month_x_actual which refers to the balance for month x -month_x_prev whic refers to the balance for month...

Part and Inventory Search

Back
Top