Click here to Skip to main content
15,885,985 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Create array of objects Pin
dan!sh 14-Jul-08 1:42
professional dan!sh 14-Jul-08 1:42 
RantRe: Create array of objects Pin
Paul Conrad14-Jul-08 7:05
professionalPaul Conrad14-Jul-08 7:05 
AnswerRe: Create array of objects Pin
Guffa14-Jul-08 7:45
Guffa14-Jul-08 7:45 
GeneralRe: Create array of objects [modified] Pin
nishkarsh_k14-Jul-08 21:30
nishkarsh_k14-Jul-08 21:30 
AnswerRe: Create array of objects Pin
Mycroft Holmes14-Jul-08 17:44
professionalMycroft Holmes14-Jul-08 17:44 
QuestionPicture.... Pin
Jamal Abdul Nasir14-Jul-08 0:29
Jamal Abdul Nasir14-Jul-08 0:29 
AnswerRe: Picture.... Pin
~Khatri Mitesh~14-Jul-08 0:52
~Khatri Mitesh~14-Jul-08 0:52 
AnswerRe: Picture.... Pin
Rupesh Kumar Swami14-Jul-08 2:16
Rupesh Kumar Swami14-Jul-08 2:16 
first change the image into byte array as following

Public Function imageToByteArray(ByVal ImageIn As System.Drawing.Image) As Byte()<br />
        Dim ms As MemoryStream = New MemoryStream()<br />
        ImageIn.Save(ms, Imaging.ImageFormat.Bmp)<br />
        Return ms.ToArray()<br />
   End Function

and store this binary data into data

and for convert byte array to image use following

Public Function ByteArrayToimage(ByVal ImageArray As Byte()) As Image<br />
      Dim ms As MemoryStream = New MemoryStream(ImageArray)<br />
      Dim ReturnImage As Image = Image.FromStream(ms)<br />
      Return ReturnImage<br />
  End Function


hope this helps

Rupesh Kumar Swami
Software Engineer,
Integrated Solution,
Bikaner (India)

My Company
My Article

GeneralRe: Picture.... Pin
wall_E18-Nov-08 22:57
wall_E18-Nov-08 22:57 
Questionhelp Pin
salam ellayan13-Jul-08 23:31
salam ellayan13-Jul-08 23:31 
AnswerRe: help Pin
Ashfield14-Jul-08 1:17
Ashfield14-Jul-08 1:17 
Questionhow i make my vb6 appliction compatible to Vista? [modified] Pin
r_mohd13-Jul-08 21:32
r_mohd13-Jul-08 21:32 
AnswerRe: how i make my vb6 appliction compatible to Vista? Pin
Vimalsoft(Pty) Ltd14-Jul-08 5:00
professionalVimalsoft(Pty) Ltd14-Jul-08 5:00 
GeneralRe: how i make my vb6 appliction compatible to Vista? Pin
Mycroft Holmes14-Jul-08 17:49
professionalMycroft Holmes14-Jul-08 17:49 
GeneralRe: how i make my vb6 appliction compatible to Vista? Pin
Vimalsoft(Pty) Ltd14-Jul-08 22:26
professionalVimalsoft(Pty) Ltd14-Jul-08 22:26 
GeneralRe: how i make my vb6 appliction compatible to Vista? Pin
r_mohd14-Jul-08 21:16
r_mohd14-Jul-08 21:16 
GeneralRe: how i make my vb6 appliction compatible to Vista? Pin
Vimalsoft(Pty) Ltd14-Jul-08 22:24
professionalVimalsoft(Pty) Ltd14-Jul-08 22:24 
QuestionWriting to a Mapped Network drive Pin
Stephen Lintott13-Jul-08 20:54
Stephen Lintott13-Jul-08 20:54 
AnswerRe: Writing to a Mapped Network drive Pin
Stephen Lintott13-Jul-08 21:25
Stephen Lintott13-Jul-08 21:25 
GeneralRe: Writing to a Mapped Network drive Pin
Dave Kreskowiak14-Jul-08 4:39
mveDave Kreskowiak14-Jul-08 4:39 
AnswerRe: Writing to a Mapped Network drive Pin
Mycroft Holmes14-Jul-08 17:58
professionalMycroft Holmes14-Jul-08 17:58 
QuestionHow to give VISTA look to my window application form...VB.NET 2.0 Pin
koolprasad200313-Jul-08 20:29
professionalkoolprasad200313-Jul-08 20:29 
AnswerRe: How to give VISTA look to my window application form...VB.NET 2.0 Pin
N a v a n e e t h13-Jul-08 20:50
N a v a n e e t h13-Jul-08 20:50 
AnswerRe: How to give VISTA look to my window application form...VB.NET 2.0 Pin
Vimalsoft(Pty) Ltd14-Jul-08 5:05
professionalVimalsoft(Pty) Ltd14-Jul-08 5:05 
QuestionVB6 : How to create 2nd sheet in excel (.csv) when using Print function? Pin
cocoonwls13-Jul-08 17:59
cocoonwls13-Jul-08 17:59 

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.