Click here to Skip to main content
15,905,776 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Getting All Logged On Users and IP VB.net Pin
DinoRondelly12-Nov-12 8:05
DinoRondelly12-Nov-12 8:05 
GeneralRe: Getting All Logged On Users and IP VB.net Pin
Dave Kreskowiak12-Nov-12 10:02
mveDave Kreskowiak12-Nov-12 10:02 
QuestionModule error> PLEASE HELP! Pin
leashim11-Nov-12 13:57
leashim11-Nov-12 13:57 
AnswerRe: Module error> PLEASE HELP! Pin
Dave Kreskowiak11-Nov-12 17:08
mveDave Kreskowiak11-Nov-12 17:08 
QuestionPizza order form Pin
Ritchie Vasquez11-Nov-12 5:59
Ritchie Vasquez11-Nov-12 5:59 
AnswerRe: Pizza order form Pin
Richard MacCutchan11-Nov-12 6:21
mveRichard MacCutchan11-Nov-12 6:21 
Questioncheck smtp connection before sending ? Pin
alejx9-Nov-12 9:02
alejx9-Nov-12 9:02 
AnswerRe: check smtp connection before sending ? Pin
Dave Kreskowiak9-Nov-12 9:52
mveDave Kreskowiak9-Nov-12 9:52 
GeneralRe: check smtp connection before sending ? Pin
alejx9-Nov-12 13:47
alejx9-Nov-12 13:47 
GeneralRe: check smtp connection before sending ? Pin
Dave Kreskowiak9-Nov-12 14:15
mveDave Kreskowiak9-Nov-12 14:15 
QuestionAllow a Desktop app to check for JavaScript errors on given URL? Pin
pogowolf9-Nov-12 6:17
pogowolf9-Nov-12 6:17 
QuestionUsing large XML dataset efficiently Pin
Dominick Marciano7-Nov-12 8:16
professionalDominick Marciano7-Nov-12 8:16 
AnswerRe: Using large XML dataset efficiently Pin
David Mujica7-Nov-12 9:10
David Mujica7-Nov-12 9:10 
Questionvb.net Web Browser Control! how to automate when web page is using frames. Pin
Kieran Sloan7-Nov-12 4:27
Kieran Sloan7-Nov-12 4:27 
AnswerRe: vb.net Web Browser Control! how to automate when web page is using frames. Pin
Zaf Khan26-Nov-12 2:13
Zaf Khan26-Nov-12 2:13 
QuestionHelp with Error Message Pin
GeorgieMPorgie5-Nov-12 3:32
GeorgieMPorgie5-Nov-12 3:32 
AnswerRe: Help with Error Message Pin
Wayne Gaylard5-Nov-12 4:05
professionalWayne Gaylard5-Nov-12 4:05 
GeneralRe: Help with Error Message Pin
GeorgieMPorgie5-Nov-12 5:03
GeorgieMPorgie5-Nov-12 5:03 
GeneralRe: Help with Error Message Pin
Wayne Gaylard5-Nov-12 18:31
professionalWayne Gaylard5-Nov-12 18:31 
QuestionUse Reportvier to Show Table with Unknown Number of Columns Pin
Member 76634803-Nov-12 15:03
Member 76634803-Nov-12 15:03 
AnswerRe: Use Reportvier to Show Table with Unknown Number of Columns Pin
Dave Kreskowiak4-Nov-12 4:25
mveDave Kreskowiak4-Nov-12 4:25 
AnswerRe: Use Reportvier to Show Table with Unknown Number of Columns Pin
Mycroft Holmes4-Nov-12 11:54
professionalMycroft Holmes4-Nov-12 11:54 
QuestionHow can i retrieve image to pictureBox ? Pin
heinhtataung1-Nov-12 18:04
heinhtataung1-Nov-12 18:04 
AnswerRe: How can i retrieve image to pictureBox ? Pin
Eddy Vluggen2-Nov-12 0:57
professionalEddy Vluggen2-Nov-12 0:57 
AnswerRe: How can i retrieve image to pictureBox ? Pin
SZLMCL6-Nov-12 23:20
SZLMCL6-Nov-12 23:20 
hy
This function converts byte array to image:

VB
Public Shared Function ByteArrayToImage(ByVal ByteArr() As Byte) As Object
                Dim ImageStream As System.IO.MemoryStream

                Try
                    If ByteArr.GetUpperBound(0) > 0 Then
                        ImageStream = New System.IO.MemoryStream(ByteArr)
                        Return Image.FromStream(ImageStream)
                    Else
                        Return Nothing
                    End If
                Catch ex As Exception
                    Return Nothing
                End Try
            End Function


and this convert back:

VB
Public Shared Function ImageToByteArray(ByVal NewImage As Image) As Object
               Dim ImageStream As System.IO.MemoryStream
               Dim ByteArr() As Byte

               Try
                   ReDim ByteArr(0)
                   If NewImage IsNot Nothing Then
                       ImageStream = New System.IO.MemoryStream
                       NewImage.Save(ImageStream, Imaging.ImageFormat.Jpeg)
                       ReDim ByteArr(CInt(ImageStream.Length - 1))
                       ImageStream.Position = 0
                       ImageStream.Read(ByteArr, 0, CInt(ImageStream.Length))
                   End If
                   Return ByteArr
               Catch ex As Exception
                   Return Nothing
               End Try
           End Function


+You need DBNull check when the column allow nulls.

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.