Go Back   Webmaster Malaysia Forum » Pasar Lelong Webmaster » Freelance Marketplace » Looking To Hire

Reply
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 30-10-2007, 02:42 PM
New kid on the block
 
Join Date: Oct 2007
Location: Penang
Posts: 4
Rep Power: 0
PjaHafizah is on a distinguished road
Question need help in VB.NET

Can any one please tell me how to retrieve image that i have stored in SQL SERVER 2000 and display the image in datagrid in VB.net 2003? I am able to display text data in datagrid but the picture cannot be display (in datagrid the picture is not shown but it display byte array[]).
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 31-10-2007, 10:46 AM
New kid on the block
 
Join Date: Oct 2007
Location: Kl
Posts: 2
Rep Power: 0
mkmhmt is on a distinguished road
I've done it several times, do you want real sized pictures or thumbnails in the grid?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 31-10-2007, 03:54 PM
New kid on the block
 
Join Date: Oct 2007
Location: Penang
Posts: 4
Rep Power: 0
PjaHafizah is on a distinguished road
Question

i juz want to display the picture thumbnail..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 31-10-2007, 05:52 PM
New kid on the block
 
Join Date: Oct 2007
Location: Hulu Langat
Posts: 3
Rep Power: 0
merong is on a distinguished road
mkmhmt, is my friend id, i forgot to login b4 posting...

ok, u need to do it in the old asp style.
i'm not sure i can explain it here but, u need to tweak your aspx file.

it depend on what type of control u are using, ie: datagrid or something else.

whatever you do make sure on the processes page the IMG tag src point to your image streamer.

ie: <IMG src="getImage.aspx?id=1">

your streamer = getImage.aspx, must contains code to stream to http
something like


Dim oImg As System.Drawing.Image
Dim ms As New System.IO.MemoryStream

'assign the image from database to ms here

'enable the following lines to give a default image
If ms Is Nothing Then
oImg = System.Drawing.Image.FromFile(Server.MapPath("~/Images/") & "Sunset.jpg")
ms = New System.IO.MemoryStream
oImg.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg)
End If

'this is the real streamer
If Not ms Is Nothing Then
Response.Clear()
Response.ContentType = "image/pjpeg"
Response.AddHeader("Content-Length", ms.Length.ToString)
Response.BinaryWrite(ms.ToArray)
Response.Flush()
End If
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 31-10-2007, 06:15 PM
New kid on the block
 
Join Date: Oct 2007
Location: Penang
Posts: 4
Rep Power: 0
PjaHafizah is on a distinguished road
thanks mkmhmt for the code..
i'll try it
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 26-02-2008, 05:57 PM
New kid on the block
 
Join Date: Oct 2007
Location: Penang
Posts: 4
Rep Power: 0
PjaHafizah is on a distinguished road
Unhappy need help in vb.net

i still have problem with displaying image in vb.net datagrid..can anyone help me pls..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +8. The time now is 04:40 PM. Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0 vBulletin skin by ForumMonkeys.com.


WebmasterMalaysia.com is Proudly Hosted by Exabytes Semi Dedicated Server.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59