This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class CDate | |
{ | |
public static int ToDay_Special_Year(int SAll1) | |
{ | |
DateTime ps1; | |
ps1 = DateTime.Now; | |
int FYear = ps1.Year; | |
int FMonth = ps1.Month; | |
int FDay = ps1.Day; | |
int FDow = (int)(ps1.DayOfWeek); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
html2canvas 0.4.1 <http://html2canvas.hertzen.com> | |
Copyright (c) 2013 Niklas von Hertzen | |
Released under MIT License | |
*/ | |
(function(window, document, undefined) { | |
"use strict"; |