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

C#

 
GeneralRe: lock block with parameter Pin
OriginalGriff18-Sep-09 0:28
mveOriginalGriff18-Sep-09 0:28 
AnswerRe: lock block with parameter Pin
Nicholas Butler17-Sep-09 22:13
sitebuilderNicholas Butler17-Sep-09 22:13 
Questionhelp on C# EXCEL Pin
gjx_junxian198917-Sep-09 16:29
gjx_junxian198917-Sep-09 16:29 
QuestionGUID Pin
Illegal Operation17-Sep-09 14:39
Illegal Operation17-Sep-09 14:39 
AnswerRe: GUID Pin
PIEBALDconsult17-Sep-09 14:42
mvePIEBALDconsult17-Sep-09 14:42 
GeneralRe: GUID Pin
Illegal Operation17-Sep-09 17:13
Illegal Operation17-Sep-09 17:13 
GeneralRe: GUID Pin
PIEBALDconsult17-Sep-09 19:13
mvePIEBALDconsult17-Sep-09 19:13 
QuestionCopy transparent image to Photoshop Pin
Winkles17-Sep-09 13:04
Winkles17-Sep-09 13:04 
Does anyone know how to copy a transparent image out of a C# application into the clipboard, and then paste it into Photoshop? When I try this the transparency (alpha) is lost. Here's as far as I got, but it doesn't work (transparency is still lost):

// Where bMap is the Bitmap to be copied...

IDataObject dataObject = new DataObject();
dataObject.SetData(bMap);

MemoryStream ms = new MemoryStream();
bMap.Save(ms, ImageFormat.Png);
dataObject.SetData("PNG", false, ms);

Clipboard.SetDataObject(dataObject, true);

AnswerRe: Copy transparent image to Photoshop Pin
Henry Minute17-Sep-09 14:01
Henry Minute17-Sep-09 14:01 
GeneralRe: Copy transparent image to Photoshop Pin
Winkles17-Sep-09 18:03
Winkles17-Sep-09 18:03 
GeneralRe: Copy transparent image to Photoshop Pin
Henry Minute18-Sep-09 1:05
Henry Minute18-Sep-09 1:05 
QuestionCrystal Reports or RDLC Pin
Jassim Rahma17-Sep-09 11:38
Jassim Rahma17-Sep-09 11:38 
AnswerRe: Crystal Reports or RDLC Pin
egenis17-Sep-09 20:24
egenis17-Sep-09 20:24 
Questionc# back up program ? :S Pin
booo2222222222222217-Sep-09 11:06
booo2222222222222217-Sep-09 11:06 
AnswerRe: c# back up program ? :S Pin
EliottA17-Sep-09 11:16
EliottA17-Sep-09 11:16 
GeneralRe: c# back up program ? :S Pin
booo2222222222222217-Sep-09 11:21
booo2222222222222217-Sep-09 11:21 
GeneralRe: c# back up program ? :S Pin
EliottA17-Sep-09 11:26
EliottA17-Sep-09 11:26 
GeneralRe: c# back up program ? :S Pin
booo2222222222222217-Sep-09 11:38
booo2222222222222217-Sep-09 11:38 
GeneralRe: c# back up program ? :S Pin
Not Active17-Sep-09 11:28
mentorNot Active17-Sep-09 11:28 
GeneralRe: c# back up program ? :S Pin
booo2222222222222217-Sep-09 11:33
booo2222222222222217-Sep-09 11:33 
GeneralRe: c# back up program ? :S Pin
EliottA17-Sep-09 11:46
EliottA17-Sep-09 11:46 
GeneralRe: c# back up program ? :S Pin
booo2222222222222217-Sep-09 11:51
booo2222222222222217-Sep-09 11:51 
GeneralRe: c# back up program ? :S Pin
EliottA17-Sep-09 11:53
EliottA17-Sep-09 11:53 
GeneralRe: c# back up program ? :S Pin
booo2222222222222217-Sep-09 12:01
booo2222222222222217-Sep-09 12:01 
GeneralRe: c# back up program ? :S Pin
EliottA17-Sep-09 12:03
EliottA17-Sep-09 12:03 

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.