Click here to Skip to main content
15,906,463 members
Home / Discussions / C#
   

C#

 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
OriginalGriff16-Jun-09 22:39
mveOriginalGriff16-Jun-09 22:39 
AnswerRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
DaveyM6916-Jun-09 22:50
professionalDaveyM6916-Jun-09 22:50 
AnswerRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Alan N17-Jun-09 0:05
Alan N17-Jun-09 0:05 
JokeRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
akyriako7817-Jun-09 3:34
akyriako7817-Jun-09 3:34 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
radhikasharma17-Jun-09 3:50
radhikasharma17-Jun-09 3:50 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
akyriako7817-Jun-09 3:54
akyriako7817-Jun-09 3:54 
JokeReminds me of an Aggie Joke Pin
Andrew Rissing17-Jun-09 4:07
Andrew Rissing17-Jun-09 4:07 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
radhikasharma17-Jun-09 4:35
radhikasharma17-Jun-09 4:35 
AnswerRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Lutosław17-Jun-09 8:37
Lutosław17-Jun-09 8:37 
AnswerRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Jeremy Tierman18-Jun-09 5:08
Jeremy Tierman18-Jun-09 5:08 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Edw19-Jun-09 13:06
Edw19-Jun-09 13:06 
AnswerRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
johannesnestler1-Jul-09 5:32
johannesnestler1-Jul-09 5:32 
QuestionItem collection cannot be modified when datasource property is set Pin
Rahul DSG16-Jun-09 21:05
Rahul DSG16-Jun-09 21:05 
AnswerRe: Item collection cannot be modified when datasource property is set Pin
himanshu256116-Jun-09 21:34
himanshu256116-Jun-09 21:34 
AnswerRe: Item collection cannot be modified when datasource property is set Pin
Morteza Karimian Kelishadrokhi29-Jul-11 3:45
Morteza Karimian Kelishadrokhi29-Jul-11 3:45 
AnswerRe: Item collection cannot be modified when datasource property is set Pin
Morteza Karimian Kelishadrokhi29-Jul-11 8:41
Morteza Karimian Kelishadrokhi29-Jul-11 8:41 
QuestionExport to Excel in not working Pin
binod kumar16-Jun-09 20:48
binod kumar16-Jun-09 20:48 
AnswerRe: Export to Excel in not working Pin
Ashfield16-Jun-09 20:52
Ashfield16-Jun-09 20:52 
AnswerRe: Export to Excel in not working Pin
moon_stick17-Jun-09 1:28
moon_stick17-Jun-09 1:28 
QuestionAny UI Control like gmail's "to:" textbox? [modified] Pin
Quake2Player16-Jun-09 19:15
Quake2Player16-Jun-09 19:15 
AnswerRe: Any UI Control like gmail's "to:" textbox? Pin
Isaac Gordon16-Jun-09 20:07
Isaac Gordon16-Jun-09 20:07 
QuestionWebcam QR barcode decoder problem [modified] Pin
S K Y16-Jun-09 19:01
S K Y16-Jun-09 19:01 
i gor error telling missing refference in PixelData...
may i know what refferance...?

i'm tring to do QR barcode decoder...



private void button2_Click(object sender, EventArgs e)
      {
          unsafe
          {
              Image image = Image.FromFile("D:\\1.JPG");
              BitmapData bd = image.LockBits(new Rectangle(0, 0, image.Width, image.Height), ImageLockMode.ReadOnly, PixelFormat.Format24bppRgb);
              int sourceWidth = image.Width * System.Runtime.InteropServices.Marshal.SizeOf(typeof(PixelData));
              if (sourceWidth % 4 != 0)
                  sourceWidth += (4 - (sourceWidth % 4));
              Byte* bitmapBaseByte;
              bitmapBaseByte = (Byte*)bd.Scan0.ToPointer();
              PixelData* pPixel;
              for (int y = 0; y < height; y++)
              {
                  pPixel = (PixelData*)(bitmapBaseByte + y * sourceWidth);
                  for (int x = 0; x < width; x++)
                  {
                      intImage[x][y] = (int)((0xff << 0x18) | (pPixel->red << 0x10) | (pPixel->green << 8) | pPixel->blue);
                      pPixel++;
                  }
              }

              image.UnlockBits(bd);
          }


anyone just help me....thanks...

A S E L A

modified on Wednesday, June 17, 2009 2:10 AM

QuestionHow to hook Adobe reader document using c#? Pin
svt gdwl16-Jun-09 18:33
svt gdwl16-Jun-09 18:33 
QuestionPutting a line of numbers (from a text file) into an array Pin
70superbee16-Jun-09 15:05
70superbee16-Jun-09 15:05 
AnswerRe: Putting a line of numbers (from a text file) into an array Pin
Not Active16-Jun-09 15:56
mentorNot Active16-Jun-09 15:56 

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.