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...
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...
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 =...
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?
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
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"...
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...
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.
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.