Click here to Skip to main content
15,889,842 members
Home / Discussions / C#
   

C#

 
AnswerRe: Site not working on IE9 for production server Pin
Dave Kreskowiak11-Aug-14 3:07
mveDave Kreskowiak11-Aug-14 3:07 
AnswerRe: Site not working on IE9 for production server Pin
Pete O'Hanlon11-Aug-14 5:27
mvePete O'Hanlon11-Aug-14 5:27 
QuestionExcel.interop error Pin
Member 1098941510-Aug-14 20:28
Member 1098941510-Aug-14 20:28 
SuggestionRe: Excel.interop error Pin
Kornfeld Eliyahu Peter10-Aug-14 20:47
professionalKornfeld Eliyahu Peter10-Aug-14 20:47 
AnswerRe: Excel.interop error Pin
Richard MacCutchan10-Aug-14 21:29
mveRichard MacCutchan10-Aug-14 21:29 
QuestionProblem with my C# code for Motorola MC5574 barcode reader Pin
Jaspar Lamar Crabb10-Aug-14 11:26
Jaspar Lamar Crabb10-Aug-14 11:26 
AnswerRe: Problem with my C# code for Motorola MC5574 barcode reader Pin
Richard Andrew x6410-Aug-14 16:08
professionalRichard Andrew x6410-Aug-14 16:08 
AnswerRe: Problem with my C# code for Motorola MC5574 barcode reader Pin
Bernhard Hiller10-Aug-14 21:41
Bernhard Hiller10-Aug-14 21:41 
You showed us a lot of useless code - e.g. those empty event handlers, why do you do that?
Next, I wonder how it works at all...
Even before you call InitializeComponent of the Form, you call the scan method of the BarcodeReader, and its call back function (the OnScan event) is not yet connected...
Add another button for starting the scan, and order things correctly:
C#
public Form1()
{
    InitializeComponent();

    MyBarcode = new Barcode2();
    MyBarcode.OnScan += new Barcode2.OnScanHandler(myBarcode_OnScan);
    MyBarcode.Enable();
}

private void btnScan_Click(object sender, EventArgs e)
{
    MyBarcode.Scan();
}

AnswerRe: Problem with my C# code for Motorola MC5574 barcode reader Pin
Gerry Schmitz11-Aug-14 19:52
mveGerry Schmitz11-Aug-14 19:52 
Questiondownload webpage Complete Pin
Member 94738099-Aug-14 22:48
Member 94738099-Aug-14 22:48 
AnswerRe: download webpage Complete Pin
Richard MacCutchan10-Aug-14 1:51
mveRichard MacCutchan10-Aug-14 1:51 
QuestionRe: download webpage Complete Pin
Member 947380910-Aug-14 4:07
Member 947380910-Aug-14 4:07 
AnswerRe: download webpage Complete Pin
Richard MacCutchan10-Aug-14 6:09
mveRichard MacCutchan10-Aug-14 6:09 
AnswerRe: download webpage Complete Pin
Kornfeld Eliyahu Peter10-Aug-14 6:28
professionalKornfeld Eliyahu Peter10-Aug-14 6:28 
GeneralRe: download webpage Complete Pin
Member 947380910-Aug-14 18:32
Member 947380910-Aug-14 18:32 
QuestionRe: download webpage Complete Pin
Member 947380911-Aug-14 5:42
Member 947380911-Aug-14 5:42 
AnswerRe: download webpage Complete Pin
Eddy Vluggen11-Aug-14 7:06
professionalEddy Vluggen11-Aug-14 7:06 
QuestionRe: download webpage Complete Pin
Member 947380911-Aug-14 21:33
Member 947380911-Aug-14 21:33 
AnswerRe: download webpage Complete Pin
thatraja11-Aug-14 23:15
professionalthatraja11-Aug-14 23:15 
QuestionHow to process data asynchronous when (socket ) recieving data high frequently Pin
Peng20139-Aug-14 6:53
Peng20139-Aug-14 6:53 
AnswerRe: How to process data asynchronous when (socket ) recieving data high frequently Pin
Eddy Vluggen11-Aug-14 7:08
professionalEddy Vluggen11-Aug-14 7:08 
Questionngen in windows applications c# Pin
Zeyad Jalil9-Aug-14 2:03
professionalZeyad Jalil9-Aug-14 2:03 
AnswerRe: ngen in windows applications c# Pin
Dave Kreskowiak9-Aug-14 4:25
mveDave Kreskowiak9-Aug-14 4:25 
GeneralRe: ngen in windows applications c# Pin
Zeyad Jalil9-Aug-14 19:27
professionalZeyad Jalil9-Aug-14 19:27 
GeneralRe: ngen in windows applications c# Pin
Dave Kreskowiak10-Aug-14 4:45
mveDave Kreskowiak10-Aug-14 4:45 

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.