This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
'Main Function www.ExcelDataPro.com | |
Function SpellNumberEDP2(ByVal MyNumber, Optional MyCurrency As String = "") | |
Dim Dollars, Cents, Temp | |
Dim DecimalPlace, Count, x | |
ReDim Place(9) As String | |
Place(2) = " Thousand" | |
Place(3) = " Lacs" | |
Place(4) = " Crores" | |
Place(5) = " Hundred Crores" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>The New York Times</title> | |
</head> | |
<body> | |
<h1>HyperText Markup Language for the web</h1> | |
<p>A new markup language called HyperText Markup language(HTML) will be | |
used by the web browser to interpret the text and images into web pages.</p> | |
<!-- User comment form --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//This is how we initialised component in the old days. | |
//jQuery plugin example | |
$('#myComponentElement').myAwesomeComponent({value:'Awesome'}); | |
//ExtJS framework example | |
Ext.create('Ext.MyAwesomeComponent', { | |
id:'myComponent', | |
renderTo: document.querySelector('#myComponentElement'), | |
html:'Awesome' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//This is how we initialise component in the new days. | |
//Angular template | |
<my-awesome-component value="Awesome"/> | |
//React JSX. Require first capital charactor for custom React component | |
<My-awesome-component value="Awesome"/> | |
//Vue template | |
<my-awesome-component value="Awesome"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>The New York Times</title> | |
</head> | |
<body> | |
<h1>HyperText Markup Language for the web</h1> | |
<p>A new markup language called HyperText Markup language(HTML) will be | |
used by the web browser to interpret the text and images into web pages.</p> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This is an example of how to fetch external data in response to updated props, | |
// If you are using an async mechanism that does not support cancellation (e.g. a Promise). | |
class ExampleComponent extends React.Component { | |
_currentId = null; | |
state = { | |
externalData: null | |
}; |