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
Goran Bibic
482
2.9k
198.2k
Generate ean13 bar code C#
Nov 5 2020 4:31 AM
I have error in this line
ean13.Code = BarcodeEAN.
GetBarsEAN13
(row.Cells[12].Value.ToString(),
false
, BarcodeEAN.EAN13);
Error
everity Code Description Project File Line Suppression State
Error CS1501 No overload for method 'GetBarsEAN13' takes 3 arguments BSS C:\Users\GB\source\repos\BSS\BSS\7101_Proizvodni_Proces_Pregled.cs 5317 Active
Complete code
BarcodeEAN ean13 =
new
BarcodeEAN();
ean13.CodeType = Barcode.EAN13;
ean13.ChecksumText =
true
;
ean13.GenerateChecksum =
true
;
ean13.Code = BarcodeEAN.GetBarsEAN13(row.Cells[12].Value.ToString(),
false
, BarcodeEAN.EAN13);
System.Drawing.Bitmap bm =
new
System.Drawing.Bitmap(ean13.CreateDrawingImage(System.Drawing.Color.Black, System.Drawing.Color.White));
Reply
Answers (
7
)
Editor Value Get.
How to check if a row exist in sql table using datagridview column?