通過修改注冊表來改變打印橫打

来源:互联网 发布:2017最新伤感网络歌曲 编辑:程序博客网 时间:2024/05/16 08:33

<script language="javascript">
 function window.onload()
 {
  shell = new ActiveXObject("WScript.Shell");  
  setTimeout("shell.sendKeys('%fu')",1); //works same as alt+F+U
  setTimeout("shell.sendKeys('%a')",1); // Orientation: Select "Landscape"
  setTimeout("shell.sendKeys('{ENTER}')",1);
  }

</script>