Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
C

cvp77

@cvp77
About
Posts
6
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How to Remove a DLL Reference
    C cvp77

    1)-Click Reference 2)Select the dll u have added 3)Rt click and Remove it Regards, CVP

    .NET (Core and Framework) visual-studio question csharp com tutorial

  • Removing Sort from datagrid
    C cvp77

    Go to Property builder and remove the Allow Sorting Regards, CVP

    ASP.NET database algorithms

  • How to Remove a DLL Reference
    C cvp77

    since 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!

    .NET (Core and Framework) visual-studio question csharp com tutorial

  • What is the best 3rd Party Grid Control?
    C cvp77

    Use FarPoint SpreadSheet

    Visual Basic question csharp css

  • how to bind crystal reports
    C cvp77

    Private 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

    Database database tutorial

  • How to Remove a DLL Reference
    C cvp77

    Could you brief us how you registered that Dll so that i can get give you the correct solution. Regards, CVP

    .NET (Core and Framework) visual-studio question csharp com tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups