Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~29.5K People Reached
Favorite Forums

23 Posted Topics

Member Avatar for potatochips

You can pass login parameter to crystal reports dyanmically . [url]http://vb.net-informations.com/crystal-report/vb.net_crystal_report_load_dynamically.htm[/url] bruce.

Member Avatar for lauryfriese
1
12K
Member Avatar for edcaryl

connetionString = "Data Source=ServerName;Initial Catalog=DatabaseName;User ID=UserName;Password=Password" connection = New SqlConnection(connetionString) [url]http://vb.net-informations.com/dataadapter/dataadapter-dataset-sqlserver.htm[/url]

Member Avatar for vinod_10
0
7K
Member Avatar for saquibaltaf

[code]Dim crParameterFieldDefinitions As ParameterFieldDefinitions Dim crParameterFieldDefinition As ParameterFieldDefinition Dim crParameterValues As New ParameterValues Dim crParameterDiscreteValue As New ParameterDiscreteValue crParameterDiscreteValue.Value = TextBox1.Text crParameterFieldDefinitions = _ cryRpt.DataDefinition.ParameterFields crParameterFieldDefinition = _ crParameterFieldDefinitions.Item("Orderdate") crParameterValues = crParameterFieldDefinition.CurrentValues crParameterValues.Clear() crParameterValues.Add(crParameterDiscreteValue) crParameterFieldDefinition.ApplyCurrentValues(crParameterValues) [/code] if want to know more detail about this check this link. [url]http://vb.net-informations.com/crystal-report/vb.net_crystal_report_parameter_date.htm[/url] bruce

Member Avatar for retsehc
0
774
Member Avatar for serkan sendur

thsi is vb code Dim dTable As DataTable dTable = dv.ToTable for more details : [url]http://vb.net-informations.com/dataview/dataview-to-datatable.htm[/url] thanks.

Member Avatar for bruce2424
0
1K
Member Avatar for soumyajit_c`

try this [url]http://vb.net-informations.com/dataadapter/dataAdapter-dataset.htm[/url] [url]http://vb.net-informations.com/ado.net-dataproviders/ado.net-dataproviders-tutorial.htm[/url] bruce.

Member Avatar for bruce2424
0
1K
Member Avatar for madelein

connetionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=yourdatabasename.mdb;" connection = New OleDbConnection(connetionString) full src code [url]http://vb.net-informations.com/ado.net-dataproviders/ado.net-oledbconnection.htm[/url] bruce

Member Avatar for Abhay Joshi
0
584
Member Avatar for atv161

try this crystal report tutorial. [url]http://vb.net-informations.com/crystal-report/vb.net_crystal_reports_tutorials.htm[/url] bruce

Member Avatar for gomathinayagam
0
181
Member Avatar for Agent57C

take a look at vb.net substring in detail. [url]http://vb.net-informations.com/string/vb.net_String_Substring.htm[/url] bruce.

Member Avatar for bruce2424
1
193
Member Avatar for intellogo

plz check the link below , you can pass parameter to crystal reports [url]http://vb.net-informations.com/crystal-report/vb.net_crystal_report_parameter_date.htm[/url]

Member Avatar for bruce2424
0
449
Member Avatar for Devin

for int i=0 to dataset.tables(0).rows.count -1 adapter.InsertCommand = New SqlCommand(insertSQL, connection) adapter.InsertCommand.ExecuteNonQuery() next i [url]http://vb.net-informations.com/dataadapter/dataadapter-insertcommand-sqlserver.htm[/url] [url]http://vb.net-informations.com/dataset/ado.net-dataset.htm[/url] bruce

Member Avatar for sierrainfo
0
2K
Member Avatar for amitj

you can add new row using dataview [url]http://vb.net-informations.com/dataview/dataview-new-row.htm[/url] bruce.

Member Avatar for Jugortha
0
175
Member Avatar for Tellie

You can retrieve data from database without using dataset . cnn.Open() cmd = New SqlCommand(sql, cnn) Dim count As Int32 = Convert.ToInt32(cmd.ExecuteScalar()) cmd.Dispose() cnn.Close() [url]http://vb.net-informations.com/ado.net-dataproviders/ado.net-executescalar-sqlcommand.htm[/url] bruce

Member Avatar for bruce2424
0
170
Member Avatar for evios

use this [url]http://vb.net-informations.com/dataset/dataset-count-rows-oledb.htm[/url] bruce

Member Avatar for bruce2424
0
133
Member Avatar for apchidara

you can connect excel file through vb.net with the help of oledb. check the following link. [url]http://vb.net-informations.com/excel-2007/vb.net_excel_oledb.htm[/url] bruce.

Member Avatar for rmjagnaan
0
940
Member Avatar for wonder_gal

follow the url, it explain how to ExecuteScalar [url]http://vb.net-informations.com/ado.net-dataproviders/ado.net-executescalar-sqlcommand.htm[/url]

Member Avatar for bruce2424
0
169
Member Avatar for sbv

Your question is not clear yet. Refer the following link so see more help on excel automation in vb.net. [url]http://vb.net-informations.com/excel-2007/vb.net_excel_2007_tutorials.htm[/url] bruce.

Member Avatar for bruce2424
0
182
Member Avatar for cellus205

Here one step by step Crystal reports in vb.net. [url]http://vb.net-informations.com/crystal-report/vb.net_crystal_reports_tutorials.htm[/url]

Member Avatar for cellus205
0
196
Member Avatar for AJVanZyl

try this link [url]http://vb.net-informations.com/crystal-report/vb.net_crystal_reports_tutorials.htm[/url] thanks.

Member Avatar for AJVanZyl
0
152
Member Avatar for darkos32

Just follow the link , you will get a step by step crystal reports creation in vb.net [url]http://vb.net-informations.com/crystal-report/vb.net_crystal_reports_tutorials.htm[/url] bruce

Member Avatar for bruce2424
0
375
Member Avatar for mMm.A

try this one [url]http://vb.net-informations.com[/url] Vb.net tutorials , help and source code bruce.

Member Avatar for bruce2424
0
313
Member Avatar for kxh29

try this one [url]http://vb.net-informations.com[/url] Vb.net tutorials , help and source code

Member Avatar for bruce2424
0
143
Member Avatar for ViRiPuFF

try this tutorials. [url]http://vb.net-informations.com/excel-2007/vb.net_excel_2007_tutorials.htm[/url] bruce

Member Avatar for bruce2424
1
497
Member Avatar for Dell XPS

If u use exception handling , you can find the problem very easily. use try .. catch ststements . [url]http://vb.net-informations.com/language/vb.net_exceptions.htm[/url] [url]http://vb.net-informations.com/language/vb.net_languagebasics_tutorials.htm[/url] bru

Member Avatar for bruce2424
0
102

The End.