This file contains hidden or 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
Option Explicit | |
' | |
' BbCodes supported: | |
' b, i, u | |
' size={FontSize} | |
' color={ColorNameOrValue} | |
' font={FontName} | |
' table={Col1_Width},{Col2_Width}, ...[;[TableLeftOffset],[ColumnLeftOffset]] | |
' row={Col1_BackColor},{Col2_BackColor}, ...;<<col1_border>>;<<col2_border>>;...] | |
' <<colN_border>>:=[BorderLeftColor] [BorderLeftWidth],[BorderTopColor] [BorderTopWidth],[BorderRightColor] [BorderRightWidth],[BorderBottomColor] [BorderBottomWidth] |
This file contains hidden or 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
'===================================================================================================================== | |
' | |
' Конвертиране на число в словом с думи за VBA за Microsoft Excel | |
' Copyright (c) 2012-2018 Unicontsoft ([email protected]) | |
' | |
' ОПИСАНИЕ | |
' | |
' По подразбиране конвертира левове (в мъжки род), но може да се използва и за мярка в женски род (например метро | |
' единици) или среден род (например евро). | |
' |
This file contains hidden or 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
/* | |
Sample DBCC DBInfo() With TableResults output. Notice double dbi_dbccLastKnownGood field. Fix at the bottom. | |
ParentObject Object Field VALUE | |
------------------------------- --------------------------------- ------------------------------------ --------------------------------------------------------- | |
DBINFO STRUCTURE: DBINFO @0x00000000420BD670 dbi_dbid 5 | |
DBINFO STRUCTURE: DBINFO @0x00000000420BD670 dbi_status 9502720 | |
DBINFO STRUCTURE: DBINFO @0x00000000420BD670 dbi_nextid 348222265 | |
DBINFO STRUCTURE: DBINFO @0x00000000420BD670 dbi_dbname Dreem15_IVB |
This file contains hidden or 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
DECLARE @TmpColumns TABLE ( | |
TableName SYSNAME | |
, ColumnName SYSNAME | |
, object_id INT | |
, column_id INT | |
) | |
INSERT @TmpColumns | |
SELECT s.TableName, s.ColumnName, c.object_id, c.column_id | |
--FROM ( |
This file contains hidden or 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
Option Explicit | |
DefObj A-Z | |
Private Const STR_MODULE_NAME As String = "cWebBrowserExtension" | |
... | |
Private WithEvents m_oCtl As DirectWebBrowser | |
Private WithEvents m_oCtlExt As VBControlExtender | |
Private m_uHook As UcsDocHostHookData | |
Private m_oExternal As Object |
This file contains hidden or 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
/* | |
Based on http://www.sqlskills.com/blogs/jonathan/finding-implicit-column-conversions-in-the-plan-cache/ | |
Results made (mostly) usable by deduping on statements and ordering output by tables and columns | |
Uses sys.columns instead of INFORMATION_SCHEMA.COLUMNS for performance (nothing gained here) | |
*/ |
This file contains hidden or 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
<?php | |
header('Content-type: application/json; charset=utf8'); | |
$vatno = str_replace(array(' ', '.', '-', ',', '"'), '', $_GET['vatno']); | |
echo serviceCheckVat($vatno, &$name, &$address, &$error); | |
/* | |
include "connect.php"; | |
mysql_query("SET NAMES utf8"); | |
$vatno = mysql_real_escape_string($_GET['vatno']); |
This file contains hidden or 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
sqlio v1.5.SG | |
using system counter for latency timings, 2343896 counts per second | |
8 threads writing for 360 secs to file D:\testfile.dat | |
using 8KB random IOs | |
enabling multiple I/Os per thread with 8 outstanding | |
buffering set to use hardware disk cache (but not file cache) | |
using current size: 36864 MB for file: D:\testfile.dat | |
initialization done | |
CUMULATIVE DATA: | |
throughput metrics: |
This file contains hidden or 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
Option Explicit | |
Const ForWriting = 2 | |
Const TristateTrue = -1 | |
Dim sFile, sOutputFile, oOutputStream, sText | |
sFile = WScript.Arguments.Named("i") | |
sOutputFile = WScript.Arguments.Named("o") | |
If LenB(sFile) = 0 Then | |
WScript.echo "usage: pg_conv.vbs /i:intput_file.sql [/o:output_file.sql]" | |
WScript.Quit 1 |
This file contains hidden or 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
//Convert all unsafe characters in szStringIn to escape sequences | |
//lpszStringIn and lpszStringOut should be different strings | |
inline _Success_(return != FALSE) BOOL AtlEscapeUrl( | |
_In_z_ LPCSTR szStringIn, | |
_Out_writes_to_(dwMaxLength, *pdwStrLen) LPSTR szStringOut, | |
_Out_opt_ DWORD* pdwStrLen, | |
_In_ DWORD dwMaxLength, | |
_In_ DWORD dwFlags = 0) | |
{ | |
ATLENSURE( szStringIn != NULL ); |
OlderNewer