Click here to Skip to main content
15,898,035 members
Home / Discussions / C#
   

C#

 
Generalwho to use it Pin
imran_rafique28-Aug-02 11:22
imran_rafique28-Aug-02 11:22 
GeneralPropertySheet Pin
Mazdak28-Aug-02 9:49
Mazdak28-Aug-02 9:49 
Generalpassing System.Guid into mediaSeek.SetTimeFormat Pin
Jarrett Vance28-Aug-02 8:51
Jarrett Vance28-Aug-02 8:51 
GeneralASP.NET question Pin
User 988528-Aug-02 5:16
User 988528-Aug-02 5:16 
GeneralInterop reference problem... Pin
Ryan Cromwell28-Aug-02 4:48
Ryan Cromwell28-Aug-02 4:48 
QuestionHow to read Embedded Resource in Assembly (File) ? Pin
Chris Richner28-Aug-02 3:15
Chris Richner28-Aug-02 3:15 
AnswerRe: How to read Embedded Resource in Assembly (File) ? Pin
James T. Johnson28-Aug-02 6:31
James T. Johnson28-Aug-02 6:31 
GeneralImage field in database Pin
Mazdak28-Aug-02 3:05
Mazdak28-Aug-02 3:05 
I want to read Image field from my dataset and create Bitmap object and show it.I use this code:(Northwind database in Access)

int i = myDataGrid.CurrentRowIndex;
byte[] b = (byte[])dataSet11.Tables["Employees"].Rows[i]["Photo"];

if(b.Length > 0)
{
// Open a stream for the image and write the bytes into it
System.IO.MemoryStream stream = new System.IO.MemoryStream(b, true);
				stream.Write(b, 0, b.Length);
            
// Create a bitmap from the stream
			
Bitmap bmp = new Bitmap(stream);

// Check for scaling and assign the bitmap to the Picturebox
if( bmp.Width > 500 && bmp.Height > 300)
.
.
.


But at the lone Bitmap bmp = new Bitmap(stream); this unhandled error happend:


Invalid parameter used.



Any idea?

Mazy

"If I go crazy then will you still
Call me Superman
If I’m alive and well, will you be
There holding my hand
I’ll keep you by my side with
My superhuman might
Kryptonite"
Kryptonite-3 Doors Down

GeneralRe: Image field in database Pin
Nnamdi Onyeyiri28-Aug-02 3:10
Nnamdi Onyeyiri28-Aug-02 3:10 
GeneralRe: Image field in database Pin
Mazdak28-Aug-02 3:14
Mazdak28-Aug-02 3:14 
GeneralRe: Image field in database Pin
Nnamdi Onyeyiri28-Aug-02 6:22
Nnamdi Onyeyiri28-Aug-02 6:22 
GeneralRe: Image field in database Pin
Mazdak28-Aug-02 6:43
Mazdak28-Aug-02 6:43 
GeneralRe: Image field in database Pin
Paul Riley28-Aug-02 3:18
Paul Riley28-Aug-02 3:18 
GeneralRe: Image field in database Pin
Mazdak28-Aug-02 3:45
Mazdak28-Aug-02 3:45 
GeneralRe: Image field in database Pin
Paul Riley28-Aug-02 3:58
Paul Riley28-Aug-02 3:58 
GeneralRe: Image field in database Pin
Mazdak28-Aug-02 5:51
Mazdak28-Aug-02 5:51 
GeneralRe: Image field in database Pin
Mazdak28-Aug-02 6:33
Mazdak28-Aug-02 6:33 
GeneralRe: Image field in database Pin
Paul Riley28-Aug-02 7:48
Paul Riley28-Aug-02 7:48 
GeneralRe: Image field in database Pin
Mazdak28-Aug-02 3:55
Mazdak28-Aug-02 3:55 
GeneralRe: Image field in database Pin
James T. Johnson28-Aug-02 6:21
James T. Johnson28-Aug-02 6:21 
GeneralRe: Image field in database Pin
Mazdak28-Aug-02 6:42
Mazdak28-Aug-02 6:42 
GeneralRe: Image field in database Pin
James T. Johnson28-Aug-02 6:54
James T. Johnson28-Aug-02 6:54 
GeneralRe: Image field in database Pin
leppie28-Aug-02 8:16
leppie28-Aug-02 8:16 
GeneralSound Library for C# Pin
leppie28-Aug-02 0:46
leppie28-Aug-02 0:46 
GeneralRe: Sound Library for C# Pin
Michael Mac28-Aug-02 1:40
Michael Mac28-Aug-02 1:40 

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.