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
Anvar S
NA
12
1.3k
auto increment billno and print it on textbox
Aug 2 2018 10:44 PM
public void billno()
{
SqlCommand cmd = new SqlCommand("select count(billno) from saletable", con);
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataTable dt = new DataTable();
da.Fill(dt);
if(dt.Rows.Count>0)
{
}
}
Reply
Answers (
8
)
Regardin Asp.net core
Print pos bill on thermal roll printer using RDLC in ASp.net