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 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
| 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
| <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
| 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
| program chkrc; | |
| {$APPTYPE CONSOLE} | |
| uses | |
| Windows, SysUtils, Classes; | |
| const | |
| AppName='chkrc by Stijn Sanders <stijn@yoy.be> 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
| uses WIALib_TLB; | |
| procedure TForm1.Button1Click(Sender: TObject); | |
| var | |
| wia:IWia; | |
| wiad:OleVariant; | |
| wiax:IWiaDispatchItem; | |
| i:integer; | |
| tc1,tc2:cardinal; | |
| begin |
NewerOlder