Posts

Showing posts from November, 2016

Excel locked by another user (Solve)

ขั้นตอนการแก้ไข เปิดโปรแกรม Excel โดยที่ไม่ต้องเปิดไฟล์ ไปที่เมนู File แล้วเลือกเมนู Open  เลือกไฟล์ที่มีปัญหา เลือก Option ที่ปุ่ม Open ให้เลือกเป็น Open and Repair ไฟล์จะได้รับการแก้ไขเป็นปกติ (แต่ถ้ามีเครื่องเปิดใช้งานอยู่จริงๆ จะไม่สามารถซ่อมแซมได้นะ)

Loading Page by jQuery

Cascading Style Sheets (CSS) <style type="text/css">     .modal     {         position: fixed;         top: 0;         left: 0;         background-color: black;         z-index: 99;         opacity: 0.8;         filter: alpha(opacity=80);         -moz-opacity: 0.8;         min-height: 100%;         width: 100%;     }     .loading     {         font-family: Arial;         font-size: 10pt;         border: 5px solid #67CFF5;         width: 200px;         height: 100px;         display: none;         position: fixed;         background-color: White;         z-index: 999;     } </style> jQuery <script type="text/javascript" src="js/jquery-1.8.3.min.js"></script> Javascript <script type="text/javascript">   function ShowProgress()      {    setTimeout(function () {        var modal = $('<div />');        modal.addClass("modal");        $('body')