• Alva Christeen
  • NEWBIE
  • 5 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 5
    Replies
Hi All,
     I had gone through some problems working withDescription field so now I got a solution to work with "Long Text Area DataType", if you want to count() the records or other filtering things with Description.
   I made a custom field "Notes__c"(Text Area) in contact object and using Trigger i copied the contents of Description field to Notes__c.
here is the code:
trigger CopydescToNotes on Contact (before insert,before update) {
for(Contact c : Trigger.new)
if(c.Description!=null)
c.Notes__c=c.Description;
}


Thanks 
Shephali
MS Access is most popular database which is used by several users. The MS Access database corruption may be occurs due to virus attack, improper system shutdown, synchronization problem etc. If your MS Access database fie has been corrupted or damaged and you want to repair it, then try 3rd-party tool, Kernel for Access File Repair Software. It easy repair and recover corrupt access database file make it usable.

Features of MS Access File Repair Tool:
  • Successfully repairs corrupt Access Database MDB or ACCDB database files
  • Repair corrupt multiple access database files at time
  • Repair corrupted, damaged or inaccessible Access file & restore recovered data in its original state
  • This software is easy to use and more reliable
  • It support MS Access 95/97/2000/XP/2003/2007/2010/2013 and operating systems Windows 95/98/ME/NT/2000/XP/2003/Vista/7/8
  • Free trial version is also available
To get more details and download trial version of Access database recovery tool visit http://www.accessrepair.recoveryfiles.org/

Hi there. I'm wondering if anybody in the past has merged 2 or more pdf files using the getContent()

method or something similar? Is this possible?

Thanks

  • February 24, 2009
  • Like
  • 0