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: *

  1. jheiser

    Trouble binding dataset to crystal report using vb

    I am getting an error that says my CrystalReport0 is not declared at Dim crReportDoc As New CrystalReport0()
  2. jheiser

    Trouble binding dataset to crystal report using vb

    I am still having trouble getting that report declared. This is what I have so far. Thanks for being patient with me. I have a "CrystalReportViewer1" as my viewer object I have "CrystalReport0" as my report name I created this as new report using ODBC. I am calling this sub Imports System.IO...
  3. jheiser

    Trouble binding dataset to crystal report using vb

    Dim crReportDoc As New Report0.rpt this did not work either
  4. jheiser

    Trouble binding dataset to crystal report using vb

    I have got my code set up like you have given, but I am having trouble declaring my report name. Dim crReportDoc As New YourCrystalReportName My report name is Report0 and is located in my web directory. So I was using Dim crReportDoc as New Report0 I am getting an error...
  5. jheiser

    Trouble binding dataset to crystal report using vb

    I am having trouble binding my dataset to my crystal report I return my dataset from another funtion "ds" and I want to set the results of that data set to my Crystal Reports Viewer. Does anyone have any advice? Dim oD As New DBQueries Dim ds As New DataSet ds =...
  6. jheiser

    Placing network folder contents into a drop down menu

    I have a VB asp.net project going. I need to take the contents of a specific network folder and place the results into a drop down menu. Does anyone know how to do this?
  7. jheiser

    Printing Help!!

    If you define your variables like this it will allow the specified number of spaces for each column Dim Number As String * 5 Dim ID As String * 10 Dim FirstName As String * 25 Dim LastName As String * 25
  8. jheiser

    Open password protected database

    Thanks for your help, I decided to go a differnet direction in what i was doing
  9. jheiser

    Open password protected database

    I need to open a password protected database I have tried many different solution none of them have worked this is what I have: Set objaccess = CreateObject("Access.Application") With objaccess .OpenCurrentDatabase "\\vitefpsrv\a368270$\B17Cv1.0s.mdb"...
  10. jheiser

    A DCount with multiple criteria

    I need to search a table to see how many times a status of open in found along with a specific computer name. this is what i have Count = DCount("[Status]", "EnovaBatchStatus", "[Status]= 'Open'" And "[CompuName] ='" & CompName & "'") CompName is the name of the computer that is currently...
  11. jheiser

    Copy Entire Table to another Table

    That worked great thanks
  12. jheiser

    Copy Entire Table to another Table

    I need to copy the entire contents of a table called shippingreport into a table called saveshiptable when i click a command button on my form, but I can only copy one record. After the copy is complete I need to delete all of the records in the shippingreport table.
  13. jheiser

    Trying To Update Access Table Through Visual Basic

    I can add values to my table using this code strSQL = "INSERT INTO NextReportNumber(AutoNumber) " & _ "VALUES('" & nextreport & "')" I need to update and change the value each time my program runs and I don't know the correct Syntax

Part and Inventory Search

Back
Top