If you have problem with images, like when you hit button Image on bottom of a page, to upload picture, and it first displays upload button as a regular button but then quickly changes to the flat layout, then try under the Global Config settings,...
Add one of the following blocks of code to the top of the file and save.
getTitle(); $conf =& JFactory::getConfig(); $sitename = $conf->getValue('config.sitename'); ...
If you want your HTML code in the articles to keep clean, to keep your Indentation/Tabs/Space Policy (justification), then in plugins find TinyMCE plugin and set Code Cleanup on Save = Never
If CreateProcess doesn't work:
if CreateProcess ... then
...
else //it doesn't work
strLog := SysErrorMessage(GetLastError ); //information why it doesn't work
Wednesday, 29 July 2009 | 166 hits | Print | PDF | Report
If you want to change regional settings for your application (not globaly for Windows), you can use this code:
function MakeLCID( lgID: Word; srtid: Word ): DWORD; begin Result := MakeLong( lgid, srtid ); end; function...
If you are using Microsoft drivers for connection to MS SQL 2008, and receiving this kind of error, then, you will need to download new drivers from here. After that you will need to download sqlncli.msi (you will get the link in sqlsrv_errors())
Representational State Transfer History REST is architectural style developed in parallel to the HTTP/1.1 protocol The largest known implementation of a system conforming to the REST architectural style is the Web It is possible to design a...
Ok, here is my little fun application, sendig messages chat and SMS from Delphi using skype. First, you have to download skype. Install it, start it, and create / login to your account. I will not explain every lines of code, instead, you can...