Forum: VB.NET Nov 23rd, 2008 |
| Replies: 3 Views: 6,388 take a look at vb.net substring in detail.
http://vb.net-informations.com/string/vb.net_String_Substring.htm
bruce. |
Forum: Visual Basic 4 / 5 / 6 Nov 19th, 2008 |
| Replies: 11 Views: 11,051 plz check the link below , you can pass parameter to crystal reports
http://vb.net-informations.com/crystal-report/vb.net_crystal_report_parameter_date.htm |
Forum: C# Nov 16th, 2008 |
| Replies: 2 Views: 10,017 thsi is vb code
Dim dTable As DataTable
dTable = dv.ToTable
for more details :
http://vb.net-informations.com/dataview/dataview-to-datatable.htm
thanks. |
Forum: C# Nov 13th, 2008 |
| Replies: 3 Views: 3,501 you can add new row using dataview
http://vb.net-informations.com/dataview/dataview-new-row.htm
bruce. |
Forum: VB.NET Nov 12th, 2008 |
| Replies: 2 Views: 12,157 You can retrieve data from database without using dataset .
cnn.Open()
cmd = New SqlCommand(sql, cnn)
Dim count As Int32 = Convert.ToInt32(cmd.ExecuteScalar())
... |
Forum: VB.NET Nov 12th, 2008 |
| Replies: 5 Views: 51,338 try this
http://vb.net-informations.com/dataadapter/dataAdapter-dataset.htm
http://vb.net-informations.com/ado.net-dataproviders/ado.net-dataproviders-tutorial.htm
bruce. |
Forum: VB.NET Nov 12th, 2008 |
| Replies: 11 Views: 18,209 connetionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password"
connection = New SqlConnection(connetionString)
... |
Forum: VB.NET Nov 10th, 2008 |
| Replies: 4 Views: 2,192 You can pass login parameter to crystal reports dyanmically .
http://vb.net-informations.com/crystal-report/vb.net_crystal_report_load_dynamically.htm
bruce. |
Forum: VB.NET Nov 8th, 2008 |
| Replies: 4 Views: 43,245 for int i=0 to dataset.tables(0).rows.count -1
adapter.InsertCommand = New SqlCommand(insertSQL, connection)
adapter.InsertCommand.ExecuteNonQuery()
next i
... |
Forum: VB.NET Nov 8th, 2008 |
| Replies: 9 Views: 13,738 connetionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=yourdatabasename.mdb;"
connection = New OleDbConnection(connetionString)
full src code
... |
Forum: VB.NET Nov 8th, 2008 |
| Replies: 2 Views: 2,145 use this
http://vb.net-informations.com/dataset/dataset-count-rows-oledb.htm
bruce |
Forum: VB.NET Oct 12th, 2008 |
| Replies: 1 Views: 3,778 follow the url, it explain how to ExecuteScalar
http://vb.net-informations.com/ado.net-dataproviders/ado.net-executescalar-sqlcommand.htm |
Forum: VB.NET Oct 9th, 2008 |
| Replies: 4 Views: 7,479 you can connect excel file through vb.net with the help of oledb. check the following link.
http://vb.net-informations.com/excel-2007/vb.net_excel_oledb.htm
bruce. |
Forum: VB.NET Oct 9th, 2008 |
| Replies: 3 Views: 2,109 Your question is not clear yet. Refer the following link so see more help on excel automation in vb.net.
http://vb.net-informations.com/excel-2007/vb.net_excel_2007_tutorials.htm
bruce. |
Forum: VB.NET Oct 8th, 2008 |
| Replies: 5 Views: 7,854 try this crystal report tutorial.
http://vb.net-informations.com/crystal-report/vb.net_crystal_reports_tutorials.htm
bruce |
Forum: VB.NET Oct 8th, 2008 |
| Replies: 3 Views: 992 Here one step by step Crystal reports in vb.net.
http://vb.net-informations.com/crystal-report/vb.net_crystal_reports_tutorials.htm |
Forum: VB.NET Sep 11th, 2008 |
| Replies: 3 Views: 2,408 try this link
http://vb.net-informations.com/crystal-report/vb.net_crystal_reports_tutorials.htm
thanks. |
Forum: VB.NET Sep 11th, 2008 |
| Replies: 4 Views: 11,376 Just follow the link , you will get a step by step crystal reports creation in vb.net
http://vb.net-informations.com/crystal-report/vb.net_crystal_reports_tutorials.htm
bruce |
Forum: VB.NET Aug 26th, 2008 |
| Replies: 3 Views: 870 try this one
http://vb.net-informations.com
Vb.net tutorials , help and source code
bruce. |
Forum: VB.NET Aug 26th, 2008 |
| Replies: 7 Views: 1,871 try this one
http://vb.net-informations.com
Vb.net tutorials , help and source code |
Forum: VB.NET Aug 21st, 2008 |
| Replies: 5 Views: 10,452 try this tutorials.
http://vb.net-informations.com/excel-2007/vb.net_excel_2007_tutorials.htm
bruce |
Forum: VB.NET Jul 28th, 2008 |
| Replies: 1 Views: 2,960 Dim crParameterFieldDefinitions As ParameterFieldDefinitions
Dim crParameterFieldDefinition As ParameterFieldDefinition
Dim crParameterValues As New ParameterValues
Dim... |
Forum: VB.NET Jun 27th, 2008 |
| Replies: 1 Views: 464 If u use exception handling , you can find the problem very easily.
use try .. catch ststements .
http://vb.net-informations.com/language/vb.net_exceptions.htm
... |