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 strongm 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: yoink
  • Order by date
  1. yoink

    determine if a grid row is currently in view

    Hi guys, I've got a form with a Topgrid on it. The grid contains about 200 populated rows, of which only a certain number can be seen by the user at any one time (eg the top 10 rows). I'd like to put a button on the form to delete all grid rows that are currently being shown to the user. Any...
  2. yoink

    change color of application title/caption bar?

    Hi everyone, A customer has asked if I can change a particular application to have a different title bar color (eg red, green) instead of the standard blue that every windows app has. I've found a few other posts about this same topic, but haven't been able to find a solution yet. I'd prefer...
  3. yoink

    autohide an application?

    Hi guys, I've got an application that i'd like to autohide (like the windows taskbar or the office shortcut bar). Any suggestions as to how to go about doing this? Regards, Andrew
  4. yoink

    error exporting rpt to html using vb and crystal 8.5

    Hi everyone, I'm having difficulties exporting a report as html4.0 from a VB app using . Whenever I export one particular report (some other reports work okay) to a html file, I get the error "Runtime Error '-2147190908 (80047784): Failed to export the report'. If I export it as a pdf...
  5. yoink

    why is SQLQueryString empty?

    Hi guys, I've got a vb app that opens up a crystal report using RDC (crystal 7). I want to get the initial sql statement that the report is built on, modify it, and then run the report using my modified statement. So, I've done the following: Dim crReport As CRAXDRT.Report Set...
  6. yoink

    how do I get the fileversion info through code?

    Hi everyone, I want to display my program's build number (Project Options->Version Info->FileVersion) on a label on a form. Anyone know if this is possible? Cheers Andrew
  7. yoink

    parsing 3 different types of text file

    Thanks Jeffray, worked perfectly
  8. yoink

    parsing 3 different types of text file

    Hi everyone, I've written a program that parses csv files using a pretty simple function (using a bit of help from tek-tips I might add). I've had a request to expand the program to use a number of different file formats. Basically, I've got three different file formats I need to parse...
  9. yoink

    passing parameters from vb...just doesn't work

    Thanks guys. I changed things around so that I'm using a CRAXDRT.Application now, and used the following: Dim crReport As CRAXDRT.Report Set crReport = crApplication.OpenReport(strReportName) crReport.ParameterFields(1).AddCurrentValue ("John Doe") This works fine. Took me ages to...
  10. yoink

    passing parameters from vb...just doesn't work

    Hi guys, I've spent most of the day designing an app (vb6, crystal 7) that will export a crystal report into html format and do a bunch of other stuff. That seems to work okay (although when you export a report from crystal 7 into html it makes a complete mess of it...pretty average output...
  11. yoink

    exporting report from vb - will app work with crystal 7 & 8.5?

    Hi guys, I'm thinking of writing an application in visual basic 6 to export a crystal report into html (already got one written in borland builder but it just doesn't work). I'm thinking of doing this with the "crystal report control" from crystl32.ocx which I assume comes with...
  12. yoink

    exporting cr to a file - will app work with different crystal versions

    Hi guys, I'm thinking of writing an application in visual basic 6 to export a crystal report into html (already got one written in borland builder but it just doesn't work). I'm thinking of doing this with the "crystal report control" from crystl32.ocx which I assume comes with...
  13. yoink

    please help - exporting report to html from borland c++ builder

    Hi guys, I'm having huge troubles with an application that I've "inherited" from someone. All it does is open a crystal report and export it into a html file (well, that's what it's supposed to do). The code that I've got doesn't spit out any errors, but it doesn't actually export...
  14. yoink

    how to print an empty date/time field

    Never mind, I worked it out: IF (InStr ((ToText({AlarmTime})),"1/01/70")) > 0 THEN " " ELSE ToText({AlarmTime});
  15. yoink

    how to print an empty date/time field

    Hi guys, I've got a report which gets some alarm date/time values from a database. These values are in the format "dd/mm/yyyy hh:mm:ss". I'd like to print a blank space " " if the date/time value in the database is 0. Having not used crystal much before, I thought this...

Part and Inventory Search

Back
Top