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 Mike Lewis 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. slinko

    Crystal Report help!!!

    Well, there are a couple ways to do this. The way that I have always used Crystal Reports is to use the RDC Component that you can install into VB, then creating a report with Crystal is just like using the Report Designer in VB only it is much more flexible. If you do it this way, when you...
  2. slinko

    Using The Data Report Tool in VB6

    Save yourself the time a trouble and use Crystal Reports. I too used to fight the Data Report Tool in VB, but unless you are doing simple data reports that require no processing, just outputing the data, the Data Report Tool is a nightmare. Once you use Crystal Reports you will wish you had...
  3. slinko

    Problem Referencing Libraries???

    Hi All, I ran into a problem today that I never had occur and was wondering if someone can help me out. I opened an application that I developed about 6 months ago and when I run it I get errors on various different functions like: Date, UCase, etc. saying Can't Find Project Or Library. If I...
  4. slinko

    help with easy ???(newbie)

    try this portion of code: Do While Not FileNameFound strFileName = Right(strFullPath, CntFromRight) If Left(strFileName, 1) = "\" Then strFileName = Right(strFileName, Len(strFileName) - 1) FileNameFound = True End If CntFromRight = CntFromRight + 1 Loop...
  5. slinko

    Application Not Closing???

    Thanks for the response, missed a few recordset objects in my code. Thanks again.
  6. slinko

    Application Not Closing???

    Hi All, I am having a problem with a MDI Application I wrote and was wondering if it has ever happened to anyone else. When I close the application, if I ctrl-alt-del, the application is still shown to be running in the task manager. I unloaded all the forms, I don't know why its happening, at...
  7. slinko

    executables to project?

    I have seen exe de-compilers on some app sites but have never used one. Do some searches on the net for exe decompilers, I'm sure you'll find something, don't know if it will work though???
  8. slinko

    treeview explanation

    Hi, a treeview can be tricky at first, it would be best if you found a book or documentation that explains it in detail, but here is a rundown. You can have root nodes which can have child nodes, which can have child nodes, etc, etc. You access the nodes through the nodes collection for the...
  9. slinko

    Data Combo and List Box

    1. When you say data combo drop down list do you mean a combo that is linked to a database or are you populating the drop down through code. A word of advice, binding controls to database fields is easy, and fine for what you are trying to do, but they are not as flexible as populating your...
  10. slinko

    Displaying Progress of File Copy???

    Does anyone know how to display the progress of a file copy in a progress bar. I am copying a file to the floppy drive and was wanting to display a progress bar to indicate the progress of the copy. I was trying to work something out by finding the file size and working from 0 to the total...
  11. slinko

    Run-time requirements for Crystal Reports 8.5

    Hi all, I am trying to package an application which uses the RDC component from Crystal Reports 8.5. I have noticed alot of posts about version 8.0 and was wondering if anyone knew the correct files that need to be installed for version 8.5. I have had many unsuccessful attempts with the...
  12. slinko

    How To Change Database of Crystal Report

    casman2, Thanks for pointing me in the right direction, my problem has been solved. I was trying to access the tables, not the items of the tables collection. Thank you very much!!!!!!B-)
  13. slinko

    How To Change Database of Crystal Report

    Hi All, I am opening a crystal report(v8.5) in VB which uses bound fields to an Access database table. However when I move the database file or change the directory, I get an error when it tries to view the report. I checked other posts and found a lot of references to...
  14. slinko

    Data Environment Woes??

    Hi All, I am developing a small database app using a data environment. I would have rather use code as opposed to the data environment however, I had to show a lot of data on each form and the idea of the bound text boxes, etc. sounded good. Now that I am almost finished, I am having problems...

Part and Inventory Search

Back
Top