• GordymanLG
  • NEWBIE
  • 0 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 1
    Replies

I know there is are issues surrounding the use of Eclipse and the Force.com IDE on Windows 7 64-bit.  Here's what I've done and what I'm experiencing.

 

1. Uuninstalled the 64-bit JRE and installed the 32-bit version from the Sun website.

2. Installed Ganymede version of Eclipse from the Eclipse.org website

3. Followed the wiki instructions for installing the force.com IDE through the Eclipse software updates path.

 

Everything seems to install just fine.  I am able to create a Force.com project and download Apex components from my org and edit some of my triggers.

 

Then the trouble begins.  I close Eclipse and restart.  It is as if I never installed the Force.com IDE.  It does not show up in Perspectives or in New Project -> Other.  When I go to Help->Software Updates, Force.com IDE does show up as installed software.

 

Anyone have any suggestions to make this work on the 64-bit Windows 7 environment? 

 

I am considering "buying" a new laptop to complete my project.  Fortunately I have a Windows 7 upgrade license available.  I'm hoping to reinstall Windows 7 32-bit on this new machine over the 64-bit version (which is all that seems to come preloaded on anything anymore).  Does anyone have any experience with this configuration?

 

Thanks.

 

 

I have a CaseComment trigger that fires when a new CaseComment is created by a Customer Portal user.  This trigger checks to see if the Case Status is Closed (using the IsClosed field).  If it is closed, I want to change the value of a custom field in the associated Case record from within the CaseComment trigger.

 

Is this possible and if so, how?

 

Here is my trigger code

 

trigger CloseComment on CaseComment (before insert) {
   Map<Id,CaseComment> cMap = new Map<Id,CaseComment>();
   for (CaseComment t: Trigger.new)

          {      cMap.put(t.ParentId,t);   }
   Set<Id> idSet = cMap.keySet();
   for(Case c:[select Id,IsClosed from Case where Id in :idSet]) {

      if(c.IsClosed) {

         c.NewCaseCommentonClosedCase__c = true;

 

        // here is where I want to commit this change to the associated Case record

 

     }

   }

}

 

 

Any help would be greatly appreciated.  If there is documentation on how to do this, a link to it would be just fine.

 

Thanks.

I know there is are issues surrounding the use of Eclipse and the Force.com IDE on Windows 7 64-bit.  Here's what I've done and what I'm experiencing.

 

1. Uuninstalled the 64-bit JRE and installed the 32-bit version from the Sun website.

2. Installed Ganymede version of Eclipse from the Eclipse.org website

3. Followed the wiki instructions for installing the force.com IDE through the Eclipse software updates path.

 

Everything seems to install just fine.  I am able to create a Force.com project and download Apex components from my org and edit some of my triggers.

 

Then the trouble begins.  I close Eclipse and restart.  It is as if I never installed the Force.com IDE.  It does not show up in Perspectives or in New Project -> Other.  When I go to Help->Software Updates, Force.com IDE does show up as installed software.

 

Anyone have any suggestions to make this work on the 64-bit Windows 7 environment? 

 

I am considering "buying" a new laptop to complete my project.  Fortunately I have a Windows 7 upgrade license available.  I'm hoping to reinstall Windows 7 32-bit on this new machine over the 64-bit version (which is all that seems to come preloaded on anything anymore).  Does anyone have any experience with this configuration?

 

Thanks.