Rundll32.exe is used to run Dynamic Link Library (DLLs) on the Windows operating system. DLLs store code to provide functions to Windows processes and third-party applications, and can be accessed by multiple programs simultaneously. Run a 32 bit DLL function.Rundll32 is available on all version of Windows from Windows 95 onwards, but only runs in 32 bit mode.Continue reading “Rundll32”
Category Archives: Compiler
WebPostData
Nearly all operating systems have a simple command to open up a file, directory, or URL from the command line. But what about to send data in a body to a URL with Http POST: POST Schema Prototyp A sender that generates a message containing a payload body SHOULD generate a Content-Type header field inContinue reading “WebPostData”
XML Reloaded
There are lot of possibilities if you’re in need to parse or write XML files: use TXMLDocument (the MSXML wrapper) or use xml components like OmniXML, NativeXml, ADOM, SAX, libxml2, DIXml, fcl-XML, Fast XMLParser, SimpleXML Now here comes another one: VerySimpleXML – a lightweight, one-unit XML reader/writer in under 500 600 lines of code. UseContinue reading “XML Reloaded”
A Sentiment API
maXbox Starter 82_2 – How to make a Sentiment Analysis, Max Kleiner “Yesterday I was clever, so I wanted to change the world. Today I am wise, so I am changing myself.” – Rumi As you way know, we went through the last magazine report on the BBC News feed, line by line in aContinue reading “A Sentiment API”
JSON Automation
Reading json data in maXbox could be easy. Json data can be read from a file or it could be a json web link. Let us first try to read the json from a web link. Const JsonUrl = ‘https://pomber.github.io/covid19/timeseries.json’; Let us first define the necessary packages “msxml2.xmlhttp and the JSON class”. Let us importContinue reading “JSON Automation”
Fundamentals Library
////////////////////////////////////////////////////////////////////////////Fundamentals 5 Code Library Introduction by Max Kleiner “Love comes unseen; we only see it go.”– Henry Austin Dobson The Fundamentals 5 Code Library is a big toolbox for Delphi and FreePascal. What I appreciate the most in this library are the main utilities for network and internet. This utilities (Utils) it provides involve math,Continue reading “Fundamentals Library”
ADO Connect
TADOConnection encapsulates the ADO connection object. Use TADOConnection for connecting to ADO data stores. The connection provided by a single TADOConnection component can be shared by multiple ADO command and dataset components through their Connection properties. Create an Access database and table Using ADOX: You call the Create with CreateAccessDatabase(MYPATH2) ADOX is an extension toContinue reading “ADO Connect”
Another maXbox Build
Computer software consists of a series of instructions in the programming language Object Pascal; the coder complies those statements into a form that a computer processor can understand. Building software requires knowledge of computer languages, syntax, machine environment and logic to complete the process from start to finish. Try it online! The version maXbox 4.7.4.64Continue reading “Another maXbox Build”