Advertisement
|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| 07/11/2008 at 10:32AM PDT, ID: 23557960 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: |
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="printvoucher.aspx.vb" Inherits="printvoucher" %>
<script language="vbscript" type="text/VBSCRIPT" >
Sub Print_Page()
Dim strComputer as string
Dim strOldDefault as string
Dim objWMIService as object
Dim colPrinters, objPrinter as object
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colPrinters = objWMIService.ExecQuery ("Select * from Win32_Printer Where Default = TRUE")
For Each objPrinter in colPrinters
strOldDefault = objPrinter.Name
strOldDefault = Replace(strOldDefault, "\", "\\")
Next
Set colPrinters = objWMIService.ExecQuery ("Select * from Win32_Printer Where Name = 'DYMO'")
For Each objPrinter in colPrinters
objPrinter.SetDefaultPrinter()
Next
Wscript.Sleep 2000
WebBrowser1.ExecWB(6,1,null,null)
Set colPrinters = objWMIService.ExecQuery ("Select * from Win32_Printer Where Name = '" & strOldDefault & "'")
For Each objPrinter in colPrinters
objPrinter.SetDefaultPrinter()
Next
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head >
<title>Print Voucher</title>
</head>
<body onload="Print_Page()" style="padding-right: 0px; padding-left: 0px; padding-bottom: 0px; margin: 0px; overflow: hidden; clip: rect(0px 0px 0px 0px); padding-top: 0px; clear: none; table-layout: fixed; display: block; left: 0px; background-image: none; visibility: visible; width: 0px; cursor: crosshair; position: absolute; top: 0px; height: 0px" >
<object id="WebBrowser1" style="display:none" classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></object>
<form id="form1" runat="server" >
<img src="https://www.mysite.com/FuelTracker/client logos/gwpflogo.gif" style="Z-INDEX: 112; LEFT: 0px; TOP: 0px; margin: inherit; padding-top: 0px; position:absolute" width="298px" alt="" />
<asp:label runat="server" id="Label2" style="Z-INDEX: 112; LEFT: 2px; POSITION: absolute; TOP: 44px" font-size="12px" Height="55px" Width="295px" BorderStyle="Solid" BorderWidth="1px" Font-Names="Arial" ></asp:label>
</form>
</body>
</html>
|