Friday, November 30, 2012

Uninstall the "Send to Bluetooth Add-In"


First find the location of the Add In dll:

to find the btsendto_office.dll go to File/Options/Add-In select the Send to add in and observe the path at the bottom of the screen

Close all office applications and unregister the Add In with:

regsvr32 /u "C:\Program Files\ThinkPad\Bluetooth Software\btsendto_office.dll"

If you want re-register the Add In with

regsvr32 "C:\Program Files\ThinkPad\Bluetooth Software\btsendto_office.dll"

Thursday, November 29, 2012

Check if 32bit or 64bit version of Office is installed


1. Open Microsoft Office 2010 application like Microsoft Word on your computer.

2. Once the application window is opened, goto File menu and click Help option.

3. Check for the information on right side of this Help window. You should see Office version under “About Microsoft Word’ option as 32bit or 64bit next to version details.

Wednesday, November 14, 2012

MS SQL 2012: bug reseed of Identity after restarting MS SQL server

F.Y.I
https://connect.microsoft.com/SQLServer/feedback/details/739013/alwayson-failover-results-in-reseed-of-identity

==> don't use MS SQL untill this bug is fixed, if your system / application uses/combines ID of row of the table for documents, such as: Invoice / Receipt ....

Monday, November 5, 2012

MS Word 2010 crashed when opening document

If you got this problem, it may come from an addin of MS Word 2010. Below is the way to help you find out which addin causes this problem.
1. Open MS Word in Safe Mode: hold Ctrl key >> click MS Word icon >> choose Yes in a dialog displayed
2. Click File menu >> Addins >> click Go button in the Manage: Com-in Add
3. Clear the checkboxes to disable all addins
4. Close MS Word
5. Try to open your document again. If MS Word can open the doc, it means an addin caused this crash.
6. Open MS Word in Safe Mode again
7. Enable one by one addin and open the doc to check when it's crashed ==> the bad guy -:)

CSS: horizontal ul li

HTML
<ul class="mylist">
<li id="active"><a href="#" id="current">Item one</a></li>
<li><a href="#">Item two</a></li>
<li><a href="#">Item three</a></li>
<li><a href="#">Item four</a></li>
<li><a href="#">Item five</a></li>
</ul>

CSS
.mylist li
{
display: inline;
float: left;
list-style-type: none;
padding-right: 20px;
}

Friday, November 2, 2012

MySQL: [1406]Data too long for column

If you get this 1406 error while you run SQL command to insert data into a TEXT column.

1. Check if max_allowed_packet size is enough for your SQL command size. If not, change it in the my.ini file. Just nnclude the single line under [mysqld] in your file, for example:
max_allowed_packet=16M
Then restart mysql.

2. If max_allowed_packet is OK, try to change the column to LONGTEXT.

Hope it can help some bodies -:)
Subscribe to RSS Feed Follow me on Twitter!