TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Rully Pratama
NA
7
0
using crystal report??
Jul 5 2012 5:09 AM
i have this code
try
{
cls_Koneksi_DB.objConn.Open();
F_Laporan_Pembelian_Barang lapBeli = new F_Laporan_Pembelian_Barang();
CR_Pembelian_Barang laporan = new CR_Pembelian_Barang();
if (this.radioButton1.Checked == true)
{
laporan.RecordSelectionFormula = "";
}
if (this.radioButton2.Checked == true)
{
laporan.RecordSelectionFormula = "{t_Data_Barang.Tanggal}>='" + dateTimePicker1.Text + "'AND{t_Data_Barang.Tanggal}<='" + dateTimePicker2.Text + "'";
}
lapBeli.
CR_Beli
.DisplayGroupTree = true;// on this row
"Error 1 'SID_TBJATIMULYA.F_Laporan_Pembelian_Barang.CR_Beli' is inaccessible due to its protection level"
lapBeli.CR_Beli.ReportSource = laporan;
lapBeli.CR_Beli.Refresh();
lapBeli.Show();
}
catch (SqlException en)
{
MessageBox.Show("adfasd," + en.ToString() + "");
}
finally
{
cls_Koneksi_DB.objConn.Close();
}
can give me for solution??
Reply
Answers (
1
)
how to store the datagridview values in database using windows applicatin????
Syntax