Click here to Skip to main content
15,895,370 members
Home / Discussions / C#
   

C#

 
Questionicons changind while clicking treeview nodes Pin
Chesnokov Yuriy5-Nov-09 8:30
professionalChesnokov Yuriy5-Nov-09 8:30 
AnswerRe: icons changind while clicking treeview nodes Pin
snorkie5-Nov-09 9:27
professionalsnorkie5-Nov-09 9:27 
QuestionHelp ! Database Problem, Unknown Information in an Access DataBase by the MEMO type! [modified] Pin
maysam gamini5-Nov-09 8:27
maysam gamini5-Nov-09 8:27 
AnswerRe: Help ! Database Problem, Unknown Information in an Access DataBase by the MEMO type! Pin
Wes Aday5-Nov-09 9:07
professionalWes Aday5-Nov-09 9:07 
GeneralRe: Help ! Database Problem, Unknown Information in an Access DataBase by the MEMO type! Pin
maysam gamini5-Nov-09 12:20
maysam gamini5-Nov-09 12:20 
GeneralRe: Help ! Database Problem, Unknown Information in an Access DataBase by the MEMO type! Pin
Wes Aday5-Nov-09 12:51
professionalWes Aday5-Nov-09 12:51 
GeneralRe: Help ! Database Problem, Unknown Information in an Access DataBase by the MEMO type! Pin
maysam gamini5-Nov-09 12:59
maysam gamini5-Nov-09 12:59 
GeneralRe: Help ! Database Problem, Unknown Information in an Access DataBase by the MEMO type! Pin
Wes Aday5-Nov-09 14:56
professionalWes Aday5-Nov-09 14:56 
I wouldn't be too sure that the string is encoded in base 64 unless you know for sure that it is. Would be unusual to my way of thinking. I am thinking that the MemoryStream is the invalid parameter because the byte array is invalid.

maysam gamini wrote:
string strData = dataGridView1[2, 0].Value.ToString();


try something like:

byte [] data = new ASCIIEncoding().GetBytes(strData);
MemoryStream ms = new MemoryStream(data);
Image im = new Image.FromStream(ms);


Why is common sense not common?
Never argue with an idiot. They will drag you down to their level where they are an expert.
Sometimes it takes a lot of work to be lazy
Individuality is fine, as long as we do it together - F. Burns

Help humanity, join the CodeProject grid computing team here

GeneralRe: Help ! Database Problem, Unknown Information in an Access DataBase by the MEMO type! Pin
maysam gamini5-Nov-09 20:51
maysam gamini5-Nov-09 20:51 
GeneralRe: Help ! Database Problem, Unknown Information in an Access DataBase by the MEMO type! Pin
Wes Aday6-Nov-09 3:30
professionalWes Aday6-Nov-09 3:30 
AnswerRe: Help ! Database Problem, Unknown Information in an Access DataBase by the MEMO type! [modified] Pin
maysam gamini5-Nov-09 12:40
maysam gamini5-Nov-09 12:40 
GeneralRe: Help ! Database Problem, Unknown Information in an Access DataBase by the MEMO type! Pin
Richard MacCutchan5-Nov-09 23:05
mveRichard MacCutchan5-Nov-09 23:05 
GeneralRe: Help ! Database Problem, Unknown Information in an Access DataBase by the MEMO type! Pin
maysam gamini5-Nov-09 23:43
maysam gamini5-Nov-09 23:43 
GeneralRe: Help ! Database Problem, Unknown Information in an Access DataBase by the MEMO type! Pin
Richard MacCutchan5-Nov-09 23:56
mveRichard MacCutchan5-Nov-09 23:56 
GeneralRe: Help ! Database Problem, Unknown Information in an Access DataBase by the MEMO type! Pin
maysam gamini6-Nov-09 0:35
maysam gamini6-Nov-09 0:35 
QuestionC# WebBrowser changing to detail folder view. Pin
Wheels0125-Nov-09 8:18
Wheels0125-Nov-09 8:18 
QuestionRenaming Pin
_Q12_5-Nov-09 5:43
_Q12_5-Nov-09 5:43 
AnswerRe: Renaming Pin
Ghydo5-Nov-09 5:57
Ghydo5-Nov-09 5:57 
AnswerRe: Renaming Pin
Richard MacCutchan5-Nov-09 6:00
mveRichard MacCutchan5-Nov-09 6:00 
QuestionMulti level pie chart? Pin
BetimD5-Nov-09 5:18
BetimD5-Nov-09 5:18 
AnswerRe: Multi level pie chart? Pin
Saksida Bojan5-Nov-09 6:32
Saksida Bojan5-Nov-09 6:32 
QuestionStrange Property Grid Behaviour Pin
Wags5-Nov-09 4:37
professionalWags5-Nov-09 4:37 
AnswerRe: Strange Property Grid Behaviour Pin
Saksida Bojan5-Nov-09 7:00
Saksida Bojan5-Nov-09 7:00 
AnswerRe: Strange Property Grid Behaviour Pin
Wags5-Nov-09 23:20
professionalWags5-Nov-09 23:20 
Questionproper Async reading operation Pin
Chesnokov Yuriy5-Nov-09 4:25
professionalChesnokov Yuriy5-Nov-09 4:25 

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.