Click here to Skip to main content
15,914,360 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionClearing Textbox Control Pin
momooomooomomo5-Dec-06 13:58
momooomooomomo5-Dec-06 13:58 
AnswerRe: Clearing Textbox Control Pin
MatrixCoder5-Dec-06 14:33
MatrixCoder5-Dec-06 14:33 
GeneralRe: Clearing Textbox Control Pin
momooomooomomo5-Dec-06 16:12
momooomooomomo5-Dec-06 16:12 
GeneralRe: Clearing Textbox Control Pin
MatrixCoder5-Dec-06 16:29
MatrixCoder5-Dec-06 16:29 
AnswerRe: Clearing Textbox Control Pin
Kapil Thakur5-Dec-06 20:44
Kapil Thakur5-Dec-06 20:44 
QuestionVB 2005 code to a row and/or its cell values as variables Pin
Karma312515-Dec-06 10:10
Karma312515-Dec-06 10:10 
QuestionForm Resizing When Changing Text Size Thru FontDialog Pin
doveofpeace5-Dec-06 9:28
doveofpeace5-Dec-06 9:28 
QuestionPrinting a report Pin
dptalt5-Dec-06 8:48
dptalt5-Dec-06 8:48 
I'm trying to get a VB report to read its data from a dataset but when the report prints it is blank.
First I created a dataset in the project. I right clicked on the dataset designer and created a table with one column in it. Then I created a VB report and dragged the column from the datasources window onto the report. Next I created a form and dropped a reportviewer onto it and attached the report to reportviewer. In the load of this form I put the following code in to populate the dataset.

Me.SalesOrderDataSet = New Inventory.SalesOrderDataSet
Me.SalesOrderDataSet.DataSetName = "SalesOrderDataSet"
Me.SalesOrderDataSet.SchemaSerializationMode = SchemaSerializationMode.IncludeSchema

Dim newrow0 As DataRow
newrow0 = SalesOrderDataSet.SalesOrder.NewRow
newrow0.Item("company") = "Arlington"
SalesOrderDataSet.SalesOrder.Rows.Add(newrow0)

This code is supposed to populate the dataset for the report but why is the report not displaying this data?

Questiondataset setup Pin
gorenekli5-Dec-06 6:03
gorenekli5-Dec-06 6:03 
AnswerRe: dataset setup Pin
Kenshino5-Dec-06 9:58
Kenshino5-Dec-06 9:58 
AnswerRe: dataset setup Pin
Polymorpher5-Dec-06 11:06
Polymorpher5-Dec-06 11:06 
Generalworking with large textfiles over the network Pin
milkyjoe5-Dec-06 5:56
milkyjoe5-Dec-06 5:56 
QuestionRe: working with large textfiles over the network Pin
Are Jay5-Dec-06 18:03
Are Jay5-Dec-06 18:03 
AnswerRe: working with large textfiles over the network Pin
milkyjoe5-Dec-06 23:06
milkyjoe5-Dec-06 23:06 
QuestionHelp me with weird datagrid checkbox problem Pin
Kenshino5-Dec-06 3:21
Kenshino5-Dec-06 3:21 
AnswerRe: Help me with weird datagrid checkbox problem Pin
Kevin Nicol5-Dec-06 3:53
Kevin Nicol5-Dec-06 3:53 
GeneralRe: Help me with weird datagrid checkbox problem Pin
Kenshino5-Dec-06 4:28
Kenshino5-Dec-06 4:28 
GeneralRe: Help me with weird datagrid checkbox problem Pin
Kevin Nicol5-Dec-06 5:18
Kevin Nicol5-Dec-06 5:18 
GeneralRe: Help me with weird datagrid checkbox problem Pin
Kenshino5-Dec-06 5:29
Kenshino5-Dec-06 5:29 
AnswerRe: Help me with weird datagrid checkbox problem Pin
Kevin Nicol5-Dec-06 6:17
Kevin Nicol5-Dec-06 6:17 
GeneralRe: Help me with weird datagrid checkbox problem Pin
Kenshino5-Dec-06 10:08
Kenshino5-Dec-06 10:08 
GeneralRe: Help me with weird datagrid checkbox problem Pin
Kapil Thakur6-Dec-06 1:06
Kapil Thakur6-Dec-06 1:06 
AnswerRe: Help me with weird datagrid checkbox problem Pin
Kapil Thakur5-Dec-06 20:53
Kapil Thakur5-Dec-06 20:53 
GeneralRe: Help me with weird datagrid checkbox problem Pin
Kenshino5-Dec-06 23:57
Kenshino5-Dec-06 23:57 
GeneralRe: Help me with weird datagrid checkbox problem Pin
Kapil Thakur6-Dec-06 1:01
Kapil Thakur6-Dec-06 1:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.