The most viewed posts

Registry Reviver

Web Development Services

Contact Me

How to clean up Windows Computer

About Desktop Icons in Windows Computer

Driver Booster

CCleaner

How to make a computer secure and run faster

Myanmar font and keyboard for Windows

Advanced System Care

The most viewed items

Dell Inspiron 5559

Desktop Hard Disk

Laptop RAM

HP ProBook 430

SONY Playstation Portable

External Hard Disk

Laptop

Please login to start chat

ZilaStar ICT Apr 07 2023, 19:52:27

Web service extension for corechoicegroup company limited

Core Choice Group makes next one year extension of Web service with TNW (Web Service & ICT Solutions) for their company Website and Business Emails.

It has already been five years that TNW has been providing Web service for Core Choice Group.

Thank you so much.


ZilaStar ICT Oct 22 2022, 10:15:47

JavaScript Array Methods

entries()
    Returns a key/value pair Array Iteration Object

every()
    Checks if every element in an array pass a test in a testing function.

fill()
    Fill the elements in an array with a static value.

filter()
    Creates a new array with all elements that pass the test in a testing function.

find()
    Returns the value of the first element in an array that pass the test in a testing function.

findIndex()
    Returns the index of the first element in an array that pass the test in a testing function.

forEach()
    Calls a function once for each array element.

from()
    Creates an array from an object

includes()
    Determines whether an array includes a certain element.

indexOf()
    Search the array for an element and returns its first index.

isArray()
    Determines whether the passed value is an array.

join()
    Joins all elements of an array into a string.

keys()
    Returns a Array Iteration Object, containing the keys of the original array.

lastIndexOf()
    Search the array for an element, starting at the end, and returns its last index.

map()

    Creates a new array with the results for calling a function for each array element.

pop()

    Removes the last element from an array, and returns that element.

push()
    Adds one or more elements to the end of an array, and returns the array's new length.

reduce()
    Reduce the values of an array to a single value(from left-to-right).

reduceRight()
    Reduce the values of an array to a single value(from right-to-left).

reverse()
    Reverses the order of the elements in an array.

shift()
    Removes the first element from an array, and returns that element.

slice()
    Selects a part of an array, and returns the new array.

some()
    Checks if any of the elements in an array passes the test in a testing function.

sort()
    Sorts the elements of an array.

splice()
    Adds/Removes elements to/from an array.

unshift()
    Adds new elements to the beginning of an array, and returns the arrays's new length.


ZilaStar ICT Aug 25 2022, 09:53:29

How to sell IT materials in zilastar.com

I've developed a web application called 'Trade'  for those who wanna sell their IT materials at online and for those who are looking for IT materials at Online. I've made the video for those who wanna sell their IT Materials in zilastar.com. You can look at it in the following video.


ZilaStar ICT Aug 24 2022, 10:37:49

How to change proxy setting in Windows Computer

We can change some proxy settings in Windows computer about using internet. For example, if you are help desk technician and you don't wanna allow the users to use some websites, you can use this proxy settings in Windows. If you are network engineer or network technician, you can configure it in the routers or accept points or servers.

I've explained how to change proxy setting of windows computer in the following video.


ZilaStar ICT Aug 24 2022, 09:32:51

How to change proxy setting in Mozilla Firefox

Sometimes we may face the problem that internet connection is ok in our computers and we can use internet by other browsers. But we can't use it in Mozilla. At that time, we should check the proxy settings in Mozilla. I've made a video to explain how to change proxy settings. You can see it in the following video.


ZilaStar ICT Aug 23 2022, 16:07:36

How to check Hard Disk

Sometimes our computers may be working slowly because of hard disk errors. At that time, we should check our hard disks are in good conditions or not. We can check our hard disks by the following ways.

1. We can use chkdsk in the command prompt. To use command prompt, please press windows key and s key together at the same time.
    The system will check hard disk at the next restart.

2. We can use hard disk sentinel to check the performance and health or a hard disk.

    The performance and health of the first hard disk is in 100%. So, we can use it safely.

    I will insert the next hard disk into the computer. Although performance is in good condition, the health is not in good condition. So, we should not continue to use second hard disk anymore.

I've made a video about it. You can see it in the following video.


ZilaStar ICT Aug 04 2022, 17:24:26

Business Email Service Extension for Knowledge Villa

Today Knowledge Villa Com., Ltd. makes next one year extension of Business Email Service with TNW(Web Service & ICT Solutions) for their company emails.


ZilaStar ICT Aug 02 2022, 16:38:29

Web Service Extension for Amog Tech Com., Ltd.

Today Amog Tech Com., Ltd. makes next one year extension of Web Service with TNW(Web Service & ICT Solutions) for their company website and emails. It has already been five years I have been providing Web Service to Amog Tech Com., Ltd. I would like to say "Thank you so much" to Amog Tech Com., Ltd.

May Their Business Be Successful More Than Now.

AMOG Tech Co., Ltd. was organized and managed by a qualified group who have working experiences for Engineering, Procurement and Construction Projects in the Southeast Asia region. We are an MEP Contractor and also supply Electrical, Instrumentation & Automation Products for a commercial & industrial building in Myanmar.To read more about Amog Tech Com., Ltd.


ZilaStar ICT Aug 01 2022, 11:43:29

Input Datetime Local (HTML Objects)

<!DOCTYPE html>
<html>
<head>
<title>Js Code Testing</title>
</head>
<body>
<button onclick = "jsFun()">Try It</button>
<script>
function jsFun(){
var x = document.createElement("INPUT");
x.setAttribute("type", "datetime-local");
document.body.appendChild(x);
}
</script>
</body>
</html>


ZilaStar ICT Jul 31 2022, 11:42:26

Input Date (HTML Objects)

<!DOCTYPE html>
<html>
<head>
<title>Js Code Test</title>
</head>
<button onclick = "jsFun()">Try It</button>
<body>
<script>
function jsFun(){
var x = document.createElement("INPUT");
x.setAttribute("type", "date");
document.body.appendChild(x);
}
</script>
</body>
</html>


ZilaStar ICT Jul 30 2022, 11:41:01

JS Event Listener 2

<!DOCTYPE html>
<html>
<head>
<title>JavaScript Code Testing</title>
</head>
<body>

<button type = "button" id = "event">Try It</button>
<p id = "demo"></p>
<script>
var x = document.getElementById("event");
x.addEventListener("mouseover", jsFun1);
x.addEventListener("mousedown", jsFun2);
x.addEventListener("mouseout", jsFun3);

function jsFun1(){
document.getElementById("demo").innerHTML += "Mouse Over<br />";
}

function jsFun2(){
document.getElementById("demo").innerHTML += "Mouse Down<br />";
}

function jsFun3(){
document.getElementById("demo").innerHTML += "Mouse Out<br />";
}
</script>
</body>
</html>


ZilaStar ICT Jul 30 2022, 11:40:30

JS Event Listener 1

<!DOCTYPE html>
<html>
<head>
<title>JavaScript Code Testing</title>
</head>
<body>
<p id = "demo">The Date is:</p>
<button type = "button" id = "test">Show Date</button>&nbsp;&nbsp;
<button type = "button" id = "test1">Hide</button>
<script>
document.getElementById("test").addEventListener('click', jsFun);
document.getElementById("test1").addEventListener('click', jsHide);

function jsFun(){
document.getElementById("demo").innerHTML = Date();
}

function jsHide(){
document.getElementById("demo").innerHTML = "";
}

</script>
</body>
</html>


Page : 2 of 30
To Contact
Available Services
Terms and Conditions