Free Download

Site Search

 

Top Download

Showing posts with label free download. Show all posts
Showing posts with label free download. Show all posts

Wednesday, January 28, 2009

PeaZip 2.5 ดีกว่า winzip ฟรี อีกต่างหาก

มาลองใช้กันครับ PeaZip 2.5

PeaZip คือ open source สำหรับจัดการ ไฟล์ที่ถูกบีบอัด หรือ ขยายไฟล์

PeaZip ใช้ได้หลาย platform ทั้ง software ที่เป็น 32 และ 64 bit Windows (9x, 2000, XP, Vista) แบะ Linux

  • สร้าง: 7Z, ARC, BZ2, GZ, PAQ/LPAQ, PEA, QUAD/BALZ, TAR, UPX, ZIP;
  • เปิดไฟล์: ACE, ARJ, CAB, DMG, ISO, LHA, RAR, UDF และอีกหลายประเภท
PeaZip allows to save archive's layouts; apply powerful multiple search filters to archive's content; handle multiple archives at once; export job definition as command line; bookmark archives and folders etc...

Other features: AES256 encryption, robust file copy, split/join files (file span), secure file deletion, compare, checksum and hash files, system benchmark, generate random passwords and keyfiles.


Screenshots (Click image to view)

Screenshot 1Screenshot 2Screenshot 3

Latest Version
PeaZip 2.5

Old Versions
PeaZip 2.4.1
PeaZip 2.4
PeaZip 2.3a

Download PeaZip from FileHippo.com

Saturday, May 3, 2008

10 Adobe AIR - Must See- Applications

WebResourcesDepot have collected the "must see" Adobe AIR applications which any developer is interested in Adobe AIR should bookmark.

Some of the Adobe AIR applications have their source codes, so they may help developers to create their own.

Adobe AIR Applications With Source Code

Fresh
Download Fresh: http://download.macromedia.com/pub/labs/air/sample_apps/b3/Fresh.air

Download Fresh Source Code: http://download.macromedia.com/pub/labs/air/sample_apps/b3/Fresh.zip
Fresh is a skinnable RSS reader built entirely using AJAX running on Adobe AIR. The Fresh reader features offline RSS reading, multiple panels within a single window, tabbed browsing, and basic browser integration. Fresh is based on the YUI-Ext / Ext JS library and RSS Feed Viewer sample by Jack Slocum

Roadfinder
Download RoadFinder: http://download.macromedia.com/pub/labs/air/sample_apps/b3/RoadFinder.air
Download RoadFinder Source Code: http://download.macromedia.com/pub/labs/air/sample_apps/b3/RoadFinder.zip

Roadfinder combines two of the most popular online maps, Yahoo! Maps and Google Maps, into a single application. Search for an address by typing it in or dragging it from the desktop. There is close collaboration between these two maps as moving or zooming on either map effects the other.

Spaz
Download Spaz: http://funkatron.com/index.php/site/comments/spaz_a_twitter_client_for_mac_os_x_windows_and_linux/
Download Spaz Source Code: http://code.google.com/p/spaz/

Spaz is a free, open source Twitter client for Mac, Windows and Linux. The current version, known as Spaz.AIR, uses the Adobe Integrated Runtime.

Signet
Download Signet: http://download.macromedia.com/pub/labs/air/sample_apps/b3/Signet.air
Download Signet Source Code: http://download.macromedia.com/pub/labs/air/sample_apps/b3/Signet.zip

Signet gives you the ability to take your del.icio.us bookmarks to the desktop. Built entirely in HTML and JavaScript, Signet uses the YUI-Ext / Ext JS library by Jack Slocum.



Adobe AIR Applications Without Source Code


Ora Time And Expense
Ora Time and Expense is a small easy-to-use application for tracking and generating timesheets, expense reports, and invoices.

Digimix (This is a crazy one)
DigiMix is offering its customers the ability to find, edit, mix & share their music. This application is a demo version of DigiMix.

SearchCoders
This Flex-based chat widget is designed with programmers in mind. The code input feature allows developers to chat about code without disrupting the conversation.


finetune Desktop (Great Application)
The Finetune Desktop is the ultimate companion to your Finetune profile. With this application, you can listen to user created playlists as well as dynamic playlists dedicated to artists and tags. Finetune Desktop gives you quick access to your custom playlists and will keep track of your favorite music from Finetune.


DiggTop
DiggTop is an application for Windows and MacOSX that lets you view a blended list of your favourite Digg topic or keyword feeds. In addition to the full Digg submission information, it will also display a slideshow of images it can scrape from the linked article.

View video submissions from your favourite Digg video categories, and preview some videos right in the application. You can also set up keyword and Digg count filters that will notify you with a sound and icon when new stories match your criteria.


Kuler
The kuler desktop displays RSS feeds of color themes from kuler, an online application to explore, create, and share color harmonies.
Download Kuler: http://download.macromedia.com/pub/labs/kuler/kuler_desktop_1-3_121207.air


StockQ
StockQ is an application built for Adobe AIR which provides streaming stock quotes and manages multiple stock portfolios.


Reference Link: http://www.webresourcesdepot.com/10-adobe-air-must-see-applications/

Wednesday, October 10, 2007

SWFUpload

What is SWFUpload
A small javascript/flash library to get the best of both worlds - The great upload capabilitys of flash and the accessibility and ease of html/css
Upload multiple files at once by ctrl/shift-selecting in dialog
Javascript callbacks on all events
Get file information before upload starts
Style upload elements with XHTML and css
Display information while files are uploading using HTML
No page reloads necessary
Works on all platforms/browsers that has Flash support.
Degrades gracefully to normal HTML upload form if Flash or javascript is unavailable
Control filesize before upload starts
Only display chosen filetypes in dialog
Queue uploads, remove/add files before starting upload

Download

Wednesday, September 19, 2007

HTTP Upload with Progress Monitoring Events



The Chilkat Upload component is freeware. This example demonstrates how to HTTP upload one or more files and monitor the progress with event callbacks. Formal support for the Chilkat Upload component is included with a "Chilkat Bundle" purchase.


download Download Chilkat .NET for 2.0 Framework


download Download Chilkat .NET for 1.0 / 1.1 Framework



//  

// Progress monitor callback -- called each time the percentage completion
// updates to a larger value.

public void OnPercentDone(object source, Chilkat.PercentDoneEventArgs args)
{
// args.PercentDone is an integer value between 1 and 100.
progressBar1.Value = args.PercentDone;

}

// The Chilkat.Upload.HeartbeatMs property determines the interval at which
// AbortCheck events are called. If HeartbeatMs is set to 0 (the default),
// then no AbortCheck events are called. This example sets the HeartbeatMs = 100
// milliseconds.

public void OnAbortCheck(object source, Chilkat.AbortCheckEventArgs args)
{
// Update progressBar2 so we can visually see the heartbeat.
if (progressBar2.Value > 90)
{
progressBar2.Value = 0;
}
else
{
progressBar2.Value += 10;
}

// Handle UI events to keep the user-interface responsive.

System.Windows.Forms.Application.DoEvents();

// To abort the upload while in progress, set the
// args.Abort property = true, like this:
// args.Abort = true;

}

// Demonstrates a BlockingUpload with progress monitoring events.
private void button1_Click(object sender, EventArgs e)
{
Chilkat.Upload upload = new Chilkat.Upload();

// Make sure the EnableEvents property is set to true, otherwise we
// won't receive event callbacks.

upload.EnableEvents = true;

// Call AbortCheck every 100 milliseconds.
upload.HeartbeatMs = 100;

// Setup our event callback handlers.

upload.OnPercentDone += new Chilkat.Upload.PercentDoneEventHandler(OnPercentDone);
upload.OnAbortCheck += new Chilkat.Upload.AbortCheckEventHandler(OnAbortCheck);

// To upload more than one file, call AddFileReference multiple times --
// once for each file to be uploaded.

// The formElementName is arbitrary, and can be anything.

string formElementName = "file1";
// The localFilename is a file that exists on your local filesystem.
string localFilename = "hamlet.xml";
upload.AddFileReference(formElementName, localFilename);

// The Hostname and Path properties specify the server-side
// page/program/script/CGI that will recieve and process the upload.

upload.Hostname = "www.freeaspupload.net";
upload.Path = "/freeaspupload/testUpload.asp";

// The BlockingUpload call does not return until all the files have been
// uploaded (or an error occurs or the upload is aborted by the application).

bool success = upload.BlockingUpload();
if (success == false)
{
textBox1.Text = upload.LastErrorText;
}
else
{
// When BlockingUpload returns true, it indicates that the files/data have
// been uploaded and an HTTP response status indicating success was
// received. If the success/failure of an uploaded is indicated by
// a message in the HTTP response body, you may access it via
// the ResponseBody property (which is a byte array).


textBox1.Text = System.Text.UTF8Encoding.UTF8.GetString(upload.ResponseBody);

MessageBox.Show("Success!");
}
}