Console Archives

Using Developer Console in Salesforce

Author - Webner
|
0 Comments
|

Executing Apex code in the developer console

Login to Salesforce and switch to classic and click Developer Console

Click to debug -> and click “Open Execute Anonymous Window” or Ctrl/E

Write code in the window and execute as following

After executing the code log Read more…

Fill a PDF form using C# console application

Author - Mahesh Kumar
|
0 Comments
|

Fill a PDF form using C# console application

We will be using the SyncFusion Package to fill out the PDF Form Fields. To add SyncFusion to your project follow these steps :

1. Go to Tool -> NuGet Package Manager -> Manage NuGet Packages For Solution
2. Then search Read more…

How to run CakePHP 3.7 Shell Commands in Heroku console

Author - Kailash Kumar
|
0 Comments
|

Learn how to run CakePHP 3.7 Shell Commands in Heroku console

1. Create myCommandShell.php file in src/Shell folder with below content

<?php
namespace App\Shell;
use Cake\Console\Shell;
use App\Controller\PagesController;
class myCommandShell extends Shell {
public function main() {
// do your Read more…

Understanding Developer Console, Workbench and Force.com IDE

Author - Rita Sharma
|
0 Comments
|

What is the purpose of Developer Console, Workbench and Force.com IDE and their differences

Prerequisite: Salesforce Org should be API-enabled for these tools to run. Salesforce API-enabled editions are:

1) Developer Edition
2) Enterprise Edition or above

Below, I am going to describe Read more…