.NET Hore....

simple beginner .NET geek
See also: Other Geeks@INDC

June 2006 - Posts

Let's Learn ATLAS !!
Just share what I already download and make it in a public folder. All of them are free to download at here
Share this post: | | | |
Posted: Jun 15 2006, 11:12 PM by soetam | with 1 comment(s)
Filed under:
One Gigabyte Free Online Storage

Actually it's not a new features in this virtual world. One Gb free online storage ? Do you mean GmailDrive ? No, of course. It's the real free online storage, you can tag your files, you can share your files and also can download it again somewhere. That's what I call : mobility !
Check it out at box.net and openomy.com ......

Share this post: | | | |
Posted: Jun 14 2006, 04:33 AM by soetam | with 1 comment(s)
Filed under:
What a pity !
An information come from one of my colleague, he said that http://www.depdiknas.go.id is hacked !
Is it true ? Or is it just another hoax ?
Well, I try to visit it and this is the screenshot.
( note : taken at 06-06-2006,8:37 AM WIB )

Share this post: | | | |
Posted: Jun 06 2006, 08:36 PM by soetam | with no comments
Filed under:
Creating Thumbnail Images On The Fly

How to create thumbnail image on the fly and keep the aspect ratio :
        Dim imgsource As System.Drawing.Image = _
            System.Drawing.Image. _
            FromFile(Server.MapPath _
            ("~/images/") & ximg)
        Dim img As System.Drawing.Image
        img = New System.Drawing.Bitmap(imgsource, _
            (100 * (imgsource.Width / _
            imgsource.Height)), 100)
        img.Save(Server.MapPath("~/images/") & _
            "thumb" & ximg, _
            System.Drawing.Imaging. _
            ImageFormat.Jpeg)

Put it after upload process of your image.
Note : ximg is your image file name

Share this post: | | | |
Posted: Jun 01 2006, 11:00 PM by soetam | with no comments
Filed under: