Click here to Skip to main content
16,017,788 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralProb in transferring ASP.NET Web Application Pin
vishalmishra1-May-05 23:15
vishalmishra1-May-05 23:15 
GeneralRe: Prob in transferring ASP.NET Web Application Pin
Christian Graus2-May-05 14:01
protectorChristian Graus2-May-05 14:01 
GeneralRe: Prob in transferring ASP.NET Web Application Pin
vishalmishra3-May-05 4:26
vishalmishra3-May-05 4:26 
GeneralRe: Prob in transferring ASP.NET Web Application Pin
Christian Graus3-May-05 13:18
protectorChristian Graus3-May-05 13:18 
GeneralCrystal Reports Pin
Madni Abbasi1-May-05 20:43
Madni Abbasi1-May-05 20:43 
Questionhow to assign NULL to Date Field ? Pin
Madni Abbasi1-May-05 20:37
Madni Abbasi1-May-05 20:37 
AnswerRe: how to assign NULL to Date Field ? Pin
Madni Abbasi1-May-05 21:11
Madni Abbasi1-May-05 21:11 
GeneralPicture box binding problem Pin
Binary01101-May-05 20:33
Binary01101-May-05 20:33 
I'm trying to bind a picture box to my access 2003 Db in vb.net
Here is my code

    Dim b As Binding = New Binding("Image", dsComics,               "comiclist.ComicCover")<br />
        AddHandler b.Format, AddressOf ConvertPicture<br />
            Me.picCover.DataBindings.Add(b)<br />
<br />
<br />
<br />
Public Sub ConvertPicture(ByVal Sender As Object, ByVal e As ConvertEventArgs)<br />
        Dim b() As Byte = e.Value<br />
        Dim ms As MemoryStream = New MemoryStream<br />
        ms.Write(b, 0, b.Length)<br />
        Dim bmp As Bitmap = New Bitmap(ms)<br />
        ms.Close()<br />
        e.Value = bmp<br />
<br />
      <br />
    End Sub


The line in bold is where it bombs, any ideas

BINARY
GeneralRe: Picture box binding problem Pin
Madni Abbasi1-May-05 20:55
Madni Abbasi1-May-05 20:55 
GeneralRe: Picture box binding problem Pin
Anonymous1-May-05 21:07
Anonymous1-May-05 21:07 
GeneralRe: Picture box binding problem Pin
Madni Abbasi1-May-05 21:27
Madni Abbasi1-May-05 21:27 
GeneralRe: Picture box binding problem Pin
Binary01101-May-05 21:39
Binary01101-May-05 21:39 
GeneralRe: Picture box binding problem Pin
Binary01102-May-05 7:26
Binary01102-May-05 7:26 
Questionhow to write to a few clients in a socket,please Pin
jpartley1-May-05 18:00
jpartley1-May-05 18:00 
GeneralTo Mr. Dave.... Pin
vishalmishra1-May-05 9:11
vishalmishra1-May-05 9:11 
GeneralRe: To Mr. Dave.... Pin
Colin Angus Mackay1-May-05 10:28
Colin Angus Mackay1-May-05 10:28 
GeneralRe: To Mr. Dave.... Pin
Dave Kreskowiak1-May-05 15:43
mveDave Kreskowiak1-May-05 15:43 
GeneralRe: To Mr. Dave.... Pin
Christian Graus1-May-05 17:03
protectorChristian Graus1-May-05 17:03 
GeneralRe: To Mr. Dave.... Pin
Dave Kreskowiak2-May-05 0:48
mveDave Kreskowiak2-May-05 0:48 
GeneralRe: To Mr. Dave.... Pin
vishalmishra1-May-05 20:54
vishalmishra1-May-05 20:54 
GeneralError i got while debugging ASP.NET Application Pin
vishalmishra1-May-05 9:06
vishalmishra1-May-05 9:06 
GeneralRe: Error i got while debugging ASP.NET Application Pin
Dave Kreskowiak1-May-05 15:39
mveDave Kreskowiak1-May-05 15:39 
GeneralVB.Net Math program Pin
John6301-May-05 6:31
John6301-May-05 6:31 
GeneralRe: VB.Net Math program Pin
Fernando Soto1-May-05 9:29
Fernando Soto1-May-05 9:29 
GeneralRe: VB.Net Math program Pin
Brian Van Beek2-May-05 12:02
Brian Van Beek2-May-05 12:02 

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.