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

C#

 
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 
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 
Dear Friends,

Well i found that, it's definitely a String Base 64, 'cause I was able to build a byte array from it with this code:

string strData = dataGridView1[2, 0].Value.ToString();//this from visit table in sample database that i //attached
byte[] data = Convert.FromBase64String(strData);

and i use this :

public Image ByteToImageConvert(byte[] byteArrayIn)
                  {
                           MemoryStream ms = new MemoryStream(byteArrayIn);
                           Image returnImage = Image.FromStream(ms);
                           return returnImage;
                  }


but i face with this problem on " Image returnImage = Image.FromStream(ms);":
Parameter is not valid.


What should i do?
PLease HELP!
thank you!

modified on Thursday, November 5, 2009 6:55 PM

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 
AnswerRe: proper Async reading operation Pin
Jimmanuel5-Nov-09 5:55
Jimmanuel5-Nov-09 5:55 
GeneralRe: proper Async reading operation Pin
Chesnokov Yuriy5-Nov-09 8:28
professionalChesnokov Yuriy5-Nov-09 8:28 
QuestionAssembly redirection in .NET Pin
KarthikonIT5-Nov-09 4:18
KarthikonIT5-Nov-09 4:18 

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.