1)-Click Reference 2)Select the dll u have added 3)Rt click and Remove it Regards, CVP
cvp77
Posts
-
How to Remove a DLL Reference -
Removing Sort from datagridGo to Property builder and remove the Allow Sorting Regards, CVP
-
How to Remove a DLL Referencesince your Dll not resides in GAC The solution is so simple In your project 1)Go to Add reference tab 2) then remove the dll who have added before 3.apply 4.Add the new dll once again 5.Now check that ur newly added functions will be there Hint:whenever u change the functions or methods in the referring Dll (if u want that changes have to be get reflected in ur application) then remove the reference and add the reference once agian Good Luck!
-
What is the best 3rd Party Grid Control?Use FarPoint SpreadSheet
-
how to bind crystal reportsPrivate Sub ShowReport() Dim rpt As New CrystalReport1() 'The report you created Dim dsReport As New Dataset1() 'The dataset that you created for this report 'We need a report object that is fully populated to display, so declare one Dim objReport As Object objReport = prepareReport(rpt, dsReport, "SELECT * FROM MyTable") rpvReport.ReportSource = objReport End Sub 'To get a report from Table Public Overloads Function prepareReport(ByVal rpt As Object, ByVal dsReport As Object, ByVal tblName As String) As Object Dim myConnection As SqlConnection Dim MyCommand As New SqlClient.SqlCommand() Dim MyDA As New SqlDataAdapter() Try myConnection = New SqlConnection("Data Source=localhost;Integrated Security=SSPI;" & _ "Initial Catalog=northwind;") MyCommand.Connection = myConnection MyCommand.CommandText = tblName MyCommand.CommandType = CommandType.Text MyDA.SelectCommand = MyCommand MyDA.Fill(dsReport, “MyTable”) rpt.SetDataSource (dsReport) Return rpt Catch ReportErr As Exception Reponse.write("Prepare Report Error:" & ReportErr.Message) Finally MyDA.Dispose() MyCommand.Dispose() myConnection.Dispose() End Try End Function Things to do before Coding. 1.Create a dataset (named dataset1) which has to bind the necessary table or view (in this case it is MyTable)in the integrated environment. 2.Create a Report (in this eg -CrystalReport1) and bind the report with the dataset you have created(Dataset1) 3.Drag and drop the necessary fields 4.Use the code 5.Ur Report is ready :) Things To Ensure: Check whether you have 2 import statements in your vb Imports CrystalDecisions.CrystalReports.Engine Imports CrystalDecisions.Shared Regards, CVP
-
How to Remove a DLL ReferenceCould you brief us how you registered that Dll so that i can get give you the correct solution. Regards, CVP