Wednesday, February 24, 2010

MySQL Query Browser Reset Auto Increment

Fairly simple.

Right Click on the table.
Click "Edit Table"
Click "Advanced Options" tab
Set Auto Increment to [last value] + 1.

Monday, February 15, 2010

HTML Horizontal Scroll

There is a simple way to make a 'div' horizontally scrollable.

Use css and have that div's class property:

.myDivsClass
{
overflow: auto;
}