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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by nutcase

  1. nutcase

    Syntax question

    Ok, you need to use a numberformatter... NumberFormat NF = NumberFormat.getInstance(); Now you have to customize NF... NF.setMaximumFractionDigits (2); NF.setMinimumFractionDigits (2); Now you can use it as such... g.drawString(NF.format(myNumber)); Remember to include java.text.*; you...
  2. nutcase

    Structured storage-reading from .stg file

    I need to read from a structured storage file to get to the properties inside. Problem being, all the functions and methods I have tried only seems to read the properties as defined by word etc. Check out http://msdn.microsoft.com/library/default.asp?url=/library/en-us/com/stgrintf_5vvy.asp for...
  3. nutcase

    Nullable Parameters

    running Crystal 6.0 reports out of VB accessing a SQL 7.0 database with SQL stored procedures. When I open the crystal report out of the directory instead of via the VB application I get the "Stored Procedures Input Parameters" window as I should - however the box for "this value...
  4. nutcase

    running a macro

    Problem is solved. With the help of our local VB expert the following code will accomplish the task. Copy from an ms/access table to a diskette in excel format using an access macro executed from a Visual Basic front end application Dim accessApp As Access.Application . . . ' Save to...
  5. nutcase

    running a macro

    BTW, the DoCmd does not work. The application was developed in Visual Studio and DoCmd only works within the MS/Access application itself.
  6. nutcase

    running a macro

    I have a vb6 application that folds, spindles and mutilates data from a MS/Access mdb. I've been able to do every thing but run an access macro from the vb code. Anyone know how to do this? thanks,
  7. nutcase

    Interfacing to ms/EMAIL

    I'm building one page reports for multiple students and would like to automatically send these from Crystal 6.0 to an MS/exchange mail box so that they can be sent to the individual students. their email addresses would be included in the report. Has anyone been brave enough to try this...
  8. nutcase

    how to export in excel with a perfect allignment

    I can't help! because I have never been able to get crystal report to hand my data off to any other application, excel, word, etc without it screwing up the data. Sorry, but if you ever find a way I'd like to know. Ken
  9. nutcase

    bubble forms

    Thanks for the ideas! Robert, I tried the wingding route but I have to print at exactly 6 characters per inch to hit the bubbles. That's why I'm using the courier 12 pt bold. I also tried building a character in bmp, same problem. Ken, I have been working on the overlay concept and it seems...
  10. nutcase

    bubble forms

    Crystal 6.0 I'm using crystal to print 100,000+ "bubble" forms, (you know the fill in the circle with a No. 2 pencil but stay inside the lines) type form. These are sent to customers who fill in some more circles and send them back. We then read them with an optical scanner, (don’t...
  11. nutcase

    CR6 and CR8 co-existing

    For a couple of days I had CR8 installed on my workstation along with CR6. After the review I uninstalled CR8. Without any notification, the uninstall of CR8 took the 32 bit ODBC drivers right off my system – result my CR6 reports, which are all driven via ODBC to SQL and Access...
  12. nutcase

    Giff Images

    I could never get gif's to work. I converted them to jpg's and they do just fine. I can size to my requirements. Ken
  13. nutcase

    Crystal Reports IsNull function

    Or you could set up a formula field such as "Addr_Line" then use the following code: if isnull({address3}) then {address4} else {address3} this would put the contents of address4 into Addr_Line if addess3 was null, otherwise it would put the contents of address3 into Addr_Line...
  14. nutcase

    crystal on win NT4.0

    We have many developers running Crystal 6 and Crystal 8 on NT 4.0 workstations and have had no problems with them. Ken
  15. nutcase

    Crystal Evaluation

    email me at speer@loma.org just completed a quick review of 8, I'll send my impressions

Part and Inventory Search

Back
Top