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

C#

 
Questionhow can I delete memory allocated by legacy C++ DLL Pin
JWT25-Feb-04 13:17
JWT25-Feb-04 13:17 
GeneralTransparent Image Pin
Verdant12325-Feb-04 12:28
Verdant12325-Feb-04 12:28 
GeneralRe: Transparent Image Pin
ian mariano25-Feb-04 12:35
ian mariano25-Feb-04 12:35 
GeneralRe: Transparent Image Pin
Verdant12325-Feb-04 12:43
Verdant12325-Feb-04 12:43 
GeneralRe: Transparent Image Pin
Dave Kreskowiak25-Feb-04 13:04
mveDave Kreskowiak25-Feb-04 13:04 
GeneralRe: Transparent Image Pin
Kentamanos25-Feb-04 13:24
Kentamanos25-Feb-04 13:24 
GeneralRe: Transparent Image Pin
Verdant12325-Feb-04 14:31
Verdant12325-Feb-04 14:31 
GeneralRe: Transparent Image Pin
Verdant12325-Feb-04 14:54
Verdant12325-Feb-04 14:54 
hmm, i am doing something wrong... i have not used the memorystream before...
i am not getting any errors during compile, but the png is not comming out at all (redx in internet explorer and "cannot be displayed" because it contains errors in firebird)
can you see what i am doing wrong?
System.IO.MemoryStream memStream = new System.IO.MemoryStream();
fImage.Save(memStream,ImageFormat.Png);
byte[] j = new Byte[memStream.Length];
memStream.Read(j,0,(int)memStream.Length);
ctx.Response.ContentType = "image/png";
ctx.Response.BinaryWrite(j);	

GeneralRe: Transparent Image Pin
Verdant12325-Feb-04 15:06
Verdant12325-Feb-04 15:06 
GeneralRe: Transparent Image Pin
Kentamanos26-Feb-04 6:25
Kentamanos26-Feb-04 6:25 
GeneralRe: Transparent Image Pin
Matthew Hazlett25-Feb-04 14:01
Matthew Hazlett25-Feb-04 14:01 
GeneralRe: Transparent Image Pin
Verdant12325-Feb-04 16:18
Verdant12325-Feb-04 16:18 
GeneralRe: Transparent Image Pin
Kentamanos26-Feb-04 9:00
Kentamanos26-Feb-04 9:00 
GeneralRe: Transparent Image Pin
Verdant12326-Feb-04 12:22
Verdant12326-Feb-04 12:22 
GeneralGetWindow Pin
yyf25-Feb-04 10:21
yyf25-Feb-04 10:21 
GeneralRe: GetWindow Pin
Judah Gabriel Himango25-Feb-04 10:40
sponsorJudah Gabriel Himango25-Feb-04 10:40 
GeneralRe: GetWindow Pin
Heath Stewart25-Feb-04 11:52
protectorHeath Stewart25-Feb-04 11:52 
GeneralRe: GetWindow Pin
Heath Stewart25-Feb-04 11:58
protectorHeath Stewart25-Feb-04 11:58 
GeneralRe: GetWindow Pin
yyf26-Feb-04 3:21
yyf26-Feb-04 3:21 
QuestionGet the width of a (formatted) string? Pin
Verdant12325-Feb-04 9:56
Verdant12325-Feb-04 9:56 
AnswerRe: Get the width of a (formatted) string? Pin
Judah Gabriel Himango25-Feb-04 10:42
sponsorJudah Gabriel Himango25-Feb-04 10:42 
GeneralRe: Get the width of a (formatted) string? Pin
Verdant12325-Feb-04 12:26
Verdant12325-Feb-04 12:26 
GeneralException thrown from within Application.Run(Form); Pin
jerrycainjr25-Feb-04 9:25
jerrycainjr25-Feb-04 9:25 
GeneralRe: Exception thrown from within Application.Run(Form); Pin
scadaguy25-Feb-04 10:33
scadaguy25-Feb-04 10:33 
QuestionHow to get the number of visible forms on screen ? Pin
Andres Coder25-Feb-04 9:04
Andres Coder25-Feb-04 9:04 

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.