Content feed Comments Feed
အနယ္နယ္အရပ္ရပ္မွ လာေရာက္ၾကေသာ နည္းပညာစိတ္၀င္စားသူအေပါင္းကုိေမာင္ပညာမွ ေႏြးေထြးစြာၾကိဳဆုိလွ်က္ နည္းပညာႏွင့္ ပတ္သတ္သမွ်ကုိၿဖန္႔ေ၀လုိသူမ်ားအတြက္ လြတ္လပ္စြာအသုံးၿပဳႏုိင္ပါသည္
CahayaBiru.com

How To Add Snow Effect On The Blogger Mouse Cursor Area (mm)

တင္ၿပသူ Kyaw Htin Wednesday 26 December 2012

mouse pointer ေရႊ႕လိုက္ရင္ အသဲပံုေလေတြ..အစသျဖင့္ သူတို႕ကို ဘယ္လိုထည့္ရတာလဲေျပာျပေပးပါအံုးအစ္ကို..
ေနာက္တစ္ခုက software ေတြကို ဘယ္လိုတင္ရတာလဲအစ္ကို .. ေျပာျပေပးပါအံုး..
ေမးထားတာေလးကို ေၿဖေပးလုိက္ပါတယ္..


Blogger interface အေဟာင္းနဲ႔ဆုိ : Go to Dashboard - Design - Page Elements - Add a Gadget. ကုိသြားပါ





 

ထဲသြားၿပီး Add a Gadget မွာ HTML/JavaScript type ကိုထုတ္ၿပီး အဲ့ဒီထဲမွာ ေအာက္ပါကုဒ္ကုိ ထည့္ေပးရမွာပါ။



တကယ္လုိ႔  Blogger interface new ဆုိရင္ေတာ့ : Go to Dashboard - Layout - Add a Gadget ကေနသြားရမွာပါ။


ၿပီးရင္ ေစာေစာကအတုိင္း ၿပီးရင္ Side bar မွာရွိတဲ့ 'Add a Gadget' ကုိ Click ၿပီးရင္ 'HTML/Javascript' ကို select ေပး add ၿပီး
အဲ့ဒီထဲမွာမွ ေအာက္ပါ ကုဒ္ကုိထည့္ေပးလုိက္တာနဲ႔ အဆင္ေၿပပါၿပီ။။။ 


<a href="http://24work.blogspot.com" target="_blank" title="Blogger Widgets"><img src="http://safir85.ucoz.com/24work-blogspot/cursor-24work-10.png" border="0" alt="Blogger Widgets" style="position:absolute; top: 0px; right: 0px;" /></a><script type="text/javascript">
// <![CDATA[
var colour="black";
var sparkles=100;

var x=ox=400;
var y=oy=300;
var swide=800;
var shigh=600;
var sleft=sdown=0;
var tiny=new Array();
var star=new Array();
var starv=new Array();
var starx=new Array();
var stary=new Array();
var tinyx=new Array();
var tinyy=new Array();
var tinyv=new Array();
window.onload=function() { if (document.getElementById) {
var i, rats, rlef, rdow;
for (var i=0; i<sparkles; i++) {
var rats=createDiv(3, 3);
rats.style.visibility="hidden";
document.body.appendChild(tiny[i]=rats);
starv[i]=0;
tinyv[i]=0;
var rats=createDiv(5, 5);
rats.style.backgroundColor="transparent";
rats.style.visibility="hidden";
var rlef=createDiv(1, 5);
var rdow=createDiv(5, 1);
rats.appendChild(rlef);
rats.appendChild(rdow);
rlef.style.top="3px";
rlef.style.left="0px";
rdow.style.top="0px";
rdow.style.left="3px";
document.body.appendChild(star[i]=rats);
}
set_width();
sparkle();
}}
function sparkle() {
var c;
if (x!=ox || y!=oy) {
ox=x;
oy=y;
for (c=0; c<sparkles; c++) if (!starv[c]) {
star[c].style.left=(starx[c]=x)+"px";

star[c].style.top=(stary[c]=y)+"px";
star[c].style.clip="rect(0px, 5px, 5px, 0px)";
star[c].style.visibility="visible";
starv[c]=50;
break;
}
}
for (c=0; c<sparkles; c++) {
if (starv[c]) update_star(c);
if (tinyv[c]) update_tiny(c);
}
setTimeout("sparkle()", 40);
}
function update_star(i) {
if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
if (starv[i]) {
stary[i]+=1+Math.random()*3;
if (stary[i]<shigh+sdown) {
star[i].style.top=stary[i]+"px";
starx[i]+=(i%5-2)/5;
star[i].style.left=starx[i]+"px";
}
else {
star[i].style.visibility="hidden";
starv[i]=0;
return;
}

}
else {
tinyv[i]=50;
tiny[i].style.top=(tinyy[i]=stary[i])+"px";
tiny[i].style.left=(tinyx[i]=starx[i])+"px";
tiny[i].style.width="2px";
tiny[i].style.height="2px";
star[i].style.visibility="hidden";
tiny[i].style.visibility="visible"
}
}
function update_tiny(i) {
if (--tinyv[i]==25) {
tiny[i].style.width="1px";
tiny[i].style.height="1px";
}
if (tinyv[i]) {
tinyy[i]+=1+Math.random()*3;
if (tinyy[i]<shigh+sdown) {
tiny[i].style.top=tinyy[i]+"px";
tinyx[i]+=(i%5-2)/5;
tiny[i].style.left=tinyx[i]+"px";
}
else {


tiny[i].style.visibility="hidden";
tinyv[i]=0;
return;
}
}
else tiny[i].style.visibility="hidden";
}
document.onmousemove=mouse;
function mouse(e) {
set_scroll();
y=(e)?e.pageY:event.y+sdown;
x=(e)?e.pageX:event.x+sleft;
}
function set_scroll() {
if (typeof(self.pageYOffset)=="number") {
sdown=self.pageYOffset;
sleft=self.pageXOffset;
}
else if (document.body.scrollTop || document.body.scrollLeft) {
sdown=document.body.scrollTop;
sleft=document.body.scrollLeft;
}
else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
sleft=document.documentElement.scrollLeft;
sdown=document.documentElement.scrollTop;
}
else {
sdown=0;
sleft=0;
}
}
window.onresize=set_width;
function set_width() {
if (typeof(self.innerWidth)=="number") {
swide=self.innerWidth;
shigh=self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientWidth) {
swide=document.documentElement.clientWidth;
shigh=document.documentElement.clientHeight;
}
else if (document.body.clientWidth) {
swide=document.body.clientWidth;
shigh=document.body.clientHeight;
}
}
function createDiv(height, width) {
var div=document.createElement("div");
div.style.position="absolute";
div.style.height=height+"px";
div.style.width=width+"px";
div.style.overflow="hidden";
div.style.backgroundColor=colour;
return (div);
}
// ]]>
</script>

ဖုိင္ေတြကို ကြ်န္ေတာ္ Upload တင္တာကေတာ့ http://www.mediafire.com/ ကေနတင္ပါတယ္။
အဲ့ဒီမွာ Register လုပ္ၿပီး File ေတြကုိ တလ ၂၀၀ MB free တင္လုိ႔ရပါတယ္..။
ပို Upload လုပ္ခ်င္ရင္ေတာ့ Visa နဲ႔ၿဖည့္ၿပီးလုပ္ရင္ေတာ့ အေကာင္းဆုံးေပါ့..။
Facebook အေကာင့္နဲ႔လည္း Register လုပ္လုိ႔ရပါတယ္..။။

Visual Basic for Applications _2

တင္ၿပသူ Kyaw Htin Tuesday 25 December 2012





အရင္ကေတာ့ Visual Basic for Applications _1_ ကို ေရးၿပီးပါၿပီ
အခုတစ္ခါကေတာ့ Visual Basic for Applications _2 ေပါ့ (၂) ခုစလုံးကေတာ့
Basic ေတြခ်ည္းပါဘဲ စိတ္၀င္စားသူမ်ား ေလ့လာလုိ႔ရပါတယ္..။
ေနာက္မ်ားမွာလည္း ဆက္လက္ေရးပါအုံးမယ္ Chapter တစ္ခုကုိ Visual Basic for Applications 1 ,2 စသၿဖင့္ေရးသားထားၿခင္းပါ။

DOWNLOAD


About New Add in Facebook privacy shortcuts

တင္ၿပသူ Kyaw Htin



Facebook ဟာ သံုးစြဲသူမ်ားရဲ႕ မွ်ေ၀တဲ႔ ဓာတ္ပံုေတြ ႏွင္႔ update status လံုၿခံဳေရးကို အရိုးရွင္းဆံုးနဲ႔ အလြယ္ကူဆံုးအေထာက္အကူၿပဳႏိုင္မဲ႔ privacy shortcuts မ်ားကို ထည္႔သြင္းေပးထားတာေတြ႔ရမွာပါ။
ဒီလို privacy shortcuts မ်ားကို  US က user မ်ားထံ စတင္ထည္႔သြင္းေပးခဲ႔ျပီး အခုအခ်ိန္မွာေတာ႔ ကမၻာတစ္၀န္းလံုးမွာ ရိွတဲ႔ user ေတြအတြက္ပါ ထည္႔သြင္းေပးလိုက္ပါျပီ။
ဒါေၾကာင္႔ အသစ္ထည္႔သြင္းထားတဲ႔ Facebook privacy shortcuts ေတြရဲ႕ အသံုး၀င္မႈေတြကို NOM Fans ေတြအတြက္ ေဖာ္ျပေပးလိုက္ပါတယ္။
-Blocking
Facebook မွာ မိမိကို စိတ္အေႏွာက္အယွက္ၿဖစ္ေနတဲ႔ သူေတြ၊အဆက္အသြယ္မလုပ္လိုတဲ႔ သူေတြကို
Block ခ်င္ရင္ အရင္လို setting ထဲကေန အရွည္ၾကီး ၀င္ေနစရာ မလိုေတာ႔ပါဘူး။



Facebook Privacy shortcuts pop-up box ကေလးကို ႏိွပ္ျပီး တတိယအေၾကာင္းမွာ  မိမိ Block လိုတဲ႔ user ရဲ႕ နာမည္(သို႕)သူ႔ရဲ႕ email လိပ္စာကို ရိုက္ထည္႔လိုက္ရံုပါပဲ။
ဒါ႔အၿပင္ သင္ယခင္က block ထားတဲ႔ သူေတြရဲ႕ စာရင္းကိုၾကည္႔ႏို္င္ဖို႔ View All Blocked Users ဆိုတာကိုပါ ထည္႔သြင္းေပးထားတာေတြ႔ရပါတယ္။
-Privacy Shortcuts




Facebook Privacy shortcuts pop-up box ရဲ႕ ပထမအေၾကာင္းၿဖစ္တဲ႔ “who can see my stuff?” ဆိုတဲ႔ စာေၾကာင္းကို click ႏိွပ္လိုက္ပါ။
Who can see my future posts? ဆိုတဲ႔ ေနရာမွာ သင္႔ရဲ႕ post အသစ္အကုန္လံုးကို ဘယ္လို လံုၿခံဳေရးထားခ်င္သလဲဆိုတာကို မူတည္ျပီး လြယ္ကူစြာ ထိန္းခ်ဳပ္ႏိုင္ေအာင္ လုပ္ထားေပးတာၿဖစ္ပါတယ္။
ေနာက္ Facebook Privacy shortcuts pop-up box ရဲ႕ “who can see my stuff?” ဆိုတဲ႔ စာေၾကာင္းမွာရိွတဲ႔ ဒုတိယ အေၾကာင္းၿဖစ္တဲ႔ Where can I review all my posts and things I’m tagged in? ဆိုတဲ႔ေနရာမွာေတာ႔ သင္မတင္ခဲ႔ဘဲ Tag လုပ္ခံထားရတဲ႔ ပံုေတြ စာသားေတြကို ပါ ထိန္းခ်ဳပ္တာဖ်က္ပစ္လို႔ရမွာၿဖစ္ပါတယ္။

ျပီးေတာ႔ သင္မလိုေတာ႔တဲ႔ အတိတ္က ပိုစ္႔အကုန္လံုးကို တစ္ေနရာထဲကေန ဖ်က္ပစ္ႏိုင္မွာပါ။
Facebook Privacy shortcuts pop-up box ရဲ႕ “who can see my stuff?” ဆိုတဲ႔ စာေၾကာင္းမွာရိွတဲ႔ တတိယ အေၾကာင္းၿဖစ္တဲ႔What do other people see on my timeline? ဆိုတဲ႔ လံုၿခံဳေရးအတြက္ အသံုး၀င္ပံုအေၾကာင္းကို ရွင္းၿပသြားပါမယ္။


မိမိရဲ႕ Profile ကို မည္သူက ၀င္ၾကည္႔ရင္ ဘယ္လိုေပၚေနလဲ ဆိုတာ သိခ်င္ၾကပါတယ္။ ဒါေၾကာင္႔ “who can see my stuff?” ဆိုတဲ႔ စာေၾကာင္းမွာရိွတဲ႔ တတိယ အေၾကာင္းၿဖစ္တဲ႔What do other people see on my timeline? ကို၀င္ျပီး View As ကို ႏိွပ္လိုက္ပါ။
ဒါဆိုရင္ သင္႔ရဲ႕  profile ကို ေပၚလာျပီး This is what your timeline looks like to: ဆိုတဲ႔ေနရာမွာ မိမိသိလိုတဲ႔ သူငယ္ခ်င္းနာမည္ကို ရိုက္ထည္႔လိုက္ရံုပါပဲ။
အခုေျပာျပမွာကေတာ႔ ေနာက္ဆံုးအခ်က္ပါ။
Facebook Privacy shortcuts pop-up box ကေလးကို ႏိွပ္ျပီး ဒုတိယအေၾကာင္းၿဖစ္တဲ႔ “who can contact me” ကို click လိုက္ပါ။


ပထမဆံုးအေၾကာင္းၿဖစ္တဲ႔ Whose messages do I want filtered into my Inbox? ဆိုတာကေတာ႔ မိမိကို message ေပးပို႔ေနတဲ႔ သူေတြကို ထိန္းခ်ဳပ္ႏိုင္ဖို႔ ထည္႔သြင္းေပးထားတာပါ။
ဒုတိယအေၾကာင္းၿဖစ္တဲ႔ Who can send me friend requests? ဆိုတာကေတာ႔ ဘယ္သူေတြက သူငယ္ခ်င္းၿဖစ္ခြင္႔ ပို႔လို႔ရေအာင္ ထိန္းခ်ဳပ္မလဲဆိုတာပဲၿဖစ္ပါတယ္။
ဥပမာအေနနဲ႔ ေျပာရရင္ မိမိနဲ႔ သူငယ္ခ်င္းၿဖစ္လိုသူၾကားမွာ ၾကားခံသူငယ္ခ်င္း(Mutual) မရိွရင္ friend request ဆိုတဲ႔ button ကို ႏိွပ္ခြင္႔ေပးဖို႔ ေနေနသာသာ တဘက္လူက ရွာလို႔ ရမွာေတာင္မဟုတ္ပါဘူး။
××××××××××××××××××××××××××××××××××××××
ဓါတ္ပံုမ်ားတင္ေသာအခါ add photos/video ဆိုတာကို ႏွိပ္စရာမလုိေတာ့ပါဘူး။ သင္ တင္လုိေသာပံုကို drag ဆြဲ၍ what on your mind ဆိုတဲ့ status မွာ drag ဆြဲၿပီးထည့္လိုက္ပါ။ၿပီးလွ်င္ ခုနေစာင့္ပါ။ မိမိပံုေပၚလာၿပီဆိုလွ်င္ post အားႏွိပ္လိုက္လွ်င္ ဓါတ္ပံုတင္ၿပီးသားျဖစ္သြားပါလိမ့္မယ္။
အားလံုးပဲႏွစ္သစ္မွာ ေပ်ာ္ရႊင္ႏိုင္ၾကပါေစ….
____________________________________
Credit By KaungMyatOo[Admin-Team,NewsOfMyanmar]

NewsOfMyanmar








Using Facebook (mm) Ebook

တင္ၿပသူ Kyaw Htin



Youth Computer Co., Ltd မွ ထုတ္လုပ္ၿဖန္႔ၿဖဴးတဲ့ ဆရာေဇာလင္း ေရးသားထားတဲ့ Using FACEBOOK Email, Advanced internet (All in one) ဆုိတဲ့ စာအုပ္ေလးကို မိတ္ဆက္ေပးခ်င္ပါတယ္။။
စာအုပ္ဟာ စာမ်က္ႏွာေပါင္း ၂၁၂ မ်က္ႏွာ ပါ၀င္ၿပီးေတာ့ မ်က္ႏွာဖုံးမွာ ညႊန္းဆုိထားတဲ့အတုိင္း တစ္အုပ္ဖတ္ရုံၿဖင့္ Internet ႏွင့္ ပတ္သက္သမွ်သိသြားလိမ့္မည္ ဆုိတာေတာ့ မလဲြမေသြပါ။
Google +, Twitter,  Yahoo ! Mail, Gtalk , Gmail, Anti Porn ႏွင့္ HTTrack အေၾကာင္းကုိ အေၿခခံကအစ ေသခ်ာရွင္းထားေသာေၾကာင့္
အင္တာနက္ကုိ စတင္ ထိေတြ႔သူမ်ားႏွင့္ ထိေတြ႔ၿပီးသားသူမ်ားအတြက္ မိမိသုံးေနတဲ့ ပစည္း ဘာဆုိတာ အေသးစိတ္သိရေလေအာင္
ေလ့လာ ၾကည့္ရႈသင့္ေသာ စာအုပ္ေကာင္း တစ္အုပ္အၿဖစ္ ထင္ၿမင္မိပါတယ္....။။။

DOWNLOAD 

Audacity (or) Digital Audio Editor

တင္ၿပသူ Kyaw Htin Saturday 22 December 2012

          

Audacity ဆုိတဲ့ ေဆာ့လ္၀ဲအေၾကာင္းကို ၾကားဖူးၾကမွာပါ။ Ring tone လုပ္လုိ႔ရတဲ့ Editor software ေလးဆုိၿပီးဘဲ အသိမ်ားပါတယ္..။ ေသခ်ာ အေသးစိတ္ သိေစရန္အတြက္ ရွာေဖြေလ့လာမိသမွ် ေ၀ဌေပးလုိက္ပါရေစ....။ အရင္ Post ေတြမွာေဖာ္ၿပခဲ့ဖူးတဲ့ Cool Editor နဲ႔ ခပ္ဆင္ဆင္ Audio Editor ေဆာ့လ္၀ဲအမ်ိဳးလည္းၿဖစ္ပါတယ္..။


What is Audacity ?

      
Digital Audio Editor ေဆာ့လ္၀ဲ တစ္ခုၿဖစ္ပါတယ္။ Singal ပုိင္းဆုိင္ရာေလ့လာ သူမ်ားႏွင့္ music creator မ်ားအတြက္ မရွိမၿဖစ္လုိအပ္တဲ့ အေၿခခံ free Audio Editor ေလးၿဖစ္ပါတယ္.။ Audacity ဟာ Open source cross platform audio editor ၿဖစ္ၿပီး ဒီ လင့္ http://audacity.sourceforge.net/  မွာ သြားယူလုိ႔ရပါတယ္။  မႈရင္းဆုိက္မွာေတာ့ Audacity ေဆာ့လ္၀ဲဟာ free သုံးစဲြခြင့္ ရၿပီ လြယ္ကူစြာ အသုံးၿပဳႏုိင္ ၿခင္း ဘာသာစကားမ်ိဳးစုံ (မိမိၾကိုက္တဲ့ language) နဲ႔ Download ခ်ၿပီး install လုပ္ႏုိင္တဲ့ Windows, Mac OS X, GNU/Linux အပါအ၀င္ တၿခားေသာ Operation system ေတြအတြက္ပါ အသုံးၿပဳရလြယ္ကူတဲ့ Audio editor (သုိ႔) recoder ေဆာ့လ္၀ဲေလးလည္းၿဖစ္ပါတယ္.။ English Version ေလးကို လုိခ်င္ရင္ေတာ့ ဒီမွာဘဲေဒါင္းလုပ္ခ်ထားလုိက္ပါ..။ 

Most useful features of Audacity 

ေအာက္ပါ Function မ်ားကိုလည္း ထပ္ၿပီး အသုံးၿပဳႏုိင္ပါေသးတယ္...။

  • Record live audio.
  • Convert tapes and records into digital recordings or CDs.
  • Edit Ogg Vorbis, MP3, WAV or AIFF sound files.
  • Cut, copy, splice or mix sounds together.
  • Change the speed or pitch of a recording.


ဒီထက္ပိုၿပီး သိလုိက ေအာက္ပါလင့္မွာ ဆက္ၿပီး ေလ့လာႏုိင္ပါေသးတယ္..။ http://audacity.sourceforge.net/about/features 

Youtube မွာလည္း အသုံးၿပဳပုံအဆင့္ဆင့္ရွင္းလင္းထားတာကို ရွာေဖြၾကည့္ရႈ ႏုိင္ပါတယ္..။ http://www.youtube.com/watch?v=xhYnCEWKcKs 

ဒါကေတာ့ အေၿခခံ Tutorial ေလးပါ စာအုပ္ရယူရန္ 




သတင္းဆက္သြယ္ေရး -ေသတၱာ ဆုိတဲ့ IT Website ကေန Audacity ကုိ အသုံးျပဳျပီး အေျခခံ 

တည္းျဖတ္ျခင္း အေၾကာင္းကို သင္ၿပထားတာေလးကိုလည္း http://messageinabox-mm.org/manual/basic+editing+with+audacity.html ဒီမွာ ေလ့လာႏဳိင္ပါတယ္..။

စာဖုိင္အၿဖစ္လည္း တင္ေပးလုိက္ပါမယ္..။ 



Audacity ကုိ အသုံးျပဳျပီး အေျခခံ တည္းျဖတ္ျခင္း 

တည္းျဖတ္တဲ့ ေနရာမွာ ပထမဦးဆုံး ဖုိင္ အရင္းအျမစ္ (တည္းျဖတ္လုိတဲ့ ဖုိင္) ကုိ သိထားဖုိ႔ လုိတယ္။ ျဖတ္ထုတ္လုိတဲ့ ဖုိင္ထဲက အစိတ္အပုိင္းကုိ သိထားရမယ္။ အသံဖုိင္ကုိ ဖြင့္ၿပီး ပထမဆုံး တည္းျဖတ္လုိတဲ့ ေနရာကုိ နားေထာင္ပါ။

တည္းျဖတ္မဲ့ ေနရာကုိ သိၿပီဆုိရင္၊ ျဖတ္ထုတ္မဲ့ ေနရာကို select လုပ္ပါ၊ Mouse ကုိ ဖိထားၿပီး၊ ျဖတ္ထုတ္မဲ့ ေနရာ အဆုံးပုိင္းအထိ Mouse ကုိ ဒရြတ္ ေရႊ႕သြားပါ။ ဒီေနရာကုိ မွန္မွန္ကန္ကန္ လုပ္လုိက္တယ္ ဆုိရင္၊ ပယ္ဖ်က္မဲ့ ေနရာကုိ မီးခုိးေရာင္နဲ႔ highlight လုပ္ေပးသြားမွာ ျဖစ္တယ္။


ေနာက္ဆုံးအေနနဲ႔ စိတ္၀င္စားသူမ်ား ကုိယ္တုိင္ေလ့လာ သင္ယူၿပီး ဖန္တီးႏုိင္ၾကပါေစလုိ႔ 
တုိက္တြန္းရင္း အဆုံးသတ္လုိက္ပါတယ္...။ ေက်းဇူးတင္ပါတယ္..။


ကိုယ္တုိင္ ေလ့လာၿခင္း သိသမွ် ေ၀မွ် ႏွီးေႏွာ ဖလွယ္ေပးၿခင္း တုိ႔ၿဖင့္ မိမိအသိပညာ အုိး ကုိ ၿဖည့္တင္းပါ...။။။ 


                                                                               ေမာင္ပညာ 


















Andriod Smart Phone မ်ားႏွင့္ Tablet User မ်ားအတြက္
လက္ေတြ႔သုံးႏုိင္ရန္ အတြက္ သိထားသင့္တဲ့ စာအုပ္ေကာင္းေလးၿဖစ္ပါတယ္..။
Device မ်ိဳးစုံ ကုိ ပုံနဲ႔တကြ ရွင္းၿပထားတဲ့အတြက္ ဗဟုသုတ ေၿမာက္ၿမားစြာ ရရွိမည့္ စာအုပ္ေလးၿဖစ္ပါေၾကာင္း ..
စာအုပ္ရယူရန္


DOWNLOAD 




CONNECTIFY PRO 3.7.1

တင္ၿပသူ Kyaw Htin Friday 21 December 2012




CONNECTIFY Wireless sharing Software ေလးၿဖစ္ပါတယ္..။
PC အခ်င္းခ်င္း Wifi share ခ်င္သူမ်ားႏွင့္ အထူးသၿဖင့္ Andriod (သုိ႔) Wireless ပါ၀င္တဲ့ Mobile ဖုန္းေတြအတြက္
Internet sharing လုပ္ဖုိ႔အတြက္ အေကာင္း    ဆုံး ေဆာ့လ္၀ဲေလးပါ..။
မိတ္ေဆြတစ္ဦးဆီက ေတြ႔မိသမွ်ေလး ၿပန္ ေ၀မွ်ေပးပါရေစ..။

Connectify - a program that helps you create from your PC full access point. On the PC must be installed Wi-Fi card and Windows 7 operating system, as It appeared only in the virtual function is implemented Wi-Fi. This program is a kind of wrapper for this function, which allows users with no special knowledge to configure it quickly and effortlessly. Once you create a complete Wi-Fi access point, you can easily connect the tablet, without any special settings on it.
In fact Connectify is a graphical user interface for easy configuration and start appearing in Windows 7, features a "virtual Wi-Fi» - a program to create a single wireless network card multiple virtual adapters.
Key features Connectify:
- Easy organization of a full access point Wi-Fi.
- Master of the initial setup of the program.
- To ensure the security of the encryption WPA2-PSK or WEP.
- Easy management of the system tray.
- Faster performance - up to 30% higher throughput when using high-speed Internet connection.
- Improved identification of some of the Xbox 360 and devices from Motorola.
- Completely new implementation of UPnP - increased productivity, there are no false alarms.
- Completely new user interface with tabs.
- Intelligent warnings when connecting the hotspot without having to connect to the Internet.
- User interface with resizable - grab the top or bottom of the window and change the size of the user interface to the preferred height.
- New, cleaner area of ??the state across the top of the interface.
- Easy access to the menu when you click on Connectify logo near the button Start / Stop.
- Service launch at startup.
- Support for multiple monitors, in cases where the taskbar is not on the primary monitor.
- A new algorithm for choosing the IP-address of the hotspot improves compatibility with devices IOS.
- Easy management of the firewall for Pro users: When you run your hot spot, there are two simple check box to control with the ability to deny client access to the Internet or to allow local access, control, whether they are connected with each other or with your computer.
- Finding Wi-Fi does not like: Connectify now detects and alerts you if the wireless network was switched off (flight mode) on your computer.
- Checks the input data: Connectify now checks your input as you type. It's really easy to deal with putannitsey in areas such as WEP passwords, which can consist of 5, 10 or 26 characters. Now, find the correct password has become easier and more convenient.
-Conflict Detection, Part 1: It has become clear that most of the "mistakes", about which users Connectify 3,0 reported were in fact associated with the program interventions in the work of Connectify. Two of the most conflicting program is SonicWALL VPN and Comodo Firewall, Connectify now refuses to even the set while they are on your PC.
- Conflict Detection, part 2: When you send an error report is sent as additional information about firewalls and antivirus programs Connectify support center. We hope that this will allow us to debug the other conflicts are much faster.
- Menu Help: We tried to make the items in the Help menu, clear, with explanations about what they do. Set as created by way of the elements directly into menyu.Spravka Connectify folder in the Start menu to make it easier if you have any problems.
- Advanced Troubleshooting: Troubleshooting been improved, it no longer tells you about many things that work well, and just focus on the issues. It also gives the best description and link to our support team.
- More icons: updated vendor database with a large number of companies and badges for clients.
- Improved Installer: Many small improvements in the installer. Should result in less restarts.
- Also fixed: Connectify and the installer refuses to continue, even if a restart is required, as long as you do not restart the PC.
- Data in Programdata: Connectify service now stores its data and writes it to a folder ProgramData system (usually C: ProgramData Connectify), but not in a folder in Program Files.
If you don't want to spend your money on a new router that would help you set up a wireless network, it's probably the time to give Connectify a try. In case the name doesn't tell you that much, Connectify is a downloadable application that can turn your wireless-capable computer into a virtual router, thus allowing you to use the same Internet connection on multiple devices. The interface is definitely the ace up its sleeve, because all the things have been designed to make the whole process very easy to use, even by those uninitiated. The configuration process can be done in a minute, as Connectify prompts you to choose the hotspot name, the password, the WiFi device to be used, the security mode and choose whether to enable Internet sharing or not.
Of course, you'll have full control over your wireless network all the time, so you will know exactly who is connected to your server. We've tested the application on a Windows 7 laptop and everything worked quite smooth, but keep in mind that a wireless network adapter is a must have in order to use the program. All in all, you won't find an application that's easier to use than Connectify and although you'll have to purchase a pro license to unlock its full powers, it's definitely worth the price.
Highlights of Connectify Pro Include:
- Share Wi-Fi from 3G/4G Networks - Connectify Pro now supports sharing Internet from 3G/4G cards in addition to a wide variety of other USB cards and dongles
- "Scannify" Service Discovery - Connectify Pro will automatically scan your network for available shared folders or drives, web servers, and other remote services
- AutoInternet Selection - When set to "Automatic," Connectify Pro intelligently chooses which Internet connection to share and makes necessary configuration changes to your hotspot
- Fully Customizable SSID - Name your hotspot whatever you want! Connectify Lite requires your hotspot name to start with "Connectify-"
- Support for Windows XP and Windows Vista - Ad-Hoc Mode only





ရယူရန္
DOWNLOAD




http://www.connectify.me/ ဆုိတဲ့ Website မွာလည္း ထပ္ၿပီးေလ့လာႏုိင္ပါတယ္..။

Credit : http://winkabarkyaw.blogspot.ru/

C#.Net Book (mm)

တင္ၿပသူ Kyaw Htin Tuesday 18 December 2012




ၿမန္မာ မိသားစုဖုိရမ္မွ စုစည္းၿပီးလုပ္ထားတဲ့ SevenLamp ရဲ႔ Basic OF C#.Net (Our Notes For Our Youngers) စာအုပ္ေလးပါ..။
အေၿခခံကအစရွင္းထားဒါမုိ႔ ဖတ္သင့္ ေလ့လာသင့္တဲ့ စာအုပ္ေလးပါ..။
လုိခ်င္တဲ့သူမ်ားယူႏုိင္ရန္အတြက္.......။။။။
DOWNLOAD 

 ထပ္ေလ့လာလုိသူေတြအတြက္ အဂၤလိပ္လုိ Step by Step
Microsoft Visual C# 2008Ebook ေလးပါ ။


DOWNLOAD 


cannot open new tab in firefox (mm)

တင္ၿပသူ Kyaw Htin Sunday 16 December 2012

အကယ္လုိ႔ firefox မွာ Open a new tab ေခၚလုိ႔မရေတာ့ဘူးဆုိ
Firefox ကုိ reset လုပ္ၿခင္းၿဖင့္ ၿပန္ဖြင့္လုိ႔ရႏဳိင္ပါတယ္..။

How do I reset Firefox to its default state?

    ပုံပါအတုိင္း Firefox windowေအာက္က  Firefox button ကေန Help ကုိ အဆင့္ဆင့္သြားပါ။ ၿပီးရင္  Troubleshooting Information ကုိသြားလုိက္ပါ..။
ဒါမွ မဟုတ္ tool bar က help ကေန   Troubleshooting Information  ကုိသြားပါ..။








ေပၚလာတဲ့ပုံတဲ့ကအတုိင္းTroubleshooting Information pageရဲ ႔ ညာဘက္အေပၚနားမွာရွိတဲ့  Reset Firefox ဆုိတဲ့ button ကုိ Click လုပ္လုိက္ပါ.


















အဲ့ဒီအဆင့္ၿပီးသြားရင္ေတာ့ firebox ေအာ္တုိပိတ္ၿပီး ၿပန္ဖြင့္ရင္  Open a new tab  ကုိ သုံးလုိ႔ ေခၚလုိ႔ရေတာ့မွာပါ...။ 

To make faster shutdown

တင္ၿပသူ Kyaw Htin







Computer ကိုပိတ္ရင္  Windows က Shutdown ခ်တတ္တဲ့ သူေတြ
အတြက္က ကိုယ့္ကြန္ပူ်တာ Shutdown  မက်မခ်င္းကို ေစာင့္ေပးရပါတယ္။
အဲ့ဒီလိုမိ်ဳးShutdown အခိ်န္ၾကာေန တဲ့အတြက္ တစ္ခါတေလ အေရးၾကီး
အျပင္သြားစရာရိွတယ္ဆိုရင္ UPS ကို မပိတ္ခဲ့ရဘဲ ထြက္သြားျပီး မီးပ်က္သြား
ရင္လည္း UPS ကိုဖြင့္ထားမိတဲ့အတြက္ UPS ပ်က္တာေတြရိွတတ္ပါတယ္။
အဲဒီ လိုမို်း တစ္ခါတစ္ရံ အေရးၾကီးလို့ အျပင္ ထြက္စရာရိွတဲ့သူေတြေရာ
Computer Shutdown  လုပ္တဲ့အခိ်န္ကို မေစာင့္ နိုင္တဲ့သူေတြအတြက္ေရာ
Computer Shutdown Time  ျမန္ေအာင္ လုပ္နည္းေလး ေျပာျပေပးခ်င္ပါတယ္။
အဓိကကေတာ့  Registry Editor  ထဲမွာ ၀င္ျပင္ရတာပါပဲ။ လုပ္ပံုလုပ္နည္း
ေလးကေတာ့ အရင္ဆံုး Windows +R  ကို နိွပ္ပါ။ ဘယ္ဘက္ေထာင့္မွာ Run Box က်လာပါလိမ့္မယ္။
Run Box ေပၚလာရင္ အဲဒီအထဲမွာ Regedit   ရိုက္ထည့္ေပးပါ။ အဲဒါဆိုရင္ Regisrty
Editor က်လာပါလိမ့္မယ္။ ျပီးရင္ Regisrty Editor ေအာက္က HKEY_LOCAL_MACHINE
နိွပ္ေပးပါ။ ျပီးရင္   SYSTEM  ဆိုတဲ့ဖိုင္ ကို ထပ္နိွပ္ေပးပါ။   SYSTEM  ေအာက္
က Current Control Set  ကို၀င္ေပးပါ။ ျပီးရင္ Current Control Set ေအာက္က
Control ဆိုတာကို ထပ္၀င္ေပးပါ။ Control ဆိုတဲ့  Folder  ကိုနိွပ္လိုက္တာ
နဲ့ ေဘးနားက Box ဖိုင္ေလးကိုးခုက် လာပါလိမ့္မယ္။ အဲဒီအထဲမွာ Wait
To Kill Service Timeout ဆိုတာေလး ကို Double Click နိွပ္ေပးပါ။ ျပီးရင္
Value Data ကို ၂၀၀ လို့ေျပာင္းေပး လိုက္ပါ။ ျပီးရင္  Shutdown ခ်ၾကည့္
တာနဲ့ သိသိသာသာ  Shutdown အခိ်န္ က ျမန္လာပါလိမ့္မယ္။


Crd : The Voice_8-50

ဆက္သြယ္ရန္ လိပ္စာ

kyawhtinaung86@gmail.com

Advertisment

Kstar mobile

Kstar mobile
* 72/A, Min Street, San Chaung * Yangon, Burma Today 9:00 am - 8:00 pm Phone +95 9 430 93565

နည္းပညာ ေနရာေကာင္းမ်ား

လာေရာက္ေသာေဒသမ်ား

ေရးၿဖစ္သမွ် အေၾကာင္းအရာမ်ား

Myanmar Calender

Technology Forum

 

မိတ္ေဆြမ်ား၏ တင္သမွ်စာေလးေတြ

အေၾကာင္းအရာ

resent



ပုိ႔စ္အသစ္မ်ား


အၾကံေပးစာမ်ား

About Us

My Photo
Kyaw Htin
Welcome to my homepage, be always happy and receive knowledge from my blog . myozawlin85@gmail.com Thanks for visited my blog
View my complete profile
mgpyinyar