Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

folders

file indexing in java
Sunday, 04 December 2011 12:38
// description of your code here


// insert code here..please give me a source code in java to see the folders and open also

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/zWVxJf8lrPg/14067

 
This Romantic Desktop Adventure Makes the Rest of Us Look Bad [Video]
Thursday, 28 April 2011 09:20
The third anniversary is traditionally reserved for gifts of leather, but Sean Ohlenkamp had a much better idea: an intricate rabbit's hole of desktop folders, filled humor and romance of the non-icky variety. I have but two complaints; this raises the bar too high, and I wanna see what's in the rest of them folders! [Crackajack via Neatorama] More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/FndvnB7IZIQ/this-adorable-desktop-adventure-makes-the-rest-of-us-look-bad

 
Is Tech OCD Consuming Your Life? [Modernliving]
Monday, 31 January 2011 19:00
We're "constantly confronting the onslaught of information, and our brains are trying to make patterns out of the randomness," says TIME's Joel Stein. Obsessively tagged MP3s, meticulous photo folders, whitewashed inboxes—are you too struggling to stay digitally neat? More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/MnVSo1uwV68/is-tech-ocd-consuming-your-life

 
Outlook - messages to archive
Tuesday, 04 January 2011 04:39
Deleted Items = mapi.GetDefaultFolder(3)
Outbox = mapi.GetDefaultFolder(4)
Sent Mail = mapi.GetDefaultFolder(5)
Inbox = mapi.GetDefaultFolder(6)
Calendar = mapi.GetDefaultFolder(9)
Contacts = mapi.GetDefaultFolder(10)
Journal = mapi.GetDefaultFolder(11)
Notes = mapi.GetDefaultFolder(12)
Tasks = mapi.GetDefaultFolder(13)
Drafts = mapi.GetDefaultFolder(16)
All Public Folders = mapi.GetDefaultFolder(18)
Conflicts = mapi.GetDefaultFolder(19)
SyncIssues = mapi.GetDefaultFolder(20)
Local Failures = mapi.GetDefaultFolder(21)
Server Failures = mapi.GetDefaultFolder(22)
Junk = mapi.GetDefaultFolder(23)


#move all 2010 messages from inbox to personal folders "Old Inbox 2010"

require 'win32ole'
outlook = WIN32OLE.new('Outlook.Application')
mapi = outlook.GetNameSpace('MAPI')
#inbox
inbox = mapi.GetDefaultFolder(6)

#personal folders
personal_folders = mapi.Folders.Item('Personal_folder')

#subfolder old inbox 2010 under personal folders
old_inbox = personal_folders.Folders.Item('Old Inbox 2011')

#all items that are older than 1.1.2011 move to archive
inbox.Items.Count.downto(1) do |i|
message = inbox.Items(i)
if message.CreationTime < "2011/01/01 00:00:00"
message.Move(old_inbox)
end
end

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/Vu6MwrgCqok/12803

 
aLaunch 4.1.1
Wednesday, 17 November 2010 03:00
About aLaunch
You can chose to display icons at 16 pixels - 64 pixels. Files and folders can be registered with aLunch as well. Folders will be opened in the Finder. Different categories can be registered by using groups and separators.

Read more: http://www.apple.com/downloads/macosx/system_disk_utilities/alaunch.html

 
Start
Prev
1


Page 1 of 2
Taxonomy by Zaragoza Online