Click here to Skip to main content
15,891,372 members
Home / Discussions / C#
   

C#

 
AnswerRe: convert an array of string Pin
harold aptroot25-Jul-10 11:05
harold aptroot25-Jul-10 11:05 
AnswerRe: convert an array of string Pin
Luc Pattyn25-Jul-10 11:20
sitebuilderLuc Pattyn25-Jul-10 11:20 
AnswerRe: convert an array of string Pin
PIEBALDconsult25-Jul-10 12:10
mvePIEBALDconsult25-Jul-10 12:10 
GeneralRe: convert an array of string Pin
Luc Pattyn25-Jul-10 12:55
sitebuilderLuc Pattyn25-Jul-10 12:55 
GeneralRe: convert an array of string Pin
PIEBALDconsult25-Jul-10 13:02
mvePIEBALDconsult25-Jul-10 13:02 
QuestionSecure storage Pin
L Viljoen25-Jul-10 9:02
professionalL Viljoen25-Jul-10 9:02 
AnswerRe: Secure storage Pin
Eddy Vluggen25-Jul-10 9:28
professionalEddy Vluggen25-Jul-10 9:28 
GeneralRe: Secure storage Pin
harold aptroot25-Jul-10 9:45
harold aptroot25-Jul-10 9:45 
GeneralRe: Secure storage Pin
Eddy Vluggen25-Jul-10 10:05
professionalEddy Vluggen25-Jul-10 10:05 
GeneralRe: Secure storage Pin
harold aptroot25-Jul-10 10:08
harold aptroot25-Jul-10 10:08 
GeneralRe: Secure storage Pin
Eddy Vluggen25-Jul-10 10:41
professionalEddy Vluggen25-Jul-10 10:41 
GeneralRe: Secure storage Pin
harold aptroot25-Jul-10 10:43
harold aptroot25-Jul-10 10:43 
GeneralRe: Secure storage Pin
Eddy Vluggen25-Jul-10 11:00
professionalEddy Vluggen25-Jul-10 11:00 
GeneralRe: Secure storage Pin
L Viljoen25-Jul-10 20:52
professionalL Viljoen25-Jul-10 20:52 
GeneralRe: Secure storage Pin
L Viljoen25-Jul-10 20:51
professionalL Viljoen25-Jul-10 20:51 
GeneralRe: Secure storage Pin
Eddy Vluggen25-Jul-10 23:24
professionalEddy Vluggen25-Jul-10 23:24 
AnswerRe: Secure storage Pin
Stoffy197225-Jul-10 9:33
Stoffy197225-Jul-10 9:33 
GeneralRe: Secure storage Pin
L Viljoen25-Jul-10 21:34
professionalL Viljoen25-Jul-10 21:34 
GeneralRe: Secure storage Pin
harold aptroot25-Jul-10 9:42
harold aptroot25-Jul-10 9:42 
GeneralRe: Secure storage Pin
L Viljoen25-Jul-10 20:57
professionalL Viljoen25-Jul-10 20:57 
GeneralRe: Secure storage Pin
harold aptroot26-Jul-10 2:48
harold aptroot26-Jul-10 2:48 
GeneralRe: Secure storage Pin
L Viljoen26-Jul-10 3:33
professionalL Viljoen26-Jul-10 3:33 
GeneralRe: Secure storage Pin
harold aptroot26-Jul-10 3:37
harold aptroot26-Jul-10 3:37 
GeneralRe: Secure storage Pin
L Viljoen26-Jul-10 3:51
professionalL Viljoen26-Jul-10 3:51 
AnswerRe: Secure storage Pin
Luc Pattyn25-Jul-10 10:38
sitebuilderLuc Pattyn25-Jul-10 10:38 
if you have the image as a byte array, there are at least two Bitmap constructors that might help you:

1.
one takes a stream, any stream, so store the bytes in a MemoryStream and take it from there (don't forget to "rewind" your stream, i.e. position it at zero after writing it)

2.
another takes an IntPtr to the raw data. This needs unsafe code, and/or fixed, and/or GCHandle.

Smile | :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum
Please use <PRE> tags for code snippets, they preserve indentation, and improve readability.


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.