Tutorial by Topics: as

Storage class specifiers are keywords that can be used in declarations. They do not affect the type of the declaration, but typically modify the way in which the entity is stored. There are six storage class specifiers, although not all in the same version of the language: auto (until C++11), ...
Rest based connectors and how to deal with them. We all know Loopback does not provide elegance to REST based connections
This describes how to directly obtain a SqlRowSet using SimpleJdbcCall with a stored procedure in your database that has a cursor output parameter, I am working with an Oracle database, I've attempted to create an example that should work for other databases, my Oracle example details issues with O...
Open the directory of your ember.js project, You will find there a file named ember-cli-build.js. You can install Your libraries or plugins using bower, then point the import to the bower_components folder, but if you have a file You want to add, just drag them to the folder of Your project and writ...
Dart-JavaScript interoperability lets us run JavaScript code from our Dart programs. The interoperability is achieved by using the js library to create Dart stubs. These stubs describe the interface we'd like to have with the underlying JavaScript code. At runtime calling the Dart stub will invoke ...
Unlike many web servers, Node isn't installed as a service out of the box. But in production, it's better to have it run as a dæmon, managed by an init system.
Vala provide two syntax constructs to deal with asynchonous operations: async function and yield statement.
This topic will demonstrate how to export records from Acumatica ERP via the Screen-Based API. The Screen-Based API of Acumatica ERP provides only the SOAP interface. If your development platform has limited support for SOAP web services, consider the Contract-Based API providing both SOAP and REST ...
This topic will demonstrate how to export records from Acumatica ERP via the REST Contract-Based API. In contrast to the Screen-Based API of Acumatica ERP, the Contract-Based API provides both SOAP and REST interfaces. For more information on the Contract-Based API, see Acumatica ERP Documentation ...
Asynchronous is a programming pattern which provides the feature of non-blocking code i.e do not stop or do not depend on another function / process to execute a particular line of code. Asynchronous is great in terms of performance, resource utilization and system throughput. But there are some...
QLabel is used for displaying text or an image. No user interaction functionality is provided. The visual appearance of the label can be configured in various ways, and it can be used for specifying a focus mnemonic key for another widget. A QLabel object acts as a placeholder to display non-e...
The first example(a basic splash screen) is not the most efficient way to handle it. As such, it is basic splash screen.
The typedef and (since C++11) using keywords can be used to give a new name to an existing type. typedef type-specifier-seq init-declarator-list; attribute-specifier-seq typedef decl-specifier-seq init-declarator-list; // since C++11 using identifier attribute-specifier-seq(opt) = type-id; /...
In this topic you will learn how to extend the Related Entity Description field with a custom entity for Tasks, Events and Activities.
It's useful to have a T-SQL script for creating and configuring a new database and user for Alfresco Installation purposes. It's boring and time-consuming to jump around many pages on MSDN. I provide the script hereafter: Guidelines for preparing Alfresco Instalation to a SQLServer database,...
One of the challenges I faced when I first started using SAS was not only passing Macro Variable data into a PROC SQL pass-through, but having it resolve properly if it needed quotes around it. When passing a string like value or date/datetime into a PROC SQL pass-through, it most likely needs to ha...
There are several reasons you might come across for needing email capabilities in SAS. You could be sending an email to notify someone that a process passed/failed, you could be sending an email containing Macro Variables that show how many records have been loaded at the end of your data feed, or m...
Window subclassing is a way to hook up into standard window procedure and to modify or extend its default behavior. An application subclasses a window by replacing the the window's original window procedure with a new window procedure. This new window procedure receives any messages sent or posted t...

Page 33 of 40