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
uses WIALib_TLB; | |
procedure TForm1.Button1Click(Sender: TObject); | |
var | |
wia:IWia; | |
wiad:OleVariant; | |
wiax:IWiaDispatchItem; | |
i:integer; | |
tc1,tc2:cardinal; | |
begin |
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
program chkrc; | |
{$APPTYPE CONSOLE} | |
uses | |
Windows, SysUtils, Classes; | |
const | |
AppName='chkrc by Stijn Sanders <[email protected]> 2012';//version? |
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
Private Sub CheckEmptySubject() | |
Dim fi | |
Dim mi As Object | |
Dim s As String | |
Set fi = Application.GetNamespace("MAPI").GetDefaultFolder(olFolderInbox) | |
If fi.Items.Count <> 0 Then | |
Set mi = fi.Items.Item(fi.Items.Count) | |
If mi.Subject = "" Then | |
mi.Subject = "<E-mail without subject by " & mi.SenderName & " on " & CStr(Now) & ">" | |
'mi.ConversationTopic |
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
<style><!-- | |
TABLE,P {padding:0.2em;} | |
TH {padding: 0.2em;border:1px solid green;} | |
TH.sorted_up {background-color:#CFC;} | |
TH.sorted_down {background-color:#FCC;} | |
TD {padding: 0.2em;border:1px solid blue;} | |
TD.n {text-align:right;} | |
//--></style> | |
<table id="sortable" cellspacing="0" cellpadding="2"> |
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
unit SSCCE_arc; | |
//see also http://stackoverflow.com/questions/22846335/why-is-this-tstreamadapter-not-released | |
interface | |
procedure SSCCE_arc1; | |
implementation |
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
unit PdfParser; | |
interface | |
uses SysUtils, Classes; | |
type | |
TPdfDocument=class;//forward | |
TPdfDataBlockType=(dbtDictionary,dbtArray,dbtSingleValue); |
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
{ | |
"name":"Brussels-National", | |
"level":"hard", | |
"radio":"Brussels", | |
"icao":"EBBR", | |
"wind":{ | |
"angle":230, | |
"speed":5 | |
}, | |
"fixes":{ |
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
unit FDFACXLib_TLB; | |
// ************************************************************************ // | |
// WARNING | |
// ------- | |
// The types declared in this file were generated from data read from a | |
// Type Library. If this type library is explicitly or indirectly (via | |
// another type library referring to this type library) re-imported, or the | |
// 'Refresh' command of the Type Library Editor activated while editing the | |
// Type Library, the contents of this file will be regenerated and all |
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
unit Acrobat_TLB; | |
// ************************************************************************ // | |
// WARNING | |
// ------- | |
// The types declared in this file were generated from data read from a | |
// Type Library. If this type library is explicitly or indirectly (via | |
// another type library referring to this type library) re-imported, or the | |
// 'Refresh' command of the Type Library Editor activated while editing the | |
// Type Library, the contents of this file will be regenerated and all |
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
unit MSDASC_TLB; | |
// ************************************************************************ // | |
// WARNING | |
// ------- | |
// The types declared in this file were generated from data read from a | |
// Type Library. If this type library is explicitly or indirectly (via | |
// another type library referring to this type library) re-imported, or the | |
// 'Refresh' command of the Type Library Editor activated while editing the | |
// Type Library, the contents of this file will be regenerated and all |
OlderNewer