Click here to Skip to main content
15,920,383 members
Home / Discussions / Database
   

Database

 
GeneralRe: Backup/restore a database Pin
Luis Alonso Ramos3-May-05 6:36
Luis Alonso Ramos3-May-05 6:36 
QuestionHow to restore Database Pin
eshban2842-May-05 19:45
eshban2842-May-05 19:45 
AnswerRe: How to restore Database Pin
Colin Angus Mackay2-May-05 19:55
Colin Angus Mackay2-May-05 19:55 
AnswerRe: How to restore Database Pin
Christian Graus2-May-05 19:55
protectorChristian Graus2-May-05 19:55 
GeneralGet error description (message) associated with @@Error Pin
_J_2-May-05 10:06
_J_2-May-05 10:06 
GeneralRe: Get error description (message) associated with @@Error Pin
Dan_P2-May-05 15:22
Dan_P2-May-05 15:22 
GeneralRe: Get error description (message) associated with @@Error Pin
_J_2-May-05 21:59
_J_2-May-05 21:59 
Generalpicture box binding problem Pin
Binary01102-May-05 9:36
Binary01102-May-05 9:36 
I'm trying to bind a picture box to my access 2002 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

BINARY
GeneralRe: picture box binding problem Pin
Dan_P2-May-05 15:45
Dan_P2-May-05 15:45 
GeneralRe: picture box binding problem Pin
Binary01102-May-05 18:18
Binary01102-May-05 18:18 
GeneralRe: picture box binding problem Pin
Michael Potter3-May-05 8:54
Michael Potter3-May-05 8:54 
GeneralRe: picture box binding problem Pin
Binary01103-May-05 15:22
Binary01103-May-05 15:22 
GeneralSELECT COUNT into a variable Pin
Luis Alonso Ramos2-May-05 8:10
Luis Alonso Ramos2-May-05 8:10 
GeneralRe: SELECT COUNT into a variable Pin
Christian Graus2-May-05 14:07
protectorChristian Graus2-May-05 14:07 
GeneralRe: SELECT COUNT into a variable Pin
Luis Alonso Ramos2-May-05 14:15
Luis Alonso Ramos2-May-05 14:15 
GeneralRe: SELECT COUNT into a variable Pin
Colin Angus Mackay2-May-05 20:03
Colin Angus Mackay2-May-05 20:03 
GeneralRe: SELECT COUNT into a variable Pin
Luis Alonso Ramos2-May-05 20:52
Luis Alonso Ramos2-May-05 20:52 
GeneralRe: SELECT COUNT into a variable Pin
Colin Angus Mackay2-May-05 22:32
Colin Angus Mackay2-May-05 22:32 
Generalinstall mysql Pin
Anonymous2-May-05 5:52
Anonymous2-May-05 5:52 
GeneralSimple JOIN in Access 2002 Pin
Larsenal1-May-05 13:30
Larsenal1-May-05 13:30 
GeneralRe: Simple JOIN in Access 2002 Pin
turbochimp2-May-05 2:35
turbochimp2-May-05 2:35 
GeneralRe: Simple JOIN in Access 2002 Pin
Larsenal2-May-05 8:00
Larsenal2-May-05 8:00 
QuestionHow to compare time Pin
Leelanga30-Apr-05 22:13
Leelanga30-Apr-05 22:13 
AnswerRe: How to compare time Pin
Alexey A Abramov3-May-05 9:09
Alexey A Abramov3-May-05 9:09 
GeneralRe: How to compare time Pin
Leelanga4-May-05 5:49
Leelanga4-May-05 5:49 

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.