Corecode
Corecode is an E-learning Website, with tutorials on web development language like HTML, CSS, Javascript, PHP including other web developing/designing language, and programming languages like C, C++, Java. Corecode is commenced for providing readers a platform who prefer to online content for learning new things from their own place.
01/02/2021
Lightning Component with Custom Search and Sorting.
Lightning Component with Custom Search and Sorting Lightning aura component with custom search and sorting.Get code from give link: -https://corecodein.blogspot.com/2021/01/lightning-component-with-custom-sea...
19/10/2020
Lightning Component to display Chart using Chart.Js Creating chart in lightning component using Chart.Js plugin in Salesforce.
13/06/2020
Lightning component to create chart with Salesforce data using Chart.Js
Lightning Component to display Chart using Chart.Js Creating chart in lightning component using Chart.Js plugin in Salesforce.
28/03/2020
(Source: WHO Website)
05/03/2017
Be Aware of this kind of error ! Chrome User
Chrome 'Font Wasn't Found' Malware Targets Windows Users A new kind of malware is making the rounds and is reportedly affecting Chrome users on Windows and Mac. Founded by NeoSmart Technologies, the “font wasn’t found” malware is taking the form of what looks like a real Chrome pop-up.
C #: Inheritance Example ; Single.........
namespace inheritance
{
class Program: value //main class
{
static void Main(string[] args)
{
work w = new work();
w.getValue();
w.displayValue();
w.findArea();
}
}
public class value //class name 'value'
{
public int l, b;
public void getValue()
{
Console.WriteLine("enter value of length and breadth");
l = Convert.ToInt16(Console.ReadLine());
b = Convert.ToInt16(Console.ReadLine());
}
public void displayValue()
{
Console.WriteLine("Value of length={0} ",+l+" Value of Breadth="+b);
}
}
class work: value //class name 'work' ; 'value' class
is inherited in this class
{
public void findArea()
{
int a;
a = l * b;
Console.WriteLine("Area for given Length and Breadth is={0}", a);
}
}
}
12/09/2016
Java: Classes, Object, Factorial of a Number
Click here to claim your Sponsored Listing.