Click here to Skip to main content
15,918,333 members
Home / Discussions / C#
   

C#

 
QuestionNeed help Marshaling in C# Pin
Tunçay Şanlı27-Nov-08 23:15
Tunçay Şanlı27-Nov-08 23:15 
AnswerRe: Need help Marshaling in C# Pin
leppie27-Nov-08 23:23
leppie27-Nov-08 23:23 
GeneralRe: Need help Marshaling in C# Pin
Tunçay Şanlı1-Dec-08 0:26
Tunçay Şanlı1-Dec-08 0:26 
QuestionVideo streaming Pin
resna.s27-Nov-08 22:11
resna.s27-Nov-08 22:11 
AnswerRe: Video streaming Pin
Simon P Stevens27-Nov-08 23:01
Simon P Stevens27-Nov-08 23:01 
AnswerRe: Video streaming Pin
Tom Deketelaere27-Nov-08 23:20
professionalTom Deketelaere27-Nov-08 23:20 
AnswerRe: Video streaming Pin
Pete O'Hanlon28-Nov-08 2:54
mvePete O'Hanlon28-Nov-08 2:54 
Question3tier - dataflow Pin
jogisarge27-Nov-08 21:28
jogisarge27-Nov-08 21:28 
AnswerRe: 3tier - dataflow Pin
Thomas Weller27-Nov-08 22:05
Thomas Weller27-Nov-08 22:05 
GeneralRe: 3tier - dataflow Pin
jogisarge28-Nov-08 9:05
jogisarge28-Nov-08 9:05 
GeneralRe: 3tier - dataflow Pin
Thomas Weller28-Nov-08 18:32
Thomas Weller28-Nov-08 18:32 
QuestionHow to log msg in Remote machine event log... Pin
Chintan.Desai27-Nov-08 20:11
Chintan.Desai27-Nov-08 20:11 
AnswerRe: How to log msg in Remote machine event log... Pin
Abhijit Jana27-Nov-08 20:38
professionalAbhijit Jana27-Nov-08 20:38 
Questionhow to cast combobox Pin
sadara27-Nov-08 20:01
sadara27-Nov-08 20:01 
QuestionRemoting Unit Testing suggestions. Pin
Member 232448327-Nov-08 19:48
Member 232448327-Nov-08 19:48 
QuestionInternal buffer(I/O) size of serialport Pin
Shivarudrayya H27-Nov-08 18:00
Shivarudrayya H27-Nov-08 18:00 
AnswerRe: Internal buffer(I/O) size of serialport Pin
Mbah Dhaim27-Nov-08 19:43
Mbah Dhaim27-Nov-08 19:43 
Questioncreating ssis package on the fly using C# Pin
l.laxmikant27-Nov-08 17:43
l.laxmikant27-Nov-08 17:43 
Question[HELP] Attempted to access an element as a type incompatible with the array Pin
dnlmarshall27-Nov-08 15:38
dnlmarshall27-Nov-08 15:38 
i want to create report with report viewer and then came up this error at runtime

here is my code

inventoryInfoReport.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Local; inventoryInfoReport.LocalReport.ReportPath = CitronConfiguration.ReportPath + "InventoryInfoReport.rdlc";

InventoryInfoDataSet inventoryDataSetObj = new InventoryInfoDataSet();

IList<inventorycatalog> inventoryCatalogList = new InventoryCatalogSystem().GetInventoryCatalogList();
foreach (InventoryCatalog inventoryCatalog in inventoryCatalogList)
{
DataRow row = inventoryDataSetObj.Tables[0].NewRow();
row["InventoryId"] = inventoryCatalog.InventoryId;
row["InventoryName"] = inventoryCatalog.InventoryName;
row["Stock"] = Library.DecimalToCurrency(inventoryCatalog.Stock);
row["IdealStock"] = Library.DecimalToCurrency(inventoryCatalog.IdealStock);
row["Balance"] = Library.DecimalToCurrency(inventoryCatalog.Balance);
inventoryDataSetObj.Tables[0].Rows.Add(row);
}

ReportDataSource objDataSource = new ReportDataSource("InventoryInfoDataSet_DataTable1", inventoryDataSetObj.Tables[0]);
inventoryInfoReport.LocalReport.DataSources.Add(objDataSource); <--the error was here

can some one help me please? Confused | :confused: Confused | :confused: Confused | :confused:
AnswerRe: [HELP] Attempted to access an element as a type incompatible with the array Pin
Christian Graus27-Nov-08 15:40
protectorChristian Graus27-Nov-08 15:40 
GeneralRe: [HELP] Attempted to access an element as a type incompatible with the array Pin
dnlmarshall27-Nov-08 15:46
dnlmarshall27-Nov-08 15:46 
GeneralRe: [HELP] Attempted to access an element as a type incompatible with the array Pin
Christian Graus27-Nov-08 15:55
protectorChristian Graus27-Nov-08 15:55 
GeneralRe: [HELP] Attempted to access an element as a type incompatible with the array Pin
dnlmarshall27-Nov-08 16:04
dnlmarshall27-Nov-08 16:04 
QuestionCAS problem Pin
_anil_27-Nov-08 14:18
_anil_27-Nov-08 14:18 
AnswerRe: CAS problem Pin
V.27-Nov-08 20:25
professionalV.27-Nov-08 20:25 

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.