Click here to Skip to main content
15,915,093 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: run dos commands thru VB? Pin
Jarek G5-May-04 13:49
Jarek G5-May-04 13:49 
GeneralRe: run dos commands thru VB? Pin
Dave Kreskowiak5-May-04 14:59
mveDave Kreskowiak5-May-04 14:59 
Generalconverting VB6 to VB.Net Pin
GaryKoh5-May-04 3:26
GaryKoh5-May-04 3:26 
GeneralRe: converting VB6 to VB.Net Pin
Dave Kreskowiak5-May-04 4:57
mveDave Kreskowiak5-May-04 4:57 
GeneralRe: converting VB6 to VB.Net Pin
jimpar5-May-04 5:05
jimpar5-May-04 5:05 
GeneralStargate - Warp affect.. Pin
coopsqc5-May-04 2:47
coopsqc5-May-04 2:47 
GeneralRe: Stargate - Warp affect.. Pin
Jarek G5-May-04 10:22
Jarek G5-May-04 10:22 
General"Push" method for crystal report Pin
Mr. Cully5-May-04 1:00
Mr. Cully5-May-04 1:00 
Im trying to code a crystal report which gets the information from a dataset, I have the C# code to bind the data but i need the vb code, or if anyone knows of a good example on the net that might help.
Thanks,
Colum



private void Page_Load(object sender, System.EventArgs e)
{
CrystalReport1 report=new CrystalReport1();
CrystalReportViewer1.Visible=true;
DataSet ds=new DataSet("Account");//give same name as on
//dataset1 table header
DataTable table=new DataTable("Account");//give same name as on
//dataset1 table header
table.Columns.Add("Fname",typeof(System.String));
table.Columns.Add("Lname",typeof(System.String));
table.Columns.Add("Salary",typeof(System.String));
DataRow row=table.NewRow();
row["Fname"]="Mathew";
row["Lname"]="Hayden";
row["Salary"]="5000$";
// add to table
table.Rows.Add(row);
ds.Tables.Add(table);
// set report's dataset
report.SetDataSource(ds);
// set report source
CrystalReportViewer1.ReportSource =report;
}
GeneralRe: "Push" method for crystal report Pin
Dave Kreskowiak5-May-04 4:54
mveDave Kreskowiak5-May-04 4:54 
GeneralReverse Engineering for Installer Pin
Syneric4-May-04 22:30
Syneric4-May-04 22:30 
GeneralRe: Reverse Engineering for Installer Pin
Dave Kreskowiak5-May-04 4:49
mveDave Kreskowiak5-May-04 4:49 
Generalopening power point and word documents in browser from an ASP.net project (in VB) Pin
seemeen4-May-04 20:11
seemeen4-May-04 20:11 
GeneralRe: opening power point and word documents in browser from an ASP.net project (in VB) Pin
Dave Kreskowiak5-May-04 4:47
mveDave Kreskowiak5-May-04 4:47 
GeneralPlease help us about EVB Pin
bathroom4-May-04 19:50
bathroom4-May-04 19:50 
Generalmy assignment Pin
Anonymous4-May-04 14:22
Anonymous4-May-04 14:22 
GeneralRe: my assignment Pin
Dave Kreskowiak4-May-04 15:31
mveDave Kreskowiak4-May-04 15:31 
GeneralRe: my assignment Pin
Colin Angus Mackay4-May-04 22:13
Colin Angus Mackay4-May-04 22:13 
GeneralRe: my assignment Pin
Colin Angus Mackay4-May-04 22:17
Colin Angus Mackay4-May-04 22:17 
GeneralActiveDocument Creation Date Pin
skoizumi291104-May-04 11:15
sussskoizumi291104-May-04 11:15 
GeneralCrystal Example Pin
Andreas L4-May-04 6:06
Andreas L4-May-04 6:06 
GeneralRe: Crystal Example Pin
Member 9923937-May-04 11:39
Member 9923937-May-04 11:39 
Generalcritical section Pin
Anonymous4-May-04 3:40
Anonymous4-May-04 3:40 
QuestionCan't cast ArrayList to Array? Pin
FruitBatInShades4-May-04 2:05
FruitBatInShades4-May-04 2:05 
AnswerRe: Can't cast ArrayList to Array? Pin
Dave Kreskowiak4-May-04 4:41
mveDave Kreskowiak4-May-04 4:41 
Generalcapture packet and manipulate fields Pin
babur khan3-May-04 23:31
babur khan3-May-04 23:31 

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.