Can any body tell me the code procedure for preparing parameterized cristel reports.the report should be generated by taking to or more parameters.example: report should be genarated FROM DATE to TODATE
Latest Answer : Dim con As New SqlConnection _
("Server=YourServer;uid=;pwd=;database=northwind")
Dim da As New SqlDataAdapter _
("Select * From MyImages", con)
Dim MyCB As SqlCommandBuilder = New SqlCommandBuilder(da)
Dim ds As New DataSet()
da.MissingSchemaAction ...
1)What is the difference between vb and vb.net ?2)How to insert row by row data in datagrid ?3) How to work with repeater controls and give small example program ?
How to check for a particular record whether it is present or not in dataset if the record is not present i want to display a message as no records what is the code for checking
Latest Answer : i want to store word/excel/text file into sql server database from vb.net and also want to retrieve it give source code and explanation ...
Latest Answer : MSIL code is the Microsoft Intermediate Language. This is the code created by the CLR from the source code. This MSIL code is converted to machine/native code by JIT compiler. This machine code is actually the code which runs. ...
for example:while(datareader1.read()) while(datareader2.read()) end whileend whilethis is not allowed even though both datareaders have two different sets of data. can someone help me out with this
Latest Answer : A database connection can only have one open datareader associated with it at anytime. To do what you are looking to do in your example you must have two connections, one for each datareader. ...
You develop a Windows-based application that includes the following code segment. (Line numbers areincluded for reference only.)01 Public Sub password_Validating (ByVal sender As _02 Object, ByVal e As
Latest Answer : e.cancle = TrueIf the input in the control does not fall within required parameters,the property within your event handler can be used to cancel the Validating event and return the focus to the control. ...