Wednesday, October 26, 2011

Display Date in two digit Excel to mySQL

=YEAR(L5)&"-"&IF(LEN(MONTH(L5)) = 1,CONCATENATE("0",MONTH(L5)),CONCATENATE("",MONTH(L5)))&"-"&IF(LEN(DAY(L5)) = 1,CONCATENATE("0",DAY(L5)),CONCATENATE("",DAY(L5)))

Thursday, October 13, 2011

Find String in Cell

If InStr("Look in this string", "look") = 0 Then
MsgBox "woops, no match"
Else
MsgBox "at least one match"
End If

End Sub

Thursday, April 28, 2011

Joomla Links index.php

Q: Why Joomla link always go to error index.php folder?

A: Step­By­Step­Introduction

1. Log in as an administrator using the Joomla! Back­end.
2. Click on the “Global Configuration” icon.
3. Locate the right panel called “SEO Settings.”
4. Activate the options desired in the following order.

Friday, April 22, 2011

SpinnerChief Error

Q: SpinnerChief the application failed to initialize properly (0xc0000135). Click on OK to terminate the application

A:

Sunday, March 6, 2011

APLIKASI OTRS

OTRS is an open source software system for managing a wide range of business processes, from Help Desk to Support Center to IT Service Management. Based on a set of functions built on a "trouble ticket," OTRS is built to allow support, sales, pre-sales, billing, internal IT, support desk and many other departments to react quickly and responsibly to inbound inquires. Do you receive many e-mails and want to answer them with a team of agents? You're going to love OTRS!

http://otrs.org/

Wednesday, January 26, 2011

Install Software

Office 2000
VPN Client
SAP GUI
Confiker
Setup Mcafee update
Setup Windows update
7zip
acrobat reader 8
MW Snap
SP Winn XP
Setup Printer
Setup Oulook
Copy data
fortmat d:

Tuesday, January 25, 2011

Create User

CREATE USER 'ps_dev'@'localhost' IDENTIFIED BY 'ps3dev';
GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP
ON ps_sales_dev.*
TO 'ps_dev'@'localhost';