Click here to Skip to main content
15,892,517 members
Home / Discussions / C#
   

C#

 
GeneralRe: How do you maintain your connection/DAL in the object layer. Pin
Mycroft Holmes28-Jul-08 20:39
professionalMycroft Holmes28-Jul-08 20:39 
GeneralRe: How do you maintain your connection/DAL in the object layer. Pin
Mark Churchill29-Jul-08 15:51
Mark Churchill29-Jul-08 15:51 
QuestionWPf- Data Binding Problem Pin
topksharma198228-Jul-08 19:44
topksharma198228-Jul-08 19:44 
QuestionHow to find Versioning Information Pin
Mike Bentzen28-Jul-08 18:21
Mike Bentzen28-Jul-08 18:21 
AnswerRe: How to find Versioning Information Pin
Vasudevan Deepak Kumar28-Jul-08 18:36
Vasudevan Deepak Kumar28-Jul-08 18:36 
GeneralRe: How to find Versioning Information Pin
Mike Bentzen28-Jul-08 18:57
Mike Bentzen28-Jul-08 18:57 
GeneralRe: How to find Versioning Information Pin
Mike Bentzen28-Jul-08 19:01
Mike Bentzen28-Jul-08 19:01 
AnswerRe: How to find Versioning Information Pin
Luc Pattyn29-Jul-08 3:23
sitebuilderLuc Pattyn29-Jul-08 3:23 
Questionusing C# CodeDom to generate web service code Pin
AndieDu28-Jul-08 15:57
AndieDu28-Jul-08 15:57 
AnswerRe: using C# CodeDom to generate web service code Pin
Vasudevan Deepak Kumar28-Jul-08 18:37
Vasudevan Deepak Kumar28-Jul-08 18:37 
GeneralRe: using C# CodeDom to generate web service code Pin
AndieDu28-Jul-08 19:20
AndieDu28-Jul-08 19:20 
QuestionStatusStrip SQL Pin
nelsonpaixao28-Jul-08 14:04
nelsonpaixao28-Jul-08 14:04 
Question[Message Deleted] Pin
happy2day28-Jul-08 11:56
happy2day28-Jul-08 11:56 
AnswerRe: C# Programmers... Pin
Christian Graus28-Jul-08 12:48
protectorChristian Graus28-Jul-08 12:48 
GeneralRe: C# Programmers... Pin
happy2day28-Jul-08 12:56
happy2day28-Jul-08 12:56 
GeneralRe: C# Programmers... Pin
Paul Conrad28-Jul-08 17:49
professionalPaul Conrad28-Jul-08 17:49 
QuestionHow to navigate memory using pointers? Pin
CopperCircle28-Jul-08 11:08
CopperCircle28-Jul-08 11:08 
AnswerRe: How to navigate memory using pointers? Pin
Luc Pattyn28-Jul-08 11:17
sitebuilderLuc Pattyn28-Jul-08 11:17 
GeneralRe: How to navigate memory using pointers? Pin
CopperCircle28-Jul-08 13:57
CopperCircle28-Jul-08 13:57 
GeneralRe: How to navigate memory using pointers? Pin
Luc Pattyn28-Jul-08 14:04
sitebuilderLuc Pattyn28-Jul-08 14:04 
AnswerRe: How to navigate memory using pointers? Pin
Guffa28-Jul-08 13:58
Guffa28-Jul-08 13:58 
For a 24 bit bitmap, the location of a pixel can be calculated with:

scan0 + y * scan + x * 3

(Note that for a bitmap that is stored upside down, which is the common way, scan0 points to the last line, and scan is a negative value.)

Your code for looping the image is incomplete. The lines might not be stored end-to-end in memory, you have to skip any extra bytes between the lines (calculated by scan - x * 3). Also, if the bitmap is stored upside down, you will either get the data upside down, or only getting garbage after the first line read.

Despite everything, the person most likely to be fooling you next is yourself.

QuestionExplicitly free byte array Pin
Dudi Avramov28-Jul-08 9:18
Dudi Avramov28-Jul-08 9:18 
AnswerRe: Explicitly free byte array Pin
Luc Pattyn28-Jul-08 9:26
sitebuilderLuc Pattyn28-Jul-08 9:26 
AnswerRe: Explicitly free byte array Pin
led mike28-Jul-08 9:36
led mike28-Jul-08 9:36 
Questiontrouble with RegisterClientScriptBlock Pin
sarajo198128-Jul-08 7:14
sarajo198128-Jul-08 7:14 

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.