Exchange 2007 Size Limits
Change both receive and send limits if using XATRN and you want to receive larger emails.
Change both receive and send limits if using XATRN and you want to receive larger emails.
If you would like to change a license number for all computers in the network, please do the following: Run AVG Admin Console. From the left navigation tree select Licenses -> Shared settings. Double-click “Shared settings” option in the Shared settings area. Fill the new license number and press Enter key. Right-click the “Shared settings”… Read More »
http://www.phpclasses.org/browse/file/10489.html
http://www.mysqldumper.net/ Not used as yet, testing as of 23rd March 2011
http://www.fpdf.org/ (Used on PTI and JMS) http://www.ros.co.nz/pdf/ Never used, but looks interesting.
PHP Development Guidelines Best practices for PHP development from the EE guys.
Some icons which can be used to enhance mod_autoindex http://www.famfamfam.com/lab/icons/
<VirtualHost *:80> DocumentRoot “/blah/blah/blah” ServerName www.blahblahblah.net ServerAlias blahblahblah.net ServerAdmin webmaster@blahblahblah.net CustomLog logs/access/www.blahblahblah.net.log combined ErrorLog logs/error/www.blahblahblah.net.log # if upload_max_filesize and post_max_size are NOT the same WordPress # will set the maximum upload limit to the lower of the two values. # This was the case with WordPress 3.1 on 21st March 2011 php_value upload_max_filesize 25M php_value … Read More »
20110317162305-How to programmatically obtain the channel code values for System Management Server Service Pack 3
When you are working with a TListView component and want to sort the items based on a custom criteria, you can use the following idea… Suppose you have assigned numbers for the TListItem Caption property and need to sort the ListView when displayed in a report-style. To use custom sorting handle the OnCompare event. If… Read More »
You’ve probably manually copied a workstation record in the SQL database to get around the WORKSTATION NOT REGISTERED message. You need to go into System -> Network -> Workstations, find the new record, open it, save it and it should work.
http://www.metageek.net/products/inssider/
JFDI – My new favourite acronym!
Problem probably caused because Terminal Services Licensing Server wasn’t activated at install time. Activeate it by On client PC run Regedit and rename HKEY_LOCAL_MACHINE\software\microsoft\mslicensing to HKEY_LOCAL_MACHINE\software\microsoft\mslicensing.backup. No need to restart PC to take effect.
Properties of VPN -> Networking Tab -> Advanced -> DNS Tab. Populate DNS servers and DNS Suffix for this connection. Tick both boxes.
unit login; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TLoginForm = class(TForm) LogInButton: TButton; pwdLabel: TLabel; passwordEdit: TEdit; procedure LogInButtonClick(Sender: TObject) ; public class function Execute : boolean; end; implementation {$R *.dfm} class function TLoginForm.Execute: boolean; begin with TLoginForm.Create(nil) do try Result := ShowModal = mrOk; finally Free; end;… Read More »
//returns true if running under Windows Terminal Services function TRemoteSession.IsRemoteSession: boolean; (* const sm_RemoteSession = $1000; *) begin result := GetSystemMetrics(sm_RemoteSession) <> 0; end;
http://www.samknows.com/ http://www.speedtest.net/ http://www.speedtester.bt.com/ http://www.bbc.co.uk/iplayer/diagnostics http://www.vwlowen.co.uk/internet/files.htm – Monitoring software
Choose Type Library “Crystal Report Control” (version 5.2 on my system) – CRYSTL32.OCX Gives me TCrystalReport If you get a complaint during compling saying it can’t find Crystal_TLB go to the PROJECT OPTIONS, click Delphi Compiler then add “E:\My Programs\Delphi2010\[packages]\TCrystalReport” to Search Path.
In order to use the automation features in Crystal Reports 8.0 and higher, you must first import the type libraries into Delphi. 1. From the Delphi IDE main menu, go to Project | Import Type Libary. 2. Highlight ‘Crystal Report 8 Active X Designer Run Time Libary’. 3. In the Class Names box, change the… Read More »
include “functions.kix” $startTime = @Ticks $welcome = “Weclome to @Domain, @Fullname (@WkSta)” SetTitle($welcome) cls COLOR W+/n ? $welcome /************************************************** ** ** Mapping network drivers ** **************************************************/ COLOR Y+/n ? ? “Mapping drives” ? “————–” map_drive(“S:”, “\\econel\shared”) map_drive(“T:”, “\\econel\talisman”) /************************************************** ** ** Sync workstations times with cadserv for ** Teamwork software to work. ** **************************************************/ COLOR… Read More »
Function map_drive($drive_letter, $unc) COLOR W+/n ? “Mapping $drive_letter to $unc” USE $drive_letter /del /persistent USE $drive_letter “$unc” If @ERROR == 0 COLOR G+/n ? ” Connection succesful” Else print_error(@Error, @SError) EndIf EndFunction Function print_error($errorno, $errorstr) COLOR R+/n ? ” Error $errorno – $errorstr” EndFunction Function connect_printer($unc) COLOR W+/n ? “Connecting to $unc” If ADDPRINTERCONNECTION ($unc)… Read More »