Tutorial by Topics: ad

As you build adaptive apps, keep in mind the limitations of size classes: they are generalizations, not specific guides for exact pixel sizes or devices. Never attempt to determine what device your app is running on, or whether it's in a split-screen mode, based on the size classes. Instead, make...
If models are correctly related you can easily load related data using EntityFramework. You have three options to chose from: lazy loading, eager loading and explicit loading. Models used in examples: public class Company { public int Id { get; set; } public string FullName { get; set...
Google Spreadsheet or Google Sheets can help you collaborate with teammates! With their built-in chat and many more features, you can edit and complete projects together. With Google Script and functions, mathematical equations can be done within Google Sheets, just like Excel. A cheaper version, ...
This section provides an overview of what outlook-addin is, and why a developer might want to use it. It should also mention any large subjects within outlook-addin, and link out to the related topics. Since the Documentation for outlook-addin is new, you may need to create initial versions of t...
Classic ASP utilises a technology called ActiveX Data Objects when requiring access to external data sources. The ADODB Library provides three main objects for this purpose, ADODB.Connection, ADODB.Command and the ADODB.Recordset.
NVDA is a free screen reader for Windows, which you can use for testing.
A few notes that are already mentioned in the official docs here and here: If an object has a parent, it has to be in the same thread as the parent, i.e. it cannot be moved to a new thread, nor can you set a parent to an object if the parent and the object live in different threads When an ob...
#version version_number // Which GLSL version we are using void main() { /* Code */ } // Shader's main function in type name; // Specifies an input parameter - GLSL 1.30 out type name; // Specifies an output parameter - GLSL 1.30 inout type name; // Parameter for both input and output - GLSL 1...
Tornado is a Python web framework and asynchronous networking library, that uses non-blocking network I/O which allows it to scale to tens of thousands of open connections, making it ideal for long polling, WebSockets, and other applications that require a long-lived connection to each user. R...

Page 8 of 20