Jasinski Technical Wiki

Navigation

Home Page
Index
All Pages

Quick Search
»
Advanced Search »

Contributor Links

Create a new Page
Administration
File Management
Login/Logout
Your Profile

Other Wiki Sections

Software

PoweredBy

Search Engine

Here you can search through the pages of this Namespace, their attachments and the files uploaded to the system.
Note: the results will only display the items you have permissions to read.



Filter by Category

























































This search, performed through 3.59 MB (635 documents, 14093 words), completed in 0.0 seconds and yielded 30 results.

Cascading Style Sheets Reference — 8.5%

[...] the author of an HTML document block-level element an element which has a line break before and after (e.g. 'H1' in HTML) canvas the part of the UA's drawing surface onto which documents are rendered child element a subelement in SGML (Reference 5) terminology contextual selector a selector that matches elements based on their position in the document structure. A contextual selector consists of several simple selectors. E.g., the contextual selector 'H1.initial B' consists of two simple selectors, [...]

Command Line Options for Various Applications — 4.2%

[...] information on creating user profiles. /COMPACT Target-Database Compacts the database specified before the /compact option and then closes Microsoft Access. If you omit a target database name following the /compact option, the database is compacted to the original database name and folder. To compact to a different name, specify a target database. If you don't include a path in target database, the database is created in your My Documents folder by default. /REPAIR Repairs the database specified before the /repair option and then [...]

Chapter 03: Handling Events and Managing State - MCTS Exam 70-515 — 4.2%

[...] page. InitComplete Fires after all initializations (of page/controls) are completed. PreLoad Fires before view state has been loaded, and before postback processing Load Page is stable, having been initialized and its state been reconstructed. The page's load event is called first, then that for its child controls, then their child controls, etc. Control (postback) events For example: button Click event LoadComplete Fires after all controls are loaded. PreRender Fires after [...]

JSON Data in T-SQL - SQL Server — 4.2%

[...] SQL Server See Also Transforming AppSettings.json to Azure Configuration Settings Sample Data The Before field looks like this [{ "Id": 392571, "CreatedOn": "2019-06-19T03: 00: 28" }] Sample Code select top 10 Id ,a.[Before] [...]

ActiveX Objects and Controls - Visual Basic 6.0 — 4.2%

[...] change To allow the UserControl to assimilate properties of the host form WriteProperties Just before VB destroys the instance of the running control at Host Design-Time To retrieve changes to the ActiveX control and persist them into the form’s storage ReadProperties Just before VB instantiates the control at Host Design Time To retrieve property settings for the ActiveX control from the form’s storage and apply them to the control Custom Events Events are declared in the General Declarations section Event event-name ([ [...]

Database Mirroring Setup - SQL Server — 4.2%

[...] for the database, you will need to execute a ALTER DATABASE DatabaseName SET PARTNER OFF statement before executing the following statement. ALTER DATABASE [ DatabaseName ] SET PARTNER = 'TCP:// PrincipalServerName :8123' 10. Complete mirroring on principal server For each database of interest, execute the following statement on the Principal server, noting the following. If the PARTNER is already set for the database, you will need to execute a ALTER DATABASE DatabaseName SET PARTNER OFF statement before executing the following statements. [...]

Common Functions - SQL Server Reporting Services — 2.8%

[...] function returns one of the following, depending on which date(s) are NULL. (not specified) On and before xx/xx/xxxx On and after xx/xx/xxxx xx/xx/xxxx to xx/xx/xxxx {copytext|DateRange} '================================================================================================== Function [...]

Data Migration without SSIS — 2.8%

[...] so as to not violate any foreign key constraints, and a SET IDENTITY_INSERT ON statement is executed before each INSERT statement (where appropriate), so that the target database ends up being as close a copy to the source as possible. Walk-Through Step 1 — Create Linked Servers This step is required in order to setup your SYNONYM objects in a later step. How to create a linked server is beyond the scope of this article. Step 2 — Create the MIGRATION Database This is done via SQL Server Management Studio by navigating to Object Explorer > (server of interest) [...]

Enabling Yahoo Email for the MailTo Protocol — 2.8%

[...] HKLM\Software\Clients\Mail should already exist, but you will probably need to create the necessary subkeys before creating the registry entries. HKEY_LOCAL_MACHINE\Software\Clients\Mail\Yahoo Email (Default)="Yahoo Email" HKEY_LOCAL_MACHINE\Software\Clients\Mail\Yahoo Email\Protocols\mailto\Shell\open\command (Default)="C:\Program Files\Internet Explorer\iexplore.exe\" http://us.f130.mail.yahoo.com/ym/Compose?To=%1 2. On the Control Panel , double click the Internet Options icon. This will open the Internet Properties dialog. 3. On the Properties tab, in the Internet [...]

Paging Data and the PageSelector Control — 2.8%

[...] {copytext|params} ,@PageNumber bigint ,@LinesPerPage bigint (2) Include the following code before your SQL statement {copytext|calcs} declare @MinRow bigint ,@MaxRow bigint select @MaxRow = @PageNumber * @LinesPerPage ,@MinRow = @MaxRow - @LinesPerPage + 1 (3) Modify your SQL statement to include a RowNumber column, which is based upon the row_number() over (order by ...) construct and adding a condition to the WHERE based on RowNumber . Old SQL Statement New SQL Statement select * from ... [...]

String Extender Functions — 2.8%

[...] result; } //------------------------------------------------------------------------------ /// <summary> /// Takes a Proper-Cased variable name and adds a space before each /// capital letter. /// </summary> public static string AddSpaces(this string text) { // Special case: if input is all UPPERCASE, add no spaces if (text == text.ToUpperInvariant()) return text; var result = String.Empty; for (int i = 0; i < text.Length; i++) { // If we have multiple upper-case in a row, insert a space only before [...]

C++ Logic Flow Control — 2.8%

[...] TestExpr; IncrExpr) { LoopStmts; } Notes InitExpr is optional, and executed only before the first pass TestExpr is optional. If omitted, is is always TRUE, and the only way to exit the loop is with a BREAK statement TestExpr is tested for truth before [...]

AuditListener - Entity Framework — 2.8%

[...] DentaCAD.DAL.Queues; // USAGE // Override your DbContext.SaveChanges method, and add the following code before // before [...]

Chapter 02: Using Master Pages, Themes, and Caching - MCTS Exam 70-515 — 2.8%

[...] ThemeName " > in the <system.web> section. Properties defined via StyleSheetTheme are applied before a page's control property set, and therefore can be overridden. By contrast, properties defined via Theme are applied after a page's control property set, and therefore cannot be overridden. Creating a Skin Types of Skins Default Skins — Has no SkinID attribute; automatically applies to all controls of the EXACT same type when a theme is applied to a page. Named Skins — Has a SkinID attribute; applied manually to each control via its SkinID [...]

String Extensions - C# — 2.8%

[...] result; } /// <summary> /// Takes a Proper-Cased variable name and adds a space before each /// capital letter. /// </summary> public static string AddSpaces(this string text) { // Special case: if input is all UPPERCASE, add no spaces if (text == text.ToUpperInvariant()) return text; var result = string.Empty; for (int i = 0; i < text.Length; i++) { // If we have multiple upper-case in a row, insert a space only before [...]

Enforcing Required Fields in a PDF Form - ASP.NET and ActivePDF — 1.4%

Overview This article explains how to validate that required field in a PDF form are completed before saving the file. In the ASPX code, the <body> [...]

Using the GridView Web Control - ASP.NET — 1.4%

[...] Client-Side (User Confirmation) The following VB code demonstrates how to provide for user confirmation before deleting a row from the grid view. A few things [...]

Security Overview - Sitecore — 1.4%

[...] the Master database. So if you change item permissions, you must publish the site (or affected items) before the new permissions will become effective [...]

Updating SSL Certificate on SSRS Server — 1.4%

[...] (20) Edit the Friendly Name field to include the current date (I recommend a YYYY-MM-DD format) (21) BEFORE PROCEEDING, be sure the private key is bound [...]

Words Left - JavaScript — 1.4%

[...] convenience to the user, especially on longer input fields, a web page can show the number of words remaining before the user hits the maximum number allowed in [...]

Characters Left - JavaScript — 1.4%

[...] the user, especially on longer input fields, a web page can show the number of characters remaining before the user hits the maximum number of characters [...]

GridView Class - ASP.NET — 1.4%

[...] class provides the following features. Client-side confirmation (via a JavaScript confirm dialog) before deleting a row from the grid. Callback functions [...]

Merging a Code-Behind File into Its APX File — 1.4%

[...] the code-behind file into <%@ Import namespace="value" %> directives in the ASPX file. Example Before (separate files) ASPX Code <%@ Page Title="" [...]

Quick Reference - jqGrid — 1.4%

[...] undefined . editoptions can also be hard-coded manually, like this. editoptions: { value: '0:Before;1:After' } Sample Controller Method [...]

Copying Websites Between Servers - IIS — 1.4%

[...] http://www.microsoftpro.nl/2011/01/27/exporting-and-importing-sites-and-app-pools-from-iis-7-and-7-5/ Procedure Before running the appcmd command, change directory [...]

Uploading Files - ASP.NET MVC2 — 1.4%

[...] class="reminder"> <li>Files selected for upload will be listed above.</li> <li>Click the "X" before any file to remove it from the list.</li> <li>Files [...]

Regular Expression Samples - .Net Framework — 1.4%

[...] Domains)(?:com|org|net|gov|mil|biz|info|mobi|name|aero|jobs|museum|travel|[a-z]{2}))(?#Port)(?::[\d]{1,5})?(?#Directories)(?:(?:(?:/(?:[-\w~!$+|.,=]|%[a-f\d]{2})+)+|/)+|\?|#)?(?#Query)(?:(?:\?(?:[-\w~!$+|.,*:]|%[a-f\d{2}])+=(?:[-\w~!$+|.,*:=]|%[a-f\d]{2})*)(?:&(?:[-\w~!$+|.,*:]|%[a-f\d{2}])+=(?:[-\w~!$+|.,*:=]|%[a-f\d]{2})*)*)*(?#Anchor)(?:#(?:[-\w~!$+|.,*:=]|%[a-f\d]{2})*)?$ 1 - Validates hour is between 1 and 12; can have space before meridian indicator (am/pm). 2 - 8.3 file [...]

Trigger Quick Reference - SQL Server — 1.4%

[...] for use only within a trigger. The deleted logical table holds the "old" column values (i.e., values before the triggering SQL statement), while the inserted [...]

Declaration Modifiers - C# and VB.NET — 1.4%

[...] a property or procedure is not implemented in this class and must be overridden in a derived class before it can be used NotOverridable sealed method [...]

Cursor Quick Reference - Oracle — 1.4%

[...] tables containing the column references Exclusive row locks are taken on the rows in the active set before the OPEN returns NOWAIT returns an Oracle [...]

ScrewTurn Wiki version 3.0.1.400. Some of the icons created by FamFamFam. Except where noted, all contents Copyright © 1999-2024, Patrick Jasinski.