EXCEL TOOLS
Excel Add-ins ที่พัฒนาโดยคุณสันติพงศ์ ณสุย (MVP Excel 2010-2020) ด้วยภาษา C# เพื่อแก้ไขปัญหาไฟล์ใหญ่ คำนวณนาน ทำงานช้า จัดการข้อมูลต่าง ๆ ที่ทำงานประจำวันได้อย่างสะดวกรวดเร็ว สนใจคลิกไปดูได้ที่นี่ครับ => Excel Tools
Excel Add-ins ที่พัฒนาโดยคุณสันติพงศ์ ณสุย (MVP Excel 2010-2020) ด้วยภาษา C# เพื่อแก้ไขปัญหาไฟล์ใหญ่ คำนวณนาน ทำงานช้า จัดการข้อมูลต่าง ๆ ที่ทำงานประจำวันได้อย่างสะดวกรวดเร็ว สนใจคลิกไปดูได้ที่นี่ครับ => Excel Tools
[code]
และปิดด้วย [/code]
ตัวอย่างเช่น [code]dim r as range[/code]
เพื่อให้แตกต่างจากข้อความทั่วไป สะดวกในการอ่านและทดสอบ (คลิกเพื่อดูตัวอย่างเพิ่มเติม)Code: Select all
<html> <head>
<script>
var openFile = function(event) {
var input = event.target;
var reader = new FileReader();
reader.onload = function(){
var text = reader.result;
var node = document.getElementById('output');
node.innerText = text;
console.log(reader.result.substring(0, 200));
};
reader.readAsText(input.files[0]);
};
</script> </head>
<body>
<input id="demo" type='file' accept='text/plain' onchange='openFile(event)'><br>
<div id='output'> ... </div>
</body>
</html>
Code: Select all
function readTextFile(file)
{
var rawFile = new XMLHttpRequest();
rawFile.open("GET", file, false);
rawFile.onreadystatechange = function ()
{
if(rawFile.readyState === 4)
{
if(rawFile.status === 200 || rawFile.status == 0)
{
var allText = rawFile.responseText;
alert(allText);
}
}
}
rawFile.send(null);
}
Code: Select all
<html>
<head>
<script>
function readTextFile(file){
var rawFile = new XMLHttpRequest();
rawFile.open("GET", file, false);
rawFile.onreadystatechange = function () {
if(rawFile.readyState === 4) {
if(rawFile.status === 200 || rawFile.status == 0){
var allText = rawFile.responseText;
alert(allText);
document.getElementById('output').innerText = allText;
}
}
}
rawFile.send(null);
}
</script>
</head>
<body >
<input type="button" value="click" onclick="readTextFile('file:///E:/text.txt');">
<div id='output'> ... </div>
</body>
</html>
Code: Select all
<html>
<head>
<script>
function ReadFromFile() {
alert("1");
var filename = "E:/text.txt";
alert("2");
var fso, a, ForReading;
alert("3");
ForReading = 1;
alert("4");
fso = new ActiveXObject("Scripting.FileSystemObject");
alert("5");
file = fso.OpenTextFile(filename, ForReading, false);
document.getElementById("result").innerHTML=file.readline()+" ";
file.Close();
}
</script>
</head>
<body >
<input type="button" value="click" onclick="ReadFromFile();">
<div id='output'> ... </div>
</body>
</html>