Click here to Skip to main content
15,929,253 members
Home / Discussions / C#
   

C#

 
GeneralRe: About zedgraph? Pin
lixingyi5-Nov-07 5:09
lixingyi5-Nov-07 5:09 
QuestionMS - Word in Web Applciation Pin
M. J. Jaya Chitra3-Nov-07 19:11
M. J. Jaya Chitra3-Nov-07 19:11 
QuestionMake A Dsn Pin
w2093-Nov-07 17:31
w2093-Nov-07 17:31 
AnswerRe: Make A Dsn Pin
mav.northwind3-Nov-07 23:13
mav.northwind3-Nov-07 23:13 
AnswerRe: Make A Dsn Pin
Paul Conrad4-Nov-07 5:00
professionalPaul Conrad4-Nov-07 5:00 
QuestionRegister clipboard format Pin
kimberleyi3-Nov-07 16:46
kimberleyi3-Nov-07 16:46 
AnswerRe: Register clipboard format Pin
Ravi Bhavnani3-Nov-07 19:28
professionalRavi Bhavnani3-Nov-07 19:28 
QuestionRe: Register clipboard format Pin
kimberleyi4-Nov-07 1:07
kimberleyi4-Nov-07 1:07 
Thanks Ravi. Your sequel article has helped clear up a lot for me. It is one of the best articles I have found on the subject.

I am still having problems retrieving the object from the clipboard. I am reading a chemdraw structure that is stored in a Oracle database as a clob format. I read the clob then I store it in the clipboard as the format "ChemDraw InterchangeFormat". I need to retrieve the structure as a jpeg or bit map to display in my picture field of the windows application. It does not seem to "convert" to a bitmap when retreiving from the clipboard. The GetDataPresent for ChemDraw InterchangeFormat comes back as true, but when I try dataformats.bitmap, it comes back as false. So it goes into the clipboard as one format (chemdraw) and I need it to be reteive in another format (picture, image ...)

What am I doing wrong.
Thanks for your help,
Kim


ido.SetData("ChemDraw InterchangeFormat",true,clob);
Clipboard.SetDataObject(ido, true);

ido = Clipboard.GetDataObject();
if (ido.GetDataPresent("ChemDraw InterchangeFormat", true))
{
// Image data is present on the clipboard
pictureBox1.Image = (Image)ido.GetData(DataFormats.Bitmap);
}
AnswerRe: Register clipboard format Pin
Ravi Bhavnani4-Nov-07 3:34
professionalRavi Bhavnani4-Nov-07 3:34 
GeneralRe: Register clipboard format Pin
kimberleyi4-Nov-07 10:56
kimberleyi4-Nov-07 10:56 
QuestionOpen desktop Pin
Scalee3-Nov-07 14:38
Scalee3-Nov-07 14:38 
AnswerRe: Open desktop Pin
Guffa3-Nov-07 15:42
Guffa3-Nov-07 15:42 
QuestionWeifen Luo's Dock Panel Suite - limiting what goes where? Pin
martin_hughes3-Nov-07 12:11
martin_hughes3-Nov-07 12:11 
AnswerRe: Weifen Luo's Dock Panel Suite - limiting what goes where? Pin
martin_hughes3-Nov-07 12:34
martin_hughes3-Nov-07 12:34 
QuestionWPF PropertyGrid Pin
Bartosz Bien3-Nov-07 11:47
Bartosz Bien3-Nov-07 11:47 
AnswerRe: WPF PropertyGrid Pin
Christian Graus3-Nov-07 15:08
protectorChristian Graus3-Nov-07 15:08 
AnswerRe: WPF PropertyGrid Pin
Denis Vuyka5-Jun-08 10:58
Denis Vuyka5-Jun-08 10:58 
QuestionSystem Sounds Pin
sabrown1003-Nov-07 10:37
sabrown1003-Nov-07 10:37 
AnswerRe: System Sounds Pin
mav.northwind3-Nov-07 20:24
mav.northwind3-Nov-07 20:24 
QuestionHow to retrive the Database and the tables Pin
Assaf823-Nov-07 10:02
Assaf823-Nov-07 10:02 
AnswerRe: How to retrive the Database and the tables Pin
I Believe In GOD3-Nov-07 10:11
I Believe In GOD3-Nov-07 10:11 
GeneralRe: How to retrive the Database and the tables Pin
Assaf823-Nov-07 11:17
Assaf823-Nov-07 11:17 
AnswerRe: How to retrive the Database and the tables [modified] Pin
I Believe In GOD3-Nov-07 21:38
I Believe In GOD3-Nov-07 21:38 
GeneralRe: How to retrive the Database and the tables Pin
Assaf823-Nov-07 21:46
Assaf823-Nov-07 21:46 
AnswerRe: How to retrive the Database and the tables Pin
Giorgi Dalakishvili3-Nov-07 10:19
mentorGiorgi Dalakishvili3-Nov-07 10:19 

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.