Tutorial by Topics: per

Operators are used to assign or compare values. They consist of a single symbol or keyword and are usually sandwiched between a left and a right value. For example: right = left. Operators are intrinsic to the language (such as =), and not functions such as those provided by System.Math.
Working with Win32 API using C# Windows exposes lots of functionality in the form of Win32 API. Using these API you can perform direct operation in windows, which increases performance of your application.Source Click here Windows exposes a broad range of API. To get information about various AP...
Developer Mode Odoo developer mode allows you to make substantial modifications to the Odoo database such as adding fields to your documents and views. You change the default views of your actions and can even create dynamic forms based on other fields within your models. Advantage While Odoo ...
It should be noted that Meteor is simply Javascript and Node.js. Yes, it's a very specific implementation of those two technologies, and has it's own unique ecosystem, and leverages isomorphic APIs and a JSON datastore to achieve some truly amazing results. But, at the end of the day, Meteor is a ...
Superglobals are built-in variables that are always available in all scopes. Several predefined variables in PHP are "superglobals", which means they are available in all scopes throughout a script. There is no need to do global $variable; to access them within functions or methods. ...
These examples introduce the most used commands of Perl to manipulate Excel via Win32::OLE module. $Sheet->Range(Cell1,[Cell2]) #Select a cell or a range of cells $Sheet->Cells(rowIndex, columnIndex) #Select a cell by index of row and column ParametersDetailsCell1 (required)The na...
There are several libraries used JasperReports Java API for creating reports with Java: DynamicReports DynamicJasper This libraries/frameworks can build reports "on fly" with or without using report's template (jrxml file) JasperReports library VersionRelease date6.3.02016-06...
Icon Fonts are like normal font types that have symbols instead of letters. It can be used in your application with at-most ease. They are: Flexible Scalable Vectors Fast Processable Light Weight Accessible Effect on Size Exporting an image in various sizes for android devices would c...
Operators are methods Most operators are actually just methods, so x + y is calling the + method of x with argument y, which would be written x.+(y). If you write a method of your own having semantic meaning of a given operator, you can implement your variant in the class. As a silly example:...
$this->load->library('library_name'); $this->library_name->function_name(); $this->load->library('cart'); # for helper $this->load->helper('helperName'); $this->cart->insert($Array);

Page 5 of 13