NOKIA E71 Turn Off Breathing Light

By , July 29, 2010 10:43 PM

I have a E71 and the notification light is always on breathing light. I have no emails, sms, mms, misscalls or voice messages. I even turn off the notification light off for everything and is still breathing. It is kind of annoying not to know why is breathing.

It’s the “Breathing light” that you need to turn off, rather than any notification:

Tools –> Profiles –> General (or whichever profile you use) –> Personalise –> Breathing light –> Off

Try this and see if it helps.

Outlook Auto Bcc all messages

By , March 12, 2010 10:13 PM

Outlook to automatically Bcc all outgoing messages

Outlook has a rule to automatically Cc another person on outgoing messages, but no equivalent for Bcc. This page offers two code samples for adding such an automatic Bcc. Both use the Application.ItemSend event, which fires whenever a user sends a message or other item.

IMPROVED METHOD

http://www.mcgrathtechnology.com/addins

 

2011

 

Method #1 (Basic)

This version is suitable for Outlook 2003 or later. It uses Outlook objects exclusively and includes error handling to avoid problems with an invalid Bcc address.

Place this VBA code in the built-in ThisOutlookSession module:

Private Sub Application_ItemSend(ByVal Item As Object, _
 Cancel As Boolean)
 Dim objRecip As Recipient
 Dim strMsg As String
 Dim res As Integer
 Dim strBcc As String
 On Error Resume Next

 ' #### USER OPTIONS ####
 ' address for Bcc -- must be SMTP address or resolvable
 ' to a name in the address book
 strBcc = "someone@somewhere.dom"

 Set objRecip = Item.Recipients.Add(strBcc)
 objRecip.Type = olBCC
 If Not objRecip.Resolve Then
 strMsg = "Could not resolve the Bcc recipient. " & _
 "Do you want still to send the message?"
 res = MsgBox(strMsg, vbYesNo + vbDefaultButton1, _
 "Could Not Resolve Bcc Recipient")
 If res = vbNo Then
 Cancel = True
 End If
 End If

 Set objRecip = Nothing
End Sub

Continue reading 'Outlook Auto Bcc all messages'»

Video Calling on Trixbox

By , February 15, 2010 10:11 PM

sip_custom.conf

language=au
videosupport=yes
allow=g729
allow=g723
allow=h261
allow=h263
allow=h263p
useragent = PAP2T

make office 2007 like 2003

By , February 10, 2010 9:50 PM

UBitMenu is a free tool that can emulate the Office 2003 interface in Office 2007 without any performance loss. It’s basically for anyone who can no longer find the same functions in Office 2007 that were easily findable in Office 2003.

What I like about this program is that it does not actually get rid of the ribbon interface, but instead just adds the classic menu as a new ribbon. So you can continuing using the ribbon interface, but when you want to find something quickly the old way, just go to the classic ribbon.

Click on this download link Michelle HERE

Nexus One editing Hosts file

By , February 7, 2010 1:22 AM

Ok your device must be rooted

follow androidandme.com

then

on the device settings, Applications,
Unknown sources – yes
Development, USB debugging – Yes

then

If your Nexus one is rooted, then

adb-windows.exe pull system/etc/hosts hosts
modify it
adb-windows.exe remount
adb-windows.exe push hosts system/etc/hosts

If its not rooted, then i doubt you will be able modify it.

Gmail for small business

By , January 31, 2010 8:26 PM

Gmail for small business

After you have gone to google apps

and set up your business domain name

As you’ll have worked out, Google doesn’t give you the best web addresses to access your Google Apps email, docs, etc.

To make this more simple, go to each service in your Google Apps Dashboard and click ‘change url’, pick the one it gives you (usually mail.[mysite.com], etc. ) and click ok.

It will then tell you how to adjust your DNS settings appropriately, but to make this simpler, login to your DNS control panel in SliceHost (or whatever DNS service your using) and add some CNAME aliases.

type: CNAME

name: mail

data: ghs.google.com

type: CNAME

name: start

data: ghs.google.com

type: CNAME

name: docs

data: ghs.google.com

type: CNAME

name: calendar

data: ghs.google.com


Now wait 3-48 hours for it to check the MX record on your DNS provider.
  • Incoming Server: imap.gmail.com
  • Outgoing Server: smtp.gmail.com
  • Authentication: email@gmail.com + email password
  • ‘Use secure Socket Layer (SSL)’
  • Ports: 587 Outgoing, 993 Incoming

Thunderbird Labels

By , January 7, 2010 11:56 PM

Thunderbird Labels

o update your labels in Thunderbird follow these simple steps.

Install Stylish in Thunderbird – Go to https://addons.mozilla.org/en-US/firefox/addon/2108 and download the Stylish extension. Open Thunderbird and go to Tools -> Extensions (v1.5) Tools -> Addons -> Extensions (v2) and click the install button. Browse to where you saved Stylish on your computer. Then restart Thunderbird. Note: If using Firefox, make sure to right click on the Stylish install link and choose Save Link As… because we don’t want to install it into Firefox.

Create a New Stylish Style – Open Thunderbird, click on the Stylish icon in the status bar, choose manage styles, click write and in the description field add TwisterMc’s Labels.

Get the CodeClick here and copy the code into the big Stylish input box. Make sure that the Enabled checkbox is checked and hit Save. Then close the Manage Styles window.

Refresh – In order for the labels to appear, close the main inbox window and re-open it, or just restart Thunderbird.

That’s it.

MYSQL ODBC 64 Bit problems

By , December 30, 2009 5:26 PM

MYSQL on Server 2008 64 bit and Vista 64 bit Problems

63 bit odbc controller found in wow64
c:\windows\syswow64\odbccad32.exe
turnoff User Account Control in “Control Panel\User Accounts\” and reboot the system

you can control System DSN and User DSN but you need to

The Wow64 setting are actually the 32 bit settings. Since

we were running 32 bit apps it was always working correctly. There is a

different file for setting up the Wow64 32 bit DSNs

c:\windows\syswow64\odbccad32.exe

I turned off User Account Control in “Control Panel\User Accounts\” and rebooted the system.  This allowed me to do the above,

Thanks in advance.

Configuring NTP Server Windows Server 2008

By , December 28, 2009 4:17 PM

HOW TO SET UP A TIME SERVER in WINDOWS SERVER 2008

Sick of being confused about setting up a NTP time server in windows server 2008

Follow this Step by step guide

Step 1:
Net time /setsntp:
W32tm /config /syncfromflags:manual /manualpeerlist:
W32tm /config /reliable:yes
W32tm /config /update
W32tm /resync
Pause
Exit

Step 2:
[HKEY_LOCAL_MACHINE\SYSTEM

\CurrentControlSet\Services\W32Time\Config]
“AnnounceFlags”=dword:00000005
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters]
“Type”=”NTP”
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpServer]
“Enabled”=dword:00000001

Step 3:
Net stop w32time
Net start w32time
Net time
Pause

YOUR DONE :)

NOW IT WILL WORK

DKU 5 Driver Winows 7, Vista, Server 2008, 64bit

By , December 20, 2009 1:04 PM

DKU 5 Driver windows 7, Vista, Server 2008

I guess you gave upgraded your box to the latest os,
and found your non-genuine Nokia DKU 5 cable no longer works
and you cant find the driver for it anywhere on line.

Most non-genuine DKU 5 cables use the Texas Instrument TUSB3410 RS-232/IR-to-USB converter

so after much work

here are the drivers:

and if you get stuck visit: http://www.multitech.com/en_US/SUPPORT/Updates/Drivers/drivers_by_filename.aspx

search for:  Server 2008 64 bit

After Hours Doctors After Hours Doctors