Results 1 to 3 of 3

Thread: [REALLY URGENT] blob datacolumn

  1. #1

    Thread Starter
    Addicted Member dani2's Avatar
    Join Date
    Feb 2005
    Location
    Sibiu.ro
    Posts
    191

    Question [REALLY URGENT] blob datacolumn

    Im creating a datatable manually and I want in one column to place a picture.
    what type has to be the datacolumn?
    VB Code:
    1. mydataview.Table.Columns.Add(New DataColumn("My picture", Type.GetType("System.???????")))
    Last edited by dani2; Oct 4th, 2006 at 08:35 AM.
    Home is where your Head is

  2. #2
    Fanatic Member MetalKid's Avatar
    Join Date
    Aug 2005
    Location
    Green Bay, Wisconsin
    Posts
    534

    Re: [REALLY URGENT] blob datacolumn

    Well, I think it is a Byte Array. I'm not sure how you would get the type of that.

  3. #3
    PowerPoster VBDT's Avatar
    Join Date
    Sep 2005
    Location
    CA - USA
    Posts
    2,922

    Re: [REALLY URGENT] blob datacolumn

    I think it should be an object datatype
    VB Code:
    1. Dim myTable As New DataTable
    2. myTable.Columns.Add("columnName", System.Type.GetType("System.Object"))

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width