Search this blog

Home Download Tips Our Stores About

Adbrite

Your Ad Here

Hot Offers


Masukkan Code ini K1-2BE745-X
untuk berbelanja di KutuKutuBuku.com

Visit Our Sponsor

Tuesday, July 6, 2010

How to change font size using Javascript  

var min=11;
var max=16;
function increaseFontSize() {
var p = document.getElementById('storyDiv');

if(p.style.fontSize) {
var s = parseInt(p.style.fontSize.replace("px",""));
} else {
var s = 12;
}
if(s!=max) {
s += 1;
}
p.style.fontSize = s+"px";

}


function decreaseFontSize() {
var p = document.getElementById('storyDiv');

if(p.style.fontSize) {
var s = parseInt(p.style.fontSize.replace("px",""));
} else {
var s = 12;
}
if(s!=min) {
s -= 1;
}
p.style.fontSize = s+"px";

}



Read more...

How to fix tiny slideshow clickable in ie  

Ah that's the problem, I see. That doesn't work here either, but I can tell you why and how to fix it: For some reason IE won't fire onmouseovers on empty divs, unless the mouse is moved over a visible border. You can solve your problem by simply putting a transparent image in the background.

Create a 1×1 pixel transparent .gif (I'll call it 'blank.gif'), put it where your .css is, change the lines


#imglink {position:absolute; height:306px; width:100%;
z-index:100; opacity:.4;filter:alpha(opacity=40)}
.linkhover {background:url(images/link.gif)
center center no-repeat}



to:

#imglink {background:url(blank.gif) repeat;
position:absolute;height:306px; width:100%;
z-index:100; opacity:.4;filter:alpha(opacity=40)}
.linkhover {background:url(images/link.gif)
center center no-repeat !important}



Read more...

How to send parameter into include in PHP  

This will not work
include('communities.php?show=gated&where=naples');
?>

.

However this will
$_GET = array();
$_GET['show'] = 'gated';
$_GET['where'] = 'naples';
include('communities.php');
?>

Putting this on your page and nothing else will give the same result as
going to 'communities.php?show=gated&where=naples' but the URL can be
whatever you want it to be.



Read more...
Thursday, December 17, 2009

how to fix png transparent images in ie6  

First of all you need to download from here
How To Use
Copy and paste iepngfix.htc and blank.gif into your website folder.
Copy and paste this into your website's CSS or HTML:

Type your summary here.

Type rest of the post here

<style type="text/css">
img, div, a, input { behavior: url(style/iepngfix.htc) }
</style>


If your site uses subfolders, open the .HTC file in a text editor like
Windows Notepad and change the blankImg variable to include a correct path to blank.gif like so:
var blankImg = '/images/blank.gif';



DONE…


Read more...
Wednesday, May 27, 2009

How to Restore SQL Server Database File  

First of all. Open SQL Management Studio. And get connected.
Then you'll see the There's many menus in the left side.
Photobucket




Then. Right Click in the "Databases"
Choose "Restore Database" then this will appear

Photobucket

And this will appear
Photobucket

In the "To Database" field type whatever the name of your database
And Choose "From Device" Radio Button and click the ... button

Then it'll open like this...
Photobucket
Browse to your Database which you want to restore.. And Click OK and OK

Then...
Photobucket
Check the Checkbox. And Click OK... Wait until it executing 100%.
DONE...

If there's an error messages like this
Photobucket
Click OK..

Then.. Navigate to the left side and choose "Options"
Photobucket
Check the First Object "Overwrite the Existing Database"
Click OK and DONE...

Photobucket

Drop Comment below if there's something wrong...




Read more...
Friday, May 22, 2009

Free E-book : Reader's Digest 2009  






Read more...
Thursday, April 9, 2009

Free Software : Oracle 10g (Client & Server)  



Client - 356.51MB


Server - 564.9MB


Read more...

Best Seller