Pages

Thursday, August 9, 2018

Test Post

Welcome to our page It Solutions Bangladesh.
How are your Bangladesh.

Friday, January 13, 2012

How To Use Mobile Camera As Web Cam

Now A days everybody owns a mobile phone with camera.And it is really interesting and simple to use your mobile phone  camera as webcam for your yahoo,gtalk or any other messenger.So if you dont have a webcam and doesnot want to waste money on buying a new one then this is the best solution for you.For using your mobile camera as a webcam you need to have a symbian mobile phone or a windows mobile phone as the application that we will be using only works on the symbian or windows platform.This application is free to download and use.Moreover,It is an open source project .




For Smartcam to work you have
1.Install it in both your computer and mobile phone.
2.Bluetooth in your mobile and computer.
First download and install the windows file in your computer and then mobile file in your mobile phone.Now connect both the devices using bluetooth.
Now you can use your mobile phone camera as a webcam.
Here is the list of nokia phones that it might support
5320 XpressMusic
6210 Navigator
6220 classic
6650
N78
N96

The Download Link For this application Is given below


Click Here To Download Smartcam


Source Copy By :http://www.pctipstricks.net/mobiles/mobile-camera-webcam/

Saturday, December 24, 2011

NEW YEAR SMS

Happy New Year 2012


Like birds, let us, leave behind what
we don’t need to carry…
GRUDGES, SADNESS, PAIN, 
FEAR and REGRETS.
Life is beautiful.. Enjoy it.
HAPPY NEW YEAR
2012

NEW YEAR SMS


A happy New Year Grant that I
May bring no tear to any eye,
When this New Year in time shall end
Let it be said I've played the friend,
Have lived and loved here,
And made of it a happy year.



NEW YEAR SMS



Day by day teri khusiya ho jaye Double,
Teri zindagi se delete ho jaye sare Trouble,
Khuda rakkhe humesha tujhe Smart & Fit,
Tera liye New Year ho Super-Duper Hit!!


NEW YEAR SMS


 
Another day, another month, another year.
Another smile, another tear, another winter.
A summer too, But there will never be another you!
Wishing a very HAPPY N BLESSED New Year to You!!
 

Saturday, November 19, 2011

HOW TO SHOW IMAGES WITH ANIMATION

You will find so many scripts to do the same task but, only one issue will arise with all the scripts “does these are browser compatible”. May the answer is yes or may be no.
But, here is the solution you have to use “SpryEffects.js”. This is truly browser compatible is easy to implement.
I have a small example that is using this “JS” to animate images.

Download “SpryEffects.js” from net.

<script language="javascript" type="text/javascript">
function MM_effectGrowShrink(targetElement, duration, from, to, toggle, referHeight, growFromCenter)
{
Spry.Effect.DoGrow(targetElement, {duration: duration, from: from, to: to, toggle: toggle, referHeight: referHeight, growCenter: growFromCenter});
}
function showimage(str_path)

var obj=document.getElementById("a1"); 
str_path=str_path.replace('images/','images/large/'); 
var int_left=screen.width;
if (int_left>1024)

int_left=int_left-1024; 
int_left=int_left/2; 
int_left=int_left+251; 

else
{
int_left=50;
}

obj.style.top="50px"; 
obj.style.left=int_left +"px";
obj.style.display = 'block'; 

var viframe=document.getElementById('<%=img_show.ClientID%>').src=str_path; 
//MM_effectGrowShrink('a1', 1000, '0%', '100%', false, false, true);
MM_effectSlide('a1', 1000, '0%', '100%', false) 
}
function MM_effectAppearFade(targetElement, duration, from, to, toggle)
{
Spry.Effect.DoFade(targetElement, {duration: duration, from: from, to: to, toggle: toggle});
}
function hidediv(str_path)
{
//MM_effectGrowShrink('a1', 1000, '100%','0%',false, false, true);
//var obj=document.getElementById("a1"); 
MM_effectSlide('a1', 1000, '100%','0%', false)
}

function MM_effectSquish(targetElement)
{
Spry.Effect.DoSquish(targetElement);
}

function MM_effectSlide(targetElement, duration, from, to, toggle)
{
Spry.Effect.DoSlide(targetElement, {duration: duration, from: from, to: to, toggle: toggle});
}

</script>
<div ></div>
<div style="left:50px;top:50px;position:absolute;width:701px">
<img src="images/jagriti_004.jpg" onclick="showimage(this.src);" /> 
</div>
<div id="a1" style="position: absolute; background-color: Gray; display: none; width: 711px;
height: 500px;">

<img id="img_show" src="" runat="server" alt="Click to Close Enlarged View" style="margin: 0px;
padding: 0px; border: solid 5px #ffffff; height: 500px; width: 701px;" align="absmiddle" onclick="hidediv();" onmouseover="style.cursor='pointer'"/>

</div>

You can also download code which is using C#.