Click here to Skip to main content
15,896,606 members
Home / Discussions / C#
   

C#

 
Questionfind IP-Adress of external hardware (XPort) connected via Ethernet Pin
A_Wolf14-Nov-09 4:30
A_Wolf14-Nov-09 4:30 
AnswerRe: find IP-Adress of external hardware (XPort) connected via Ethernet Pin
Dave Kreskowiak14-Nov-09 11:13
mveDave Kreskowiak14-Nov-09 11:13 
QuestionHow to implement BarCode Reader in Customer inventry system using C#.net??? Pin
Arslan Khan14-Nov-09 3:05
Arslan Khan14-Nov-09 3:05 
AnswerRe: How to implement BarCode Reader in Customer inventry system using C#.net??? Pin
OriginalGriff14-Nov-09 4:47
mveOriginalGriff14-Nov-09 4:47 
GeneralRe: How to implement BarCode Reader in Customer inventry system using C#.net??? Pin
Arslan Khan14-Nov-09 5:20
Arslan Khan14-Nov-09 5:20 
GeneralRe: How to implement BarCode Reader in Customer inventry system using C#.net??? Pin
OriginalGriff14-Nov-09 5:34
mveOriginalGriff14-Nov-09 5:34 
GeneralRe: How to implement BarCode Reader in Customer inventry system using C#.net??? Pin
The Man from U.N.C.L.E.14-Nov-09 5:40
The Man from U.N.C.L.E.14-Nov-09 5:40 
AnswerRe: How to implement BarCode Reader in Customer inventry system using C#.net??? Pin
Jacob Lee16-Nov-14 15:13
Jacob Lee16-Nov-14 15:13 
Hi,i'd like to share my experience with you.Here are some steps about how to implement barcode reader in c#.net:
1. Install .NET Barcode Reader component to your Visual C# .NET project.Add a BarcodeScanner.dll to C# project reference
2. Scan & read linear barcodes in C# class?
C#
string[] barcodes = BarcodeScanner.Scan("code128-image.gif", BarcodeType.Code128); 

3. To improve the reading speed, call ScanSingleBarcode, if there is maximum one barcode per image.
C#
string[] barcodes = BarcodeScanner.ScanSingleBarcode("code39-image.gif", BarcodeType.Code39);

4. To scan defined areas in the image in C#
C#
List<SRegion> areas = new List<SRegion>();
SRegion area = new SRegion(0, 0, 50, 60);
areas.Add(area);
string[] barcodes = BarcodeScanner.ScanRegions("code39image.gif", BarcodeType.Code39, areas);

5. To scan and get more information about the barcode in C#
C#
BarcodeDetail[] barcodeDetails = BarcodeScanner.ScanInDetails("code39image.gif", BarcodeType.Code39);

This is my experience of reading barcode using c#,i hope i can help you more or less.If you have any question,we can make a discussion here.
Questionget the Event log Identity Pin
Jassim Rahma14-Nov-09 3:00
Jassim Rahma14-Nov-09 3:00 
AnswerRe: get the Event log Identity Pin
The Man from U.N.C.L.E.14-Nov-09 5:56
The Man from U.N.C.L.E.14-Nov-09 5:56 
QuestionTaskDialog without a button! Pin
Jassim Rahma14-Nov-09 2:58
Jassim Rahma14-Nov-09 2:58 
AnswerRe: TaskDialog without a button! Pin
The Man from U.N.C.L.E.14-Nov-09 3:55
The Man from U.N.C.L.E.14-Nov-09 3:55 
QuestionCreate a discussion forum using C# Pin
alan20090914-Nov-09 2:56
alan20090914-Nov-09 2:56 
AnswerRe: Create a discussion forum using C# Pin
The Man from U.N.C.L.E.14-Nov-09 3:47
The Man from U.N.C.L.E.14-Nov-09 3:47 
GeneralRe: Create a discussion forum using C# Pin
OriginalGriff14-Nov-09 5:50
mveOriginalGriff14-Nov-09 5:50 
QuestionTaskDialog problem Pin
Jassim Rahma14-Nov-09 2:53
Jassim Rahma14-Nov-09 2:53 
AnswerRe: TaskDialog problem Pin
Luc Pattyn14-Nov-09 2:58
sitebuilderLuc Pattyn14-Nov-09 2:58 
GeneralRe: TaskDialog problem Pin
Jassim Rahma14-Nov-09 3:02
Jassim Rahma14-Nov-09 3:02 
GeneralRe: TaskDialog problem Pin
Dave Kreskowiak14-Nov-09 11:01
mveDave Kreskowiak14-Nov-09 11:01 
QuestionWindows 7 preview and white space Pin
SimpleData14-Nov-09 2:24
SimpleData14-Nov-09 2:24 
AnswerRe: Windows 7 preview and white space Pin
Luc Pattyn14-Nov-09 2:54
sitebuilderLuc Pattyn14-Nov-09 2:54 
GeneralRe: Windows 7 preview and white space Pin
SimpleData14-Nov-09 3:18
SimpleData14-Nov-09 3:18 
GeneralRe: Windows 7 preview and white space Pin
Luc Pattyn14-Nov-09 3:22
sitebuilderLuc Pattyn14-Nov-09 3:22 
GeneralRe: Windows 7 preview and white space Pin
SimpleData14-Nov-09 5:20
SimpleData14-Nov-09 5:20 
QuestionPrevent My Email go to bulk Pin
mahdi_h8414-Nov-09 0:28
mahdi_h8414-Nov-09 0:28 

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.