Here is an example of function for geting logs from command line. This mean, if you call, for example, chkdsk, you will get what would be writen on a console output. Also, if command failed, you will get that information :) Â function...
If you are using ClientDataSet, with flat file database (SaveToFile, LoadToFile), then also use: procedure TDataModule1.ClientDataSet1AfterOpen(DataSet: TDataSet); begin  ClientDataSet1.LogChanges:=False; end; Because otherwise ClientDataSet...
It seems that phpeveryday site does not working anymore, but I found on Joomla! site also a tutorial about MVC: http://forum.joomla.org/viewtopic.php?f=231&t=136576...
First of all you have to install MSMQ. You will do it through Control panel->Add remove programs->Add/Remove Windows components. Second you will need to access MSMQ for managing, you can do it through Computer Management->Services and...
If you are using my application for MS MQ to deploy on another computer, to send messages you will need to do following: 1. Log on as the local administrator for the client computer, and then open Component Services. Click Start, point to All...
To save XML in human readable format, using OmniXML you will need these lines of code: Â xml := CreateXMLDoc; xml.PreserveWhiteSpace := False; ... xml.Save('c:file.xml',ofIndent); Â
Thursday, 18 December 2008 | 211 hits | Print | PDF | Report