Click here to Skip to main content
15,887,410 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to store PIXEL VALUES in ARRAY? Pin
dan!sh 29-Dec-09 3:32
professional dan!sh 29-Dec-09 3:32 
AnswerRe: How to store PIXEL VALUES in ARRAY? Pin
Abhinav S28-Dec-09 19:27
Abhinav S28-Dec-09 19:27 
GeneralRe: How to store PIXEL VALUES in ARRAY? Pin
meetmak29-Dec-09 1:12
meetmak29-Dec-09 1:12 
GeneralRe: How to store PIXEL VALUES in ARRAY? Pin
meetmak29-Dec-09 1:13
meetmak29-Dec-09 1:13 
AnswerRe: How to store PIXEL VALUES in ARRAY? Pin
Keith Barrow29-Dec-09 0:00
professionalKeith Barrow29-Dec-09 0:00 
GeneralRe: How to store PIXEL VALUES in ARRAY? Pin
meetmak29-Dec-09 1:08
meetmak29-Dec-09 1:08 
QuestionError while declaring Interfaces regarding HRESULT Pin
giji gangadharan28-Dec-09 17:20
giji gangadharan28-Dec-09 17:20 
AnswerRe: Error while declaring Interfaces regarding HRESULT Pin
Ben Fair29-Dec-09 3:58
Ben Fair29-Dec-09 3:58 
For C#'s COM Interop HRESULT will be returned as uint when using the PreserveSig(true) attribute. Change the method signatures in your interface of the two methods that return HRESULT to return uint instead and you should be good to go. You can also go a step further and create a uint enum that defines the possible result values:

public enum Next_HRESULTs : uint
{
    S_OK 0x...,
    ...
}

public enum Skip_HRESULTs : uint
{
    S_OK 0x...,
    ...
}


Hold on a second here... Don't you think you might be putting the horse ahead of the cart?

QuestionChanging registry settings through .Net app Pin
Anindya Chatterjee28-Dec-09 17:02
Anindya Chatterjee28-Dec-09 17:02 
AnswerRe: Changing registry settings through .Net app Pin
Giorgi Dalakishvili28-Dec-09 19:02
mentorGiorgi Dalakishvili28-Dec-09 19:02 
GeneralRe: Changing registry settings through .Net app Pin
Anindya Chatterjee29-Dec-09 5:33
Anindya Chatterjee29-Dec-09 5:33 
QuestionHelp in calling a Delegate from Library Pin
MAW3028-Dec-09 15:07
MAW3028-Dec-09 15:07 
AnswerRe: Help in calling a Delegate from Library Pin
Luc Pattyn28-Dec-09 15:31
sitebuilderLuc Pattyn28-Dec-09 15:31 
QuestionIs there a way to write an bit to a binary file (NOT a byte) in C# ? [modified] Pin
Alex Manolescu28-Dec-09 13:26
Alex Manolescu28-Dec-09 13:26 
AnswerRe: Is there a way to write an bit to a binary file (NOT a byte) in C# ? Pin
harold aptroot28-Dec-09 13:33
harold aptroot28-Dec-09 13:33 
NewsRe: Is there a way to write an bit to a binary file (NOT a byte) in C# ? Pin
Alex Manolescu28-Dec-09 13:58
Alex Manolescu28-Dec-09 13:58 
GeneralRe: Is there a way to write an bit to a binary file (NOT a byte) in C# ? Pin
harold aptroot28-Dec-09 14:17
harold aptroot28-Dec-09 14:17 
GeneralRe: Is there a way to write an bit to a binary file (NOT a byte) in C# ? Pin
Alex Manolescu28-Dec-09 14:24
Alex Manolescu28-Dec-09 14:24 
GeneralRe: Is there a way to write an bit to a binary file (NOT a byte) in C# ? Pin
harold aptroot28-Dec-09 14:58
harold aptroot28-Dec-09 14:58 
GeneralRe: Is there a way to write an bit to a binary file (NOT a byte) in C# ? Pin
Alex Manolescu28-Dec-09 21:25
Alex Manolescu28-Dec-09 21:25 
AnswerRe: Is there a way to write an bit to a binary file (NOT a byte) in C# ? PinPopular
Luc Pattyn28-Dec-09 13:57
sitebuilderLuc Pattyn28-Dec-09 13:57 
NewsRe: Is there a way to write an bit to a binary file (NOT a byte) in C# ? Pin
Alex Manolescu28-Dec-09 14:00
Alex Manolescu28-Dec-09 14:00 
QuestionClass with parameter of type Pin
Jeroen De Dauw28-Dec-09 12:30
Jeroen De Dauw28-Dec-09 12:30 
AnswerRe: Class with parameter of type Pin
Luc Pattyn28-Dec-09 12:35
sitebuilderLuc Pattyn28-Dec-09 12:35 
GeneralRe: Class with parameter of type Pin
Jeroen De Dauw28-Dec-09 13:16
Jeroen De Dauw28-Dec-09 13:16 

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.