CUSTOMER CARE IN 2020

Operator : “Thank you for calling Pizza Hut . May I have your…”
Customer: “Hello, can I order…”
Operator : “Can I have your multi purpose card number first, Sir?”
Customer: “It’s eh…, hold on……6102049998-45-54610″
Operator : “OK… you’re… Mr-John and you’re calling from 17 Embassy Square. Your home number is 40942366, your office 76452302 and your mobile is 0142662566.
Customer: “How did you get all my phone numbers?
Operator : “We are connected to the system Sir”
Customer: “May I order your Seafood Pizza…”
Operator : “That’s not a good idea Sir”
Customer: “How come?”
Operator : “According to your medical records, you have high blood pressure and even higher cholesterol level Sir”
Customer: “What?… What do you recommend then?”
Operator : “Try our Low Fat Hokkien Mee Pizza. You’ll like it”
Customer: “How do you know for sure?”
Operator : “You borrowed a book entitled “Popular Hokkien Dishes” from the National Library last week Sir”
Customer: “OK I give up… Give me three family size ones then, how much will that cost?”
Operator : “That should be enough for your family of 10, Sir. The total is $49.99″
Customer: “Can I pay by credit card?”
Operator : “I’m afraid you have to pay us cash, Sir. Your credit card is over the limit and you owe your bank $3,720.55 since October last year. That’s not including the late payment charges on your housing loan, Sir.”
Customer: “I guess I have to run to the neighborhood ATM and withdraw some cash before your guy arrives”
Operator : “You can’t Sir. Based on the records, you’ve reached your daily limit on machine withdrawal today”
Customer: “Never mind just send the pizzas, I’ll have the cash ready. How long is it gonna take anyway?”
Operator : “About 45 minutes Sir, but if you can’t wait you can always come and collect it on your motorcycle…”
Customer: “What!”
Operator : “According to the details in system ,you own a Scooter,…registration number 1123…”
Customer: “????”
Operator : “Is there anything else Sir?”
Customer: “Nothing… by the way… aren’t you giving me that 3 free bottles of cola as advertised?”
Operator : “We normally would Sir, but based on your records you’re also diabetic… ”
Customer: “#$$^%&$@$%^”
Operator : “Better watch your language Sir. Remember on 15th July 1987 you were convicted of using abusive language on a policeman…?”
Customer: [Faints]

How to use CuteFTP v4.2.6b – User Guide

Steps to install ~

  • Just run the exe “cute4232bc.exe: .. install as same as normal installation.
  • If CuteFTP ask you to put the HTTP Proxy Server then you should put ur firewall server, port, your domain accout and pwd (*It’s not required if you dont hav any Proxy Server.)

  • Cancel all other dialogs (i.e: Connection Wizard or ISP Chooser)
  • Launch CuteFTP (Start Menu > GolbalSCAPE > CuteFTP > CuteFTP )

  • One Dialog “Site Manager” will be shown as soon as the application is started.
  • Cancle this dialog
  • Click on this Icon. (Check the Image below)

  • Type URL, User Name and Pwd
  • Click on Connect(Check the Image below)

  • If it’s working fine then u will get this dialog as below.

  • Click OK button.


Finally, you got it now!

Remote Desktop Protocol

Remote Desktop Protocol
Remote Desktop and Remote Assistance. ( Articles Collections )

http://labmice.techtarget.com/windowsxp/NetworkingXP/remote_desktop.htm

How to change the listening port for Remote Desktop

http://support.microsoft.com/?kbid=306759

  1. Start Registry Editor.
  2. Locate and then click the following registry subkey: H_L_M\System\CurrentControlSet\Control\TerminalServer\WinStations\RDP-Tcp\PortNumber
  3. On the Edit menu, click Modify, and then click Decimal.
  4. Type the new port number, and then click OK.
  5. Quit Registry Editor.

How to configure the Remote Desktop client to connect to a specific port when you use Windows XP

http://support.microsoft.com/kb/304304/

  1. Click Start, click All Programs, point to Accessories, point to Communications, and then click Remote Desktop Connection.
  2. In the Computer box, type the computer name or the IP address of the computer that you want to connect to, followed by a colon (:) and the port number that you want to use.

For example, to connect to port 3390 on a computer that is named “MyXPPro,” type the following information:
MyXPPro:3390
To connect to port 3391 on a computer with IP address 10.10.10.1, type the following information:
10.10.10.1:3391

3. Click Connect.

Remote Desktop Connection Software Download

http://www.microsoft.com/windowsxp/downloads/tools/rdclientdl.mspx

Installing Remote Desktop Web Connection in Windows XP

http://support.microsoft.com/?kbid=284931

Tips : devenv.exe Problem

Since I am super busy in my work :P, running devenv.exe from Run menu instead of finding the shortcut of VS 2003 in Start Menu can save me a lot of time. When Microsoft distributed a hundred versions of Whidbey I gladly installed/uninstalled the latest version for checking its new features [along with sending a thousand error report to microsoft .. ]:-))… Unfortunately, after UNINSTALLING Whidbey from my machine I was unable to call “devenv.exe” to launch Visual Studio 2003 coz some of register keys have been changed when I installed Whidbey.So after a lot of effort I found out how to fix this and I am sharing it with you all

Steps to perform ~
1) Open registry editor (regedit.exe)
2) Go to this path
HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\
Windows\CurrentVersion\App Paths\devenv.exe”

3) Check the value of this key.. [ you will see this string "
C:\Program Files\Microsoft Visual Studio 8\
Common7\IDE\devenv.exe"]

4) Change this string to
“C:\Program Files\Microsoft Visual Studio .NET 2003\
Common7\IDE\devenv.exe”5)

Done!!

Check : Type “devenv” in run menu… Wow! Visual Studio 2003 is opening…
Hope you will find it useful..

Adding and Removing Events.

Yeah. Small thing.. but I didn’t notice about that.. I think I might never notice about that if my friend “Lu taw lay” didn’t tell me…

Actually, when I was working on automation team, we needed to write the automation script for ComponentOne Control to ensure whether each property/ method and event of a particular control are working fine or not. When we were writing the scripts, we needed to add/remove the event at runtime. In case of removing a event from the control, we wrote like this.button1.Click -= null wrongly in our script. and we didn’t notice about that til the time my friend tell me.

VB
If CheckBox1.Checked Then
AddHandler Button1.Click, AddressOf button1_Click
Else
RemoveHandler Button1.Click, AddressOf button1_Click
End If

C#
if(this.checkBox1.Checked)
this.button1.Click += new System.EventHandler(this.button1_Click);
else
this.button1.Click -= new System.EventHandler(this.button1_Click);

References..
Handling Events in .NET