Login
Home
KB
Snippets
Current Articles
|
Archives
|
Search
09
How to reset Windows 10 account passwords
posted on November 09, 2019 13:08
The classic renaming of cmd.exe to utilman.exe does not work directly anymore in new versions of Windows. Before the latest feature update of W...
[Read the rest of this article...]
Actions:
E-mail
|
Permalink
|
Comments (0)
02
Outlook 2013 IMAP Crash
posted on October 02, 2019 06:53
https://www.slipstick.com/outlook/2013/outlook-2013-imap-troubles/
[Read the rest of this article...]
Outlook 2013
,
IMAP
Actions:
E-mail
|
Permalink
|
Comments (0)
11
Updating DnnCssInclude
posted on July 11, 2019 15:50
In the designer.cs file OLD . . . // protected global::DotNetNuke.UI.WebControls.DnnCssInclude DnnCssInclude1; NEW . . . protected glo...
[Read the rest of this article...]
DnnCssInclude
Posted in:
C Sharp - C#
,
Custom Modules
Actions:
E-mail
|
Permalink
|
Comments (0)
13
DNN Reports Module Pager CSS
posted on March 13, 2019 08:19
Add this to your stylesheet to pretty up the pager in the DNN Reports Module: .DNN_Reports_Grid_Pager { /*display: inline-block;*/...
[Read the rest of this article...]
Actions:
E-mail
|
Permalink
|
Comments (0)
06
Displaying a Checkbox for Boolean Value in an SSRS Report
posted on February 06, 2019 08:27
Set font to Wingdings . . . . Expression: =IIF(Fields!Parishioner.Value,chr(254),chr(168))
SSRS
Posted in:
Microsoft SQL Server
Actions:
E-mail
|
Permalink
|
Comments (0)
02
Return Boolean as Yes or No
posted on February 02, 2019 12:01
public string ReturnBooleanAsYes_or_No(Boolean choice) { &...
[Read the rest of this article...]
bool
,
boolean
Posted in:
C Sharp - C#
,
private void function()
Actions:
E-mail
|
Permalink
|
Comments (0)
31
disable auto fill for forms
posted on January 31, 2019 10:27
autocomplete="off" should do the trick! Put this in your <form tag or in every <input tag like this: <form autocomplete="off...
[Read the rest of this article...]
Actions:
E-mail
|
Permalink
|
Comments (0)
17
sql to validate an email address
posted on January 17, 2019 14:33
Select * from Clients WHERE (ClientEmailAddress NOT LIKE '%_@__%.__%') AND (LEN(ClientEmailAdd...
[Read the rest of this article...]
Actions:
E-mail
|
Permalink
|
Comments (0)
30
DotNetNuke.Common.Utilities.CBO.FillObject is obsolete
posted on December 30, 2018 07:31
DotNetNuke.Common.Utilities.CBO.FillObject(System.Data.IDataReader, System.Type) is obsolete: Obsolete in DotNetNuke 7.3. Replaced by FillObject...
[Read the rest of this article...]
Actions:
E-mail
|
Permalink
|
Comments (0)
26
Get ModuleSettings and TabModuleSettings from Another Module
posted on December 26, 2018 15:15
// GET MODULE SETTINGS var mc = new ModuleController(); var mi = mc.GetModule(1534); var tSettings = mi.ModuleSettings; &...
[Read the rest of this article...]
Posted in:
Custom Modules
Actions:
E-mail
|
Permalink
|
Comments (0)
Page 4 of 32
First
Previous
1
2
3
[4]
5
6
7
8
9
10
Next
Last