Category > Salesforce.com

Invoking Apex from a Custom Button using a Visualforce Page

This post is about creating a custom button to be placed in a detail page using Visualforce page instead of an S-control (deprecated). I will be using Opportunity object for this example.
The Controller:

public class VFController
{
private final ApexPages.StandardController theController;
public List<Opportunity> listOpps = new List<Opportunity>();
 
public [...]

Continue reading

Batch Update SObject in Salesforce.Com (VB.Net)

I’m sharing this code because I know a lot of new salesforce developers are pulling their hair out looking for concrete samples on how to do API batch update. Yes it took me awhile to be able to solve this problem. APEX API documentation doesn’t give it all and it’s frustrating…
So much for that, here’s [...]

Continue reading

, , , ,

May the Force Be With Me

Yes, I’m one of them now! I’m now part of the leader in Customer Relationship Management (CRM) & Cloud Computing…Salesforce.Com!

Continue reading

, ,