active questions tagged vbscript - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T11:19:47Z http://stackoverflow.com/feeds/tag/vbscript http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1903508/vbscipt-logon-script-evaluate-two-items-and-map-shares-accordingly 0 VBSCipt LOGON Script - Evaluate two items and map shares accordingly David 2009-12-14T21:07:53Z 2009-12-15T09:22:47Z <p>I have a logon script mapping user drives Windows Network. Some users are now logging into a terminal server these days and I'd like to map a different drive, based on computer name they are logging in to.</p> <p>I am looking at which user AD group they are in (departmental group so I know which shares to map).</p> <pre><code>If IsAMemberOf(objNetwork.UserDomain, objNetwork.UserName, "Sales Dept. Users - Acton") Then MapIt "G:", "\\phillip\sales" </code></pre> <p>I need to now evaluate what the computer name is as well.</p> <p>The basic logic is: If user is in <em>Sales</em> group from this computer <em>bur-ts-01</em>, then map this share <em>\\bur-fil-01\sales</em>; else, if user is in <em>Sales</em> group use <em>\\phillip\sales</em>.</p> <p>It's a fairly comprehensive script mapping drives, printers, etc. Our VBScript person is long gone however and remote users are not able to access a local share to the TS server as a result.</p> <p>Can anyone offer any suggestions or sample code that I could review?</p> http://stackoverflow.com/questions/1763492/why-is-oledb-provider-is-saying-i-have-a-duplicate-when-i-dont 1 Why is OLEDB Provider is saying I have a duplicate when I don't? AnonJr 2009-11-11T17:52:07Z 2009-12-15T02:48:02Z <p><strong>Summary</strong>:<br /> I'm getting the oddest error regarding duplicates in a script that checks for them before inserting the record. It happened once, then not for a few months. Then again, and not for months. And so on. I bump this only because it has happened every run for almost a week now.</p> <p>What is so frustrating is that re-running the script with the same data will often succeed on the second or third try...</p> <p><strong>Background</strong>:<br /> I am the programmer for a county health system, and I work in the Education Department. I happen to be (un?)fortunate enough to also have to run the server that runs my web-based online education program.</p> <p>We've been upgrading it to use information from the hospital's HR system to make life a little easier for the regular users of said online education system. Sadly I can directly fetch the information from the server - they have a scheduled job that dumps a fresh copy of the data I'm allowed to access in a table on my server. </p> <p>This occurs once every 24 hrs at 0600 and overwrites the previous dump. The data we get from HR is de-normalized and not always in the best format. Also, the connection isn't exactly the most reliable so its not exactly a bad thing that we have a "local" copy.</p> <p><strong>Situation</strong>:<br /> Because we are trying to capture more information than we get from the data dump, and because we need to re-normalize the data, I have a scheduled task to run a VBScript that will process the data 1 hr. after the scheduled dump.</p> <p>For some odd reason, and in <strong>no predictable manner</strong>, the script will fail. Re-running it <em>may</em> or <em>may not</em> succeed, but if I keep re-running it the script <strong>will</strong> eventually succeed - same data, same script... here's a sampling of the error (it may be one, the other, or a similar one):</p> <pre>D:\Inetpub\AdminScripts>cscript LawsonInfoUpdate_v2.vbs //nologo D:\Inetpub\AdminScripts\LawsonInfoUpdate_v2.vbs(663, 3) Microsoft OLE DB Provide r for SQL Server: Violation of PRIMARY KEY constraint 'PK_Lawson_Employees'. Can not insert duplicate key in object 'dbo.Lawson_Employees'.</pre> <pre>D:\Inetpub\AdminScripts>cscript LawsonInfoUpdate_v2.vbs //nologo D:\Inetpub\AdminScripts\LawsonInfoUpdate_v2.vbs(776, 3) Microsoft OLE DB Provide r for SQL Server: Violation of PRIMARY KEY constraint 'PK_Lawson_PositionCodes'. Cannot insert duplicate key in object 'dbo.Lawson_PositionCodes'.</pre> <p>Sometimes it will complain about the same table repeatedly, sometimes it won't. The script does check for duplicates before it tries an insert - and despite the record not existing it will fuss over a duplicate. (I found that gem out by having it read back every record as it was processing so I could see which one was causing issues.)</p> <p><strong>Question</strong>:<br /> Why is it fussing about duplicates that don't exist? Why will it suddenly start working right?</p> <p>Here's the relevant portion of the script: (please no comments about date formatting, that's another discussion for another day)</p> <pre><code>Dim strLawsonConn : strLawsonConn = "Provider=SQLOLEDB;server=NTTRAINING\SQLEXPRESS;database=LawsonsRaw;uid=******;pwd=******;" Dim strTnDLiveConn : strTnDLiveConn = "Provider=SQLOLEDB;server=NTTRAINING\SQLEXPRESS;database=TnDWebLive;uid=******;pwd=******;" Dim objSQLDB : Set objSQLDB = CreateObject("ADODB.Command") Dim objLawsonData, objTnDLiveData, strSQL Dim arrCurrentEmpList, arrCurrentDeptList, arrCurrentPosList, intRecCount 'Load up an array with the current table of employee records.' strSQL = "SELECT employee, badge, lastName, firstName, midInit, homePhone, acctUnit, positionCode, credentials, hiredDate, empStatus " strSQL = strSQL &amp; "FROM LawsonEmp ORDER BY employee ASC;" Set objLawsonData = CreateObject("ADODB.Recordset") objLawsonData.Open strSQL, strLawsonConn, adOpenDynamic, adLockReadOnly, adCmdText If Not objLawsonData.BOF Then objLawsonData.MoveFirst If objLawsonData.EOF Then Set objLawsonData = Nothing strLogText = strLogText &amp; Now() &amp; " - No records from LawsonRaw. Quitting." &amp; vbNewLine Call WriteLog(strLogText) WScript.Quit Else arrCurrentEmpList = objLawsonData.GetRows(adGetRowsRest) intRecCount = UBound(arrCurrentEmpList,2) End If objLawsonData.Close Set objLawsonData = Nothing strLogText = strLogText &amp; Now() &amp; " - Marking all Employee records." &amp; vbNewLine strSQL = "UPDATE Lawson_Employees SET CurrentEmp = 0, LastChecked = '" &amp; DateToStr(dtStart) &amp; "';" objSQLDB.ActiveConnection = strTnDLiveConn objSQLDB.CommandText = strSQL objSQLDB.Execute ,,adCmdText 'Grab the recordset and start churning.' strLogText = strLogText &amp; Now() &amp; " - Processing all Employee records." &amp; vbNewLine strSQL = "SELECT * FROM Lawson_Employees ORDER BY LawsonID ASC;" Set objTnDLiveData = CreateObject("ADODB.Recordset") objTnDLiveData.Open strSQL, strTnDLiveConn, adOpenDynamic, adLockPessimistic, adCmdText 'Vars needed for the Imported Employee Array' Dim intCurrRec : intCurrRec = 0 Dim lblEmployeeID : lblEmployeeID = 0 Dim lblBadgeNum : lblBadgeNum = 1 Dim lblLastName : lblLastName = 2 Dim lblFirstName : lblFirstName = 3 Dim lblMidInitial : lblMidInitial = 4 Dim lblHomePhone : lblHomePhone = 5 Dim lblAccCode : lblAccCode = 6 Dim lblPosCode : lblPosCode = 7 Dim lblCred : lblCred = 8 Dim lblDOH : lblDOH = 9 Dim lblEmpStatus : lblEmpStatus = 10 'Run Through the array and update as needed' Dim tmpEmployeeID, tmpBadgeNum, tmpLastName, tmpFirstName, tmpMidInitial, tmpHomePhone Dim tmpAccCode, tmpPosCode, tmpCreds, tmpDOH, tmpEmpStatus For intCurrRec = 0 To intRecCount Step 1 'Set up temp fields based on the current record' tmpEmployeeID = cLng(Trim(arrCurrentEmpList(lblEmployeeID,intCurrRec))) tmpBadgeNum = cLng(Trim(arrCurrentEmpList(lblBadgeNum,intCurrRec))) tmpLastName = LNCap(Trim(arrCurrentEmpList(lblLastName,intCurrRec)),false) tmpFirstName = TitleCap(Trim(arrCurrentEmpList(lblFirstName,intCurrRec)),false) tmpMidInitial = Trim(arrCurrentEmpList(lblMidInitial,intCurrRec)) tmpHomePhone = Trim(arrCurrentEmpList(lblHomePhone,intCurrRec)) tmpAccCode = Trim(arrCurrentEmpList(lblAccCode,intCurrRec)) tmpPosCode = Trim(arrCurrentEmpList(lblPosCode,intCurrRec)) tmpCreds = Trim(arrCurrentEmpList(lblCred,intCurrRec) &amp; "") tmpDOH = DateToStr(arrCurrentEmpList(lblDOH,intCurrRec)) tmpEmpStatus = Trim(arrCurrentEmpList(lblEmpStatus,intCurrRec) &amp; "") If objTnDLiveData.EOF Then objTnDLiveData.MoveFirst objTnDLiveData.Find "LawsonID = " &amp; tmpEmployeeID If objTnDLiveData.EOF Then 'They don't exist, add the record 'WScript.Echo "Did not find " &amp; tmpEmployeeID objTnDLiveData.AddNew objTnDLiveData("LawsonID") = tmpEmployeeID objTnDLiveData("BadgeNumber") = tmpBadgeNum objTnDLiveData("LastName") = tmpLastName objTnDLiveData("FirstName") = tmpFirstName objTnDLiveData("MidInit") = tmpMidInitial objTnDLiveData("HomePhone") = tmpHomePhone objTnDLiveData("AccCode") = tmpAccCode objTnDLiveData("PosCode") = tmpPosCode objTnDLiveData("CredTypeID") = GetCredCode(tmpCreds) objTnDLiveData("Cred") = tmpCreds objTnDLiveData("CurrentEmp") = 1 objTnDLiveData("DOH") = tmpDOH objTnDLiveData("EmpStatus") = tmpEmpStatus objTnDLiveData("AddedOn") = DateToStr(dtStart) objTnDLiveData("LastChecked") = DateToStr(dtStart) objTnDLiveData.Update strLogText = strLogText &amp; Now() &amp; " - #" &amp; tmpEmployeeID &amp; " was added." &amp; vbNewLine Else 'They do exist, update if there are any changes' 'Check the Badge Number' If objTnDLiveData("BadgeNumber") &lt;&gt; tmpBadgeNum Or IsNull(objTnDLiveData("BadgeNumber")) Then strLogText = strLogText &amp; Now() &amp; " - #" &amp; tmpEmployeeID &amp; " had a change in Badge Number from " &amp; objTnDLiveData("BadgeNumber") &amp; " to " &amp; tmpBadgeNum &amp; "." &amp; vbNewLine objTnDLiveData("BadgeNumber") = tmpBadgeNum End If 'Check the Name' If objTnDLiveData("LastName") &lt;&gt; tmpLastName Or IsNull(objTnDLiveData("LastName")) Then strLogText = strLogText &amp; Now() &amp; " - #" &amp; tmpEmployeeID &amp; " had a change in Last Name from " &amp; objTnDLiveData("LastName") &amp; " to " &amp; tmpLastName &amp; "." &amp; vbNewLine objTnDLiveData("LastName") = tmpLastName End If If objTnDLiveData("FirstName") &lt;&gt; tmpFirstName Or IsNull(objTnDLiveData("FirstName")) Then strLogText = strLogText &amp; Now() &amp; " - #" &amp; tmpEmployeeID &amp; " had a change in First Name from " &amp; objTnDLiveData("FirstName") &amp; " to " &amp; tmpFirstName &amp; "." &amp; vbNewLine objTnDLiveData("FirstName") = tmpFirstName End If If objTnDLiveData("MidInit") &lt;&gt; tmpMidInitial Or IsNull(objTnDLiveData("MidInit")) Then strLogText = strLogText &amp; Now() &amp; " - #" &amp; tmpEmployeeID &amp; " had a change in Middle Initial from " &amp; objTnDLiveData("MidInit") &amp; " to " &amp; tmpMidInitial &amp; "." &amp; vbNewLine objTnDLiveData("MidInit") = tmpMidInitial End If 'Check the Home Phone If objTnDLiveData("HomePhone") &lt;&gt; tmpHomePhone Or IsNull(objTnDLiveData("HomePhone")) Then strLogText = strLogText &amp; Now() &amp; " - #" &amp; tmpEmployeeID &amp; " had a change in Home Phone from " &amp; objTnDLiveData("HomePhone") &amp; " to " &amp; tmpHomePhone &amp; "." &amp; vbNewLine objTnDLiveData("HomePhone") = tmpHomePhone End If 'Check the department' If objTnDLiveData("AccCode") &lt;&gt; tmpAccCode Or IsNull(objTnDLiveData("AccCode")) Then strLogText = strLogText &amp; Now() &amp; " - #" &amp; tmpEmployeeID &amp; " had a change in Department from " &amp; objTnDLiveData("AccCode") &amp; " to " &amp; tmpAccCode &amp; "." &amp; vbNewLine objTnDLiveData("AccCode") = tmpAccCode End If 'Check the Position Code' If objTnDLiveData("PosCode") &lt;&gt; tmpPosCode Or IsNull(objTnDLiveData("PosCode")) Then strLogText = strLogText &amp; Now() &amp; " - #" &amp; tmpEmployeeID &amp; " had a change in PosCode from " &amp; objTnDLiveData("PosCode") &amp; " to " &amp; tmpPosCode &amp; "." &amp; vbNewLine objTnDLiveData("PosCode") = tmpPosCode End If 'Check the Date of Hire' If objTnDLiveData("DOH") &lt;&gt; tmpDOH Or IsNull(objTnDLiveData("DOH")) Then strLogText = strLogText &amp; Now() &amp; " - #" &amp; tmpEmployeeID &amp; " had a change in DOH from " &amp; objTnDLiveData("DOH") &amp; " to " &amp; tmpDOH &amp; "." &amp; vbNewLine objTnDLiveData("DOH") = tmpDOH End If 'Check the EmpStatus' If objTnDLiveData("EmpStatus") &lt;&gt; tmpEmpStatus Or IsNull(objTnDLiveData("EmpStatus")) Then strLogText = strLogText &amp; Now() &amp; " - #" &amp; tmpEmployeeID &amp; " had a change in EmpStatus from " &amp; objTnDLiveData("EmpStatus") &amp; " to " &amp; tmpEmpStatus &amp; "." &amp; vbNewLine objTnDLiveData("EmpStatus") = tmpEmpStatus End If 'Check the creds.' If Trim(objTnDLiveData("Cred")) = "," Or IsNull(objTnDLiveData("Cred")) Then tmpCreds = "" If(InStr(1,(Trim(objTnDLiveData("Cred") &amp; " ")),tmpCreds,vbTextCompare) = 0) Then strLogText = strLogText &amp; Now() &amp; " - #" &amp; tmpEmployeeID &amp; " had a change in Credentials '" &amp; tmpCreds &amp; "' has been added." &amp; vbNewLine tmpCreds = objTnDLiveData("Cred") &amp; "," &amp; tmpCreds If objTnDLiveData("CredTypeID") = 0 or objTnDLiveData("CredTypeID") = "" Then objTnDLiveData("CredTypeID") = GetCredCode(tmpCreds) End If objTnDLiveData("Cred") = tmpCreds End If 'Mark them as current' strLogText = strLogText &amp; Now() &amp; " - #" &amp; tmpEmployeeID &amp; " was marked as current." &amp; vbNewLine objTnDLiveData("CurrentEmp") = 1 objTnDLiveData.Update End If Next objTnDLiveData.Close Set objTnDLiveData = Nothing strLogText = strLogText &amp; Now() &amp; " - Done with all Employee records." &amp; vbNewLine 'Update Position Code Info' strSQL = "SELECT DISTINCT positionCode, positionDesc FROM LawsonEmp ORDER BY positionCode ASC, positionDesc ASC;" Set objLawsonData = CreateObject("ADODB.Recordset") objLawsonData.Open strSQL, strLawsonConn, adOpenDynamic, adLockReadOnly, adCmdText If Not objLawsonData.BOF Then objLawsonData.MoveFirst If objLawsonData.EOF Then Set objLawsonData = Nothing strLogText = strLogText &amp; Now() &amp; " - No records from LawsonRaw. Quitting." &amp; vbNewLine Call WriteLog(strLogText) WScript.Quit Else arrCurrentPosList = objLawsonData.GetRows(adGetRowsRest) intRecCount = UBound(arrCurrentPosList,2) End If objLawsonData.Close Set objLawsonData = Nothing 'Mark all records as Not In Use' strLogText = strLogText &amp; Now() &amp; " - Marking all Position Codes." &amp; vbNewLine strSQL = "UPDATE Lawson_PositionCodes SET InUse = 0;" objSQLDB.ActiveConnection = strTnDLiveConn objSQLDB.CommandText = strSQL objSQLDB.Execute ,,adCmdText 'Grab the recordset and start churning.' strLogText = strLogText &amp; Now() &amp; " - Processing all Position Codes." &amp; vbNewLine strSQL = "SELECT * FROM Lawson_PositionCodes ORDER BY PosCode ASC;" Set objTnDLiveData = CreateObject("ADODB.Recordset") objTnDLiveData.Open strSQL, strTnDLiveConn, adOpenDynamic, adLockPessimistic, adCmdText Dim tmpPosDesc For intCurrRec = 0 To intRecCount Step 1 tmpPosCode = Trim(arrCurrentPosList(0,intCurrRec)) tmpPosDesc = TitleCap(Trim(arrCurrentPosList(1,intCurrRec)),false) If objTnDLiveData.EOF Then objTnDLiveData.MoveFirst objTnDLiveData.Find "PosCode = '" &amp; tmpPosCode &amp; "'" If objTnDLiveData.EOF Then 'They don't exist, add the record objTnDLiveData.AddNew objTnDLiveData("PosCode") = tmpPosCode objTnDLiveData("PosDescription") = tmpPosDesc objTnDLiveData("InUse") = 1 objTnDLiveData.Update strLogText = strLogText &amp; Now() &amp; " - #" &amp; tmpPosCode &amp; " was added." &amp; vbNewLine Else 'Check and make sure all is current' If objTnDLiveData("PosDescription") &lt;&gt; tmpPosDesc Then strLogText = strLogText &amp; Now() &amp; " - #" &amp; tmpPosCode &amp; " changed from " &amp; objTnDLiveData("PosDescription") &amp; " to " &amp; tmpPosDesc &amp; "." &amp; vbNewLine objTnDLiveData("PosDescription") = tmpPosDesc End If objTnDLiveData("InUse") = 1 objTnDLiveData.Update End If Next objTnDLiveData.Close Set objTnDLiveData = Nothing strLogText = strLogText &amp; Now() &amp; " - Done with all Position Codes." &amp; vbNewLine 'Update Department Info' 'Load up an array with the current Department Info.' strSQL = "SELECT DISTINCT acctUnit, department FROM LawsonEmp ORDER BY acctUnit ASC, department ASC;" Set objLawsonData = CreateObject("ADODB.Recordset") objLawsonData.Open strSQL, strLawsonConn, adOpenDynamic, adLockReadOnly, adCmdText If Not objLawsonData.BOF Then objLawsonData.MoveFirst If objLawsonData.EOF Then Set objLawsonData = Nothing strLogText = strLogText &amp; Now() &amp; " - No records from LawsonRaw. Quitting." &amp; vbNewLine Call WriteLog(strLogText) WScript.Quit Else arrCurrentDeptList = objLawsonData.GetRows(adGetRowsRest) intRecCount = UBound(arrCurrentDeptList,2) End If objLawsonData.Close Set objLawsonData = Nothing 'Mark all records (except customs) as Not In Use'' strLogText = strLogText &amp; Now() &amp; " - Marking all Dept records." &amp; vbNewLine strSQL = "UPDATE Lawson_DeptInfo SET InUse = 0 WHERE AccCode NOT LIKE 'INT%' AND AccCode NOT LIKE 'OUT%';" objSQLDB.ActiveConnection = strTnDLiveConn objSQLDB.CommandText = strSQL objSQLDB.Execute ,,adCmdText 'Grab the recordset and start churning.' strLogText = strLogText &amp; Now() &amp; " - Processing all Dept records." &amp; vbNewLine strSQL = "SELECT AccCode, LawsonName, AccCode2, DisplayName, InUse FROM Lawson_DeptInfo ORDER BY AccCode ASC;" Set objTnDLiveData = CreateObject("ADODB.Recordset") objTnDLiveData.Open strSQL, strTnDLiveConn, adOpenDynamic, adLockPessimistic, adCmdText Dim tmpAccCode2, tmpDepartmentName, tmpDisplayName For intCurrRec = 0 To intRecCount Step 1 tmpAccCode = Trim(arrCurrentDeptList(0,intCurrRec)) tmpDepartmentName = TitleCap(Trim(arrCurrentDeptList(1,intCurrRec)),false) tmpDisplayName = "" Select Case cStr(Left(arrCurrentDeptList(0,intCurrRec),2)) Case "10" tmpAccCode2 = "A" &amp; Right(Trim(arrCurrentDeptList(0,intCurrRec)),4) Case "20" tmpAccCode2 = "F" &amp; Right(Trim(arrCurrentDeptList(0,intCurrRec)),4) tmpDisplayName = "BHC-" &amp; tmpDepartmentName Case "30" tmpAccCode2 = "K" &amp; Right(Trim(arrCurrentDeptList(0,intCurrRec)),4) Case "40" tmpAccCode2 = "P" &amp; Right(Trim(arrCurrentDeptList(0,intCurrRec)),4) Case "50" tmpAccCode2 = "N" &amp; Right(Trim(arrCurrentDeptList(0,intCurrRec)),4) If UCase(Left(tmpDepartmentName,3)) &lt;&gt; "HPN" Then tmpDisplayName = "HPN-" &amp; tmpDepartmentName Else If UCase(Left(tmpDepartmentName,4)) = "HPN " Or UCase(Left(tmpDepartmentName,4)) = "HPN-"Then tmpDisplayName = "HPN-" &amp; Right(tmpDepartmentName,(Len(tmpDepartmentName)-4)) Else tmpDisplayName = "HPN-" &amp; Right(tmpDepartmentName,(Len(tmpDepartmentName)-3)) End If End If Case "70" tmpAccCode2 = "L" &amp; Right(Trim(arrCurrentDeptList(0,intCurrRec)),4) If UCase(Left(tmpDepartmentName,4)) &lt;&gt; "HRMH" Then If UCase(Left(tmpDepartmentName,5)) = "LTACH" Then If UCase(Left(tmpDepartmentName,6)) = "LTACH " Or UCase(Left(tmpDepartmentName,6)) = "LTACH-"Then tmpDisplayName = "LTACH-" &amp; Right(tmpDepartmentName,(Len(tmpDepartmentName)-6)) Else tmpDisplayName = "LTACH-" &amp; Right(tmpDepartmentName,(Len(tmpDepartmentName)-5)) End If Else tmpDisplayName = "HRMH-" &amp; tmpDepartmentName End If Else If UCase(Left(tmpDepartmentName,5)) = "HRMH " Or UCase(Left(tmpDepartmentName,5)) = "HRMH-"Then tmpDisplayName = "HRMH-" &amp; Right(tmpDepartmentName,(Len(tmpDepartmentName)-5)) Else tmpDisplayName = "HRMH-" &amp; Right(tmpDepartmentName,(Len(tmpDepartmentName)-4)) End If End If Case "90" tmpAccCode2 = "X" &amp; Right(Trim(arrCurrentDeptList(0,intCurrRec)),4) Case Else tmpAccCode2 = Trim(arrCurrentDeptList(0,intCurrRec)) End Select If tmpDisplayName = "" Then tmpDisplayName = tmpDepartmentName If tmpAccCode = "306282" And UCase(tmpDepartmentName) = "NN ADVANCED PRACTICE SVC." Then 'Handle the second NN ADVANCED PRACTICE SVC. with the conflicting AccCode' tmpAccCode = "106000" tmpAccCode2 = "100" tmpDepartmentName = "NN Advanced Practice Svc." tmpDisplayName = "NN Advanced Practice Svc." End If If Not objTnDLiveData.BOF Then objTnDLiveData.MoveFirst objTnDLiveData.Find "AccCode = '" &amp; tmpAccCode &amp; "'" If objTnDLiveData.EOF Then objTnDLiveData.AddNew objTnDLiveData("AccCode") = tmpAccCode objTnDLiveData("AccCode2") = tmpAccCode2 objTnDLiveData("LawsonName") = tmpDepartmentName objTnDLiveData("DisplayName") = tmpDisplayName objTnDLiveData("InUse") = 1 objTnDLiveData.Update strLogText = strLogText &amp; Now() &amp; " - #" &amp; tmpAccCode &amp; " was added." &amp; vbNewLine Else 'Check AccCode2' If objTnDLiveData("AccCode2") &lt;&gt; tmpAccCode2 Then strLogText = strLogText &amp; Now() &amp; " - #" &amp; tmpAccCode &amp; " changed from " &amp; objTnDLiveData("AccCode2") &amp; " to " &amp; tmpAccCode2 &amp; "." &amp; vbNewLine objTnDLiveData("AccCode2") = tmpAccCode2 End If 'Check Lawson Name' If objTnDLiveData("LawsonName") &lt;&gt; tmpDepartmentName Then strLogText = strLogText &amp; Now() &amp; " - #" &amp; tmpAccCode &amp; " changed from " &amp; objTnDLiveData("LawsonName") &amp; " to " &amp; tmpDepartmentName &amp; "." &amp; vbNewLine objTnDLiveData("LawsonName") = tmpDepartmentName strLogText = strLogText &amp; Now() &amp; " - #" &amp; tmpAccCode &amp; " changed from " &amp; objTnDLiveData("DisplayName") &amp; " to " &amp; tmpDisplayName &amp; "." &amp; vbNewLine objTnDLiveData("DisplayName") = tmpDisplayName End If objTnDLiveData("InUse") = 1 objTnDLiveData.Update End If Next objTnDLiveData.Close Set objTnDLiveData = Nothing strLogText = strLogText &amp; Now() &amp; " - Done with all Dept records." &amp; vbNewLine 'Write out Log File etc.' strLogText = strLogText &amp; Now() &amp; " - Done with everything. Writing log file." &amp; vbNewLine Call WriteLog(strLogText) Set objSQLDB = Nothing 'WScript.Echo "Program Finished at " &amp; Now() &amp; "." &amp; vbNewLine &amp; vbNewLine &amp; "It took " &amp; DateDiff("n",dtStart,Now()) &amp; " minute(s) to run."' WScript.Quit </code></pre> <p>Thanks for the help. :)</p> http://stackoverflow.com/questions/1895616/how-to-get-the-excel-file-name-path-in-vb-script 0 How to get the excel file name / path in VB Script? Veera 2009-12-13T05:12:04Z 2009-12-14T18:48:18Z <p>Say, I'm writing a VBScript inside my excel file <em>sample.xls</em>. Now I want to get the <strong>full path</strong> of <em>sample.xls</em> in my VBScript. How do I do it?</p> http://stackoverflow.com/questions/1902480/classic-asp-checkbox-question 0 Classic ASP checkbox question nolabel 2009-12-14T18:05:02Z 2009-12-14T18:18:06Z <p>I understand that if the all the inputs being entered as a, b, and c and all the checkbox are checked then the output would look like this.</p> <p>response.write( request.form("a1") ) = a, b, c<br> response.write( request.form("chk") ) = 1, 1, 1</p> <p>Is there a way to determined if the corresponding input text checkbox is checked if not all checkbox are checked?<br> ie: the input is being entered as a, b, and c then only the corresponding checkbox at "c" is checked. </p> <p>The output of this will be:</p> <p>response.write( request.form("a1") ) = a, b, c<br> response.write( request.form("chk") ) = 1</p> <pre><code>&lt;form name="myForm"&gt; &lt;input type="text" name="a1" /&gt; &lt;input type="checkbox" name="chk" value="1" /&gt; &lt;input type="text" name="a1" /&gt; &lt;input type="checkbox" name="chk" value="1" /&gt; &lt;input type="text" name="a1" /&gt; &lt;input type="checkbox" name="chk" value="1" /&gt; &lt;input type"submit" value="submit" /&gt; &lt;/form&gt; </code></pre> http://stackoverflow.com/questions/1858509/how-do-i-load-data-into-the-data-portal-of-diadem-with-vbscript 0 How do I load data into the Data Portal of DIAdem with VBScript? Lucas 2009-12-07T07:59:34Z 2009-12-14T08:45:14Z <p>I want to load a ".tdm" file into DIAdem (National Instruments) with a VBScript but can't find how to do this. I have Dialog which opens a browse-window, which returns the path as a string. So I was hoping to have a function which would work something like this:</p> <pre><code>Call Data.Root.ChannelGroups.Load(myStringWithThePath) </code></pre> http://stackoverflow.com/questions/1893526/latest-image-upload-asp-net-2-0-applet 0 latest image upload asp.net 2.0 applet Josmar Azzopardi 2009-12-12T14:01:27Z 2009-12-12T14:01:27Z <p>hey everyone,</p> <p>I use the following coding to show six images from the latest photo album i uploaded picture to. However the images being shown are the 1st six images in the folder (which are the ones the oldest uploaded) not the final six images uploaded. <strong>Anyone can help me what should i change in the following coding to show the last six images in the folder.</strong> </p> <pre><code> &lt;% latestfolder = "na" latestdate = cdate("01/01/09") set fs=Server.CreateObject("Scripting.FileSystemObject") set fo=fs.GetFolder(Server.MapPath("images/gallery")) for each folder in fo.subfolders if cdate(folder.DateLastModified) &gt; latestdate then latestdate = cdate(folder.DateLastModified) latestfolder = folder.name end if next if latestfolder &lt;&gt; "na" then set fi=fs.GetFolder(Server.MapPath("images/gallery/" &amp; latestfolder)) looptimes = 0 for each file in fi.files if right(lcase(file.Name),3) = "jpg" then %&gt; &lt;a href="thumbnail.aspx?picture=&lt;%=server.URLEncode("images/gallery/" &amp; latestfolder &amp; "/" &amp; file.Name)%&gt;&amp;maxWidth=640&amp;maxHeight=480" target="_blank" style="text-decoration:none; cursor:pointer;"&gt; &lt;img src="thumbnail.aspx?picture=&lt;%=server.URLEncode("images/gallery/" &amp; latestfolder &amp; "/" &amp; file.Name)%&gt;&amp;maxWidth=100&amp;maxHeight=60" style="border:1px solid #ffffff; margin:5px; margin-top:14px;"&gt; &lt;/a&gt; &lt;% end if looptimes = looptimes + 1 if looptimes = 6 then exit for end if next end if %&gt; </code></pre> http://stackoverflow.com/questions/1891261/how-to-get-program-files-environment-setting-from-vbscript 0 How to get program files environment setting from VBScript Jeremy 2009-12-11T22:24:39Z 2009-12-11T22:32:59Z <p>In a batch file you can use %PROGRAMFILES% to get the location of the program files directory, how do you do it in a VBScript?</p> http://stackoverflow.com/questions/1888921/is-there-ways-to-create-optional-arguments-to-functions-in-vb-script 1 Is there ways to create optional arguments to functions in vb script? Rob Segal 2009-12-11T15:44:41Z 2009-12-11T15:48:29Z <p>Is there ways to create optional arguments to functions in vb script allowing you to write functions something like...</p> <pre><code>myFunc("happy") myFunc("happy", 1, 2, 3) myFunc("happy", 1) etc. </code></pre> http://stackoverflow.com/questions/1886278/get-current-sub-name-for-a-vb-script 0 Get current Sub name for a VB-script Kristoffer 2009-12-11T06:51:39Z 2009-12-11T14:18:11Z <p>Hi</p> <p>I am developing VBscript for GUI testing. And I wonder if there is possibilites to get the current Sub name.</p> <p>I have divied the GUI testing into different Sub and want to log the Sub name to the logg file to track what is run.</p> <p>So this i that I want</p> <pre><code>Sub TestCase1 Log.Message(SubName) ' Rest of test End Sub </code></pre> <p>By using this I don't have the sub name hardcoded as a text string</p> http://stackoverflow.com/questions/1885170/http-get-request-asp-im-lost 1 HTTP GET Request, ASP - I'm lost! Tracy 2009-12-11T00:56:06Z 2009-12-11T11:54:07Z <p>Hi,</p> <p>Using VBScript with ASP I am trying to set up an HTTP GET Request which will visit a page which in turn generates a line of ASCII (non-HTML). I then want to extrapolate that ASCII line which will have 4 values delimited by semicolons back into 4 variables in my original ASP page so that I can take those values and do something with them.</p> <p>This is the page I want to access with HTTP GET Request <a href="http://www.certigo.com/demo/request.asp" rel="nofollow">http://www.certigo.com/demo/request.asp</a>. Three of the values are null here.</p> <p>I don't know much/anything about ASP, so I have this:</p> <pre><code>Dim oXMLHTTP Dim strStatusTest Set oXMLHTTP = CreateObject("MSXML2.XMLHTTP.3.0") oXMLHTTP.Open "GET", "http://www.certigo.com/demo/request.asp", False oXMLHTTP.Send If oXMLHTTP.Status = 200 Then strStatusText = oXMLHTTP.responseBody End If </code></pre> <p>but obviously I haven't a clue what I'm doing because this isn't working at all. I would be totally unsurprised to learn that what I have here isn't going in the right direction. Please help!!</p> <p>-Tracy</p> http://stackoverflow.com/questions/1125474/vbscript-to-connect-to-sql-server-2005-and-update-a-table 0 VBScript to connect to SQL Server 2005 and update a table san 2009-07-14T13:42:11Z 2009-12-11T10:51:57Z <p>I am new to VBScript. Can someone please help me to connect to SQL Server 2005 (OLEDB) using VBScript and update a table in the database.</p> <p>My server: sql14\qw<br> My database: fret<br> User id: admin<br> Pasword: pass<br> Table name: lookup</p> http://stackoverflow.com/questions/1048104/converting-vb-net-code-to-vbscript 0 Converting VB.NET code to VBScript Bilal 2009-06-26T09:02:37Z 2009-12-11T10:44:32Z <p>I have this snippet of VB.NET code that I want to convert to VBScript. It basically starts Microsoft Word, displays the Open dialog and mail merges the selected document. Any help will be highly appreciated.</p> <pre><code>Dim oMissing As Object = System.Reflection.Missing.Value Dim oEndOfDoc As Object = "\\endofdoc" Dim oFalse As Object = False 'Start Word and create a new document. Dim oWord As Word._Application Dim oDoc As Word._Document oWord = New Word.Application() oWord.Visible = True 'show box Dim dlg As Word.Dialog = oWord.Dialogs(Word.WdWordDialog.wdDialogFileOpen) Dim dlgType As System.Type = GetType(Word.Dialog) ' Set the Name property of the dialog box. dlgType.InvokeMember("Name", Reflection.BindingFlags.SetProperty Or Reflection.BindingFlags.Public Or Reflection.BindingFlags.Instance, Nothing, dlg, New Object() {"C:\Documents and Settings\My Documents\MailMerge\"}, System.Globalization.CultureInfo.InvariantCulture) Dim timeOut As Object = 0 Dim a As Int16 = dlg.Show(timeOut) 'if a document has been opened. If (a = -1) Then oDoc = oWord.ActiveDocument oDoc.Select() oDoc.MailMerge.OpenDataSource("C:\\usr\\mergequery.txt", oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing) oDoc.MailMerge.Destination = Word.WdMailMergeDestination.wdSendToNewDocument oDoc.MailMerge.Execute(oFalse) 'Close the original form document. oDoc.Saved = True oDoc.Close(oFalse, oMissing, oMissing) End If </code></pre> http://stackoverflow.com/questions/1886028/how-does-a-total-beginner-use-vb-to-write-a-macro-that-disables-certain-features 0 How does a total beginner use VB to write a macro that disables certain features in Word? Iain Fraser 2009-12-11T05:42:33Z 2009-12-11T06:00:47Z <p>Hi There</p> <p>First of all I'm going to state right out that I've never worked with VB in the context of coding macros before - my skills lie in other areas (PHP, Javascript, getting there with C#, etc). However, I've been asked by a colleague to lock down a document so that the user cannot change font faces, sizes or colours but does still have access to bold, italic, underline etc.</p> <p>I started out by protecting the document and restricting formatting but this is far too restrictive - effectively only allowing the user to apply premade styles - which is going to be unintuitive for the users who are not used to working with styles.</p> <p>So I've resorted to trying to writing a macro to do the job, but unfortunately I'm at the really pointy end of the learning curve and I honestly don't know where to start.</p> <p>You're going to laugh at me but so far this is all I have in my <code>ThisDocument</code>.</p> <pre><code>Private Sub Document_Open() End Sub </code></pre> <p>Ermmmm... help!</p> <p>Cheers</p> <p>Iain</p> http://stackoverflow.com/questions/1880570/regex-with-include-list-and-exclude-list 1 Regex with 'include' list and 'exclude' list metaopoly 2009-12-10T12:11:20Z 2009-12-10T14:28:57Z <p>I have a sentence (words delimited by spaces). </p> <p>I then have two lists of phrases (full or partial words i.e. contain no spaces): one is an 'include' list and the other is an 'exclude' list.</p> <p>A matching sentence will contain all phrases in the 'include' list (overlaps are OK, case insensitive) and none of the phrases in the 'exclude' list.</p> <p>How to test whether the sentence meets the rules? Thanks.</p> <p>Example</p> <p>Sentence = <code>This yammy Flybe catalog is sticky</code></p> <p>Include list = <code>cat</code> <code>fly</code> <code>tic</code></p> <p>Exclude list = <code>veg</code> <code>pot</code> <code>yam</code></p> <p>Test fails because, although all the 'include' phrases are in the sentence, one of the 'exclude' phrases (<code>yam</code>) does appear. Change the word <code>yammy</code> to <code>yummy</code> and the test should pass.</p> <p>P.S. currently using relation division implementation in SQL for this, which seems well optimized when the data is aleady in the SQL database. Now I have a data structure coming from an external source. I suppose I could pass in the delimited strings, split into table rows, etc but I want to investigate other options. So if not regex then what?</p> http://stackoverflow.com/questions/1880947/make-a-directory-and-copy-a-file 0 Make a directory and copy a file Arcath 2009-12-10T13:25:13Z 2009-12-10T13:49:03Z <p>In VBS how do you make a directory and then copy a file into it?</p> <p>Id like to make a folder in the root of C e.g. C:\folder and then copy a file from \server\folder\file.ext into that new folder</p> http://stackoverflow.com/questions/1869446/how-to-determine-the-language-currently-in-use-for-browser-in-classic-asp 1 How to determine the language currently in use for browser in classic ASP? Rob Segal 2009-12-08T20:00:07Z 2009-12-09T10:52:42Z <p>Is there ASP code which can retrieve the users current language? In javascript I know this works...</p> <pre><code>if (navigator.appName == 'Netscape') var language = navigator.language; else var language = navigator.userLanguage; </code></pre> <p>But is there an equivalent for ASP/VBScript?</p> http://stackoverflow.com/questions/1857875/dbnetlibconnectionopen-preloginhandshake-general-network-error-connecti 0 [DBNETLIB][ConnectionOpen (PreLoginHandshake()).]General network error - connecting to SQL database in VB script VBscripter 2009-12-07T04:50:53Z 2009-12-09T05:32:43Z <p>I have a VB script which connects to a local SQL database to retrieve a value. The exact same script runs on about 100 servers, but a few of the servers produce this error:</p> <p>[DBNETLIB][ConnectionOpen (PreLoginHandshake()).]General network error. Check your network documentation</p> <p>Here is the code that runs:</p> <pre><code>Function GetPrimaryServerID On Error Resume Next Set objConnection = CreateObject("ADODB.Connection") Set objRecordSet = CreateObject("ADODB.Recordset") objConnection.Open "Provider=SQLOLEDB;Data Source=127.0.0.1;Initial Catalog=xxx;User ID=xxx;Password=xxx" sqlquery = "SELECT ServerID FROM tblSettings" objRecordSet.Open sqlquery,objConnection objRecordSet.MoveFirst GetPrimaryServerID = objRecordSet("ServerID") objRecordSet.Close objConnection.Close End Function </code></pre> <p>The error occurs on the 5th line when trying to open the connection string. I'm confused as to why this script is working on nearly all servers and failing on only a handful. The database that they connect to is identical on every server in terms of structure, its only the data that changes. </p> http://stackoverflow.com/questions/1866561/reverse-createobject-in-vbscript 0 Reverse CreateObject in VBScript Haim Bender 2009-12-08T12:08:36Z 2009-12-08T12:12:52Z <p>Hi,</p> <p>I have an old vbscript the runs the command, foo = CreateObject(x.y). I want to run this script on another computer (which it doesn't run on now btw) but I don't know which dll's I should register, or what else I should do, to run the CreateObject command.</p> <p>How can I figure out what dll's I need to copy into the new computer, and do I need to register them, what else should be done?</p> <p>Or maybe they are OCX's or something?</p> <p>Cheers.</p> http://stackoverflow.com/questions/1865551/script-to-list-non-microsoft-services 1 Script to list non-Microsoft Services unknown (google) 2009-12-08T08:38:00Z 2009-12-08T11:35:38Z <p>Hi guys Been lookin' for a way to list the non-Microsoft Services to a *.txt file.</p> <p>Either using vbs or a batch file will be sufficient.</p> <p>I've tried numerous ways with WMI and the sc.exe command, but can't seem to put my finger on it.</p> <p>Thanks,</p> <p>Tim</p> http://stackoverflow.com/questions/1480999/build-automation-vmware-server-2-0-final-builder 2 Build automation, VMWare server 2.0, Final builder VMWare 2009-09-26T11:09:42Z 2009-12-07T21:22:09Z <p>I have a database in a VMWare Server 2.0 Virtual machine. I also have a web application in the IIS (7) in the VM.</p> <p>Now I want to execute some database scripts that are in the VM, from the Host machine. Also I have a VB script in the VM that I want to run from the Host machine.</p> <p>How do I go about setting this up. I can buy Final builder if that will help me.</p> <p>Since I am looking to automate the above from the Host machine, I was wondering what I would have to do to execute the database and the VB scripts that are in the VM, but execute them from the Host machine, so that these update the database and IIS (vb script thing) in the VM.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1847920/vbscript-function-to-create-a-two-dimensional-array-like-getrows-does 1 VBScript function to create a two-dimensional array, like GetRows does Martha 2009-12-04T16:02:52Z 2009-12-07T15:16:21Z <p>This is asp classic using VBScript, and no, it ain't moving to .net anything, so don't even ask.</p> <p>OK, so the classic way to get data out of a database is to use GetRows:</p> <pre><code>Dim MyRecords Dim rs, conn [...database opening stuff...] If Not rs.EOF Then MyRecords = rs.GetRows End If [...close database &amp; set to Nothing...] </code></pre> <p>Note how MyRecords is not dimmed as an array; it only becomes one after the <code>GetRows</code> call.</p> <p>My question is, how do I do something similar without using <code>GetRows</code>? For example, if the data needs to come from <code>Request.Form</code> instead of the database? (Doing something like "If conditions are met, then get data from database, else get data from form, but display the data the same way regardless where it came from".)</p> <p>There's an <code>Array</code> function in vbScript, but it only creates one-dimensional arrays - it's kinda like a limited version of the <code>Split</code> function, as far as I can tell. I need two dimensions. (Backwards two dimensions, no less, to match the way <code>GetRows</code> works - i.e. the first dimension is the columns, the second dimension is the rows.)</p> <p>I can't use dynamic arrays (<code>Dim MyRecords()</code>, then later <code>ReDim MyRecords(x,y)</code>) because then the <code>GetRows</code> will throw an error.</p> <p>Is there a way to do what I want, or do I have to resign myself to juggling two different arrays, one for the database, the other for the form? Or worse, use a <code>Do While</code> loop to populate the array from the database... //shudder.</p> http://stackoverflow.com/questions/291406/extract-files-from-zip-file-with-vbscript 6 Extract files from zip file with VBScript Tester101 2008-11-14T21:03:22Z 2009-12-06T12:36:55Z <p>When extracting files from a zip file I was using the following.</p> <pre><code>Sub Unzip(strFile) ' This routine unzips a file. NOTE: The files are extracted to a folder ' ' in the same location using the name of the file minus the extension. ' ' EX. C:\Test.zip will be extracted to C:\Test ' 'strFile (String) = Full path and filename of the file to be unzipped. ' Dim arrFile arrFile = Split(strFile, ".") Set fso = CreateObject("Scripting.FileSystemObject") fso.CreateFolder(arrFile(0) &amp; "\ ") pathToZipFile= arrFile(0) &amp; ".zip" extractTo= arrFile(0) &amp; "\ " set objShell = CreateObject("Shell.Application") set filesInzip=objShell.NameSpace(pathToZipFile).items objShell.NameSpace(extractTo).CopyHere(filesInzip) fso.DeleteFile pathToZipFile, True Set fso = Nothing Set objShell = Nothing End Sub 'Unzip </code></pre> <p>This was working, but now I get a "The File Exists" Error.<br> Any ideas or alternatives?</p> http://stackoverflow.com/questions/833293/how-to-run-vbscript-in-windows-nt-4 0 How to run VBScript in Windows NT 4? titanium 2009-05-07T07:17:43Z 2009-12-06T10:30:11Z <p>I have a VBScript which I am scheduling to run daily on many Windows servers. In Windows 2000 and 2003, the script worked fine as the two OS have csript.exe. However, in Windows NT 4, it does not seem to have this executable. </p> <p>Is there an alternative/option to run the VBScript in Windows NT 4?</p> http://stackoverflow.com/questions/1852135/microsoft-xmldom-selecting-a-node-that-contains-a-specific-node 1 MICROSOFT.XMLDOM -- selecting a node that contains a specific node Salman A 2009-12-05T12:53:28Z 2009-12-06T09:23:58Z <p>Here is an extract from the XML:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;usa_map_locator&gt; &lt;map_data&gt; &lt;state&gt; &lt;id&gt;2&lt;/id&gt; &lt;link/&gt; &lt;/state&gt; &lt;state&gt; &lt;id&gt;3&lt;/id&gt; &lt;link/&gt; &lt;/state&gt; &lt;/map_data&gt; &lt;/usa_map_locator&gt; </code></pre> <p>I need to assign a value to the link node for state 2 (or 3 or 4 or 5 and so on). I am using MICROSOFT.XMLDOM object to read the source XML and need the right method(s) to accomplish this.</p> http://stackoverflow.com/questions/1853491/vbscript-and-windows-mobile 0 VBScript And Windows Mobile Nathan Campos 2009-12-05T21:12:54Z 2009-12-05T23:48:09Z <p>Hello,<br /> I've started learning VBScript because of PowerShell, but I want to know if I can run VBScripts(*<em>.vbs</em>) in a Windows Mobile device. Thanks.</p> http://stackoverflow.com/questions/374960/sql-server-agent-how-to-sleep 0 SQL Server Agent: How to "sleep"? Thomas 2008-12-17T15:45:45Z 2009-12-05T01:21:44Z <p>In a scripting step in a scheduled task in SQL Server Agent 2005, I need to trigger a webscript that is running on a different server. I'm doing this:</p> <pre><code>Dim ie Set ie = CreateObject( "InternetExplorer.Application" ) ie.navigate "...to my dreamscript" ' Wait till IE is ready Do While ie.Busy (1) Loop ie.Quit set ie = Nothing </code></pre> <p>At (1) I would like to "sleep" (e.g. WScript.sleep(..)), but WScript is not available in this environment. Is there another way to "sleep" for a while?</p> http://stackoverflow.com/questions/1849574/mail-merge-script-to-merge-headers-footers 0 mail merge script to merge headers/footers? aZn137 2009-12-04T20:48:53Z 2009-12-04T20:48:53Z <p>Hi,</p> <p>I'm writing a script to merge 2 doc templates into 1 master doc, depending on some criteria. This is what I have so far:</p> <p>{ if mergefield effort_ } = 5 "{ includtext "C:\1\PL5.doc"}" ""{includetext "C:\1\PL6.doc"}"}</p> <p>The merged doc works fine, but in my PL5 and PL6 files, I have some headers and footers. The merged doc can only contain the main content of the merging letters. I was able to google some code, but it doesnt work. Will you please help?</p> <pre><code>Sub mklink() Dim w As Range Dim p As String Dim q As String Dim s As String ''''''''''''''''''''''' ' select current word Set w = Selection.Range w.Expand 'bookmark it ActiveDocument.Bookmarks.Add Range:=w, Name:="bm" 'create the link field code text p = ActiveDocument.FullName q = Replace(p, "\", "\\") 'Must escape filename backslashes s = "link word.document.12 " &amp; q &amp; " bm \a \r" 'Put field code in footer With ActiveDocument.Sections(1) .Footers(wdHeaderFooterPrimary).Range.Fields.Add Range:=.Footers(wdHeaderFooterPrimary).Range, Text:=s End With End Sub </code></pre> <p>Thanks</p> http://stackoverflow.com/questions/936367/iis-upgrade-not-backwards-compatible 1 IIS upgrade NOT backwards compatible? Loconte 2009-06-01T19:33:09Z 2009-12-04T15:17:15Z <p>I have a series of web pages that running off if an IIS (5.1) server. </p> <p>The pages use VBscript in .ASP pages which display and populate a back end database. These pages have been working 100% error free for years. I loaded a Microsoft tool (Visual Studio Express) to try it out. After loading the tool the IIS server started producing errors when the .asp pages tried to refresh. I think that the download tried to upgrade my web server. I removed the Visual Studio Express from my system. After numerous attempts to determine the source of the error (NOTE: No code was changed after the tool was loaded) I determined that the error happens when the characters <code>“&lt;&gt;&lt;&gt;”</code> get posted during a refresh. NOTE: I use <code>&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;</code> in dynamically created pull downs as the default. </p> <p>Ultimately the solution to the problem was simple, I just changed the default to be <code>“---------“</code> in the pull downs versus <code>“&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;”</code></p> <p>The Question is why did something that has worked 100% for over 9 years suddenly fail, and is there a configuration setting that I can change to have the server not error out on the <code>&lt;&gt;</code> characters.</p> <p>A global search and replace will fix the problem, but this code sequence and subsequent logic are used in 100’s of places and that will be a tedious and time consuming task. </p> http://stackoverflow.com/questions/1830731/scheduled-task-error 0 Scheduled task error Jignesh 2009-12-02T04:54:28Z 2009-12-03T22:13:08Z <p>I am getting error in scheduled task :"http://localhost:4625/DataUpdater.aspx.Error Message:Object reference not set to an instance of an object."</p> <p>Scheduledtask vbs script :</p> <pre><code>Call LogEntry() Sub LogEntry() On Error Resume Next Dim objRequest Dim URL Set objRequest = CreateObject("Microsoft.XMLHTTP") URL = "http://localhost:4625/DataUpdater.aspx" objRequest.open "POST", URL , false objRequest.Send Set objRequest = Nothing End Sub </code></pre> http://stackoverflow.com/questions/1840767/vbscript-what-is-the-simplest-way-to-format-a-string 0 VBScript: What is the simplest way to format a string? Paxenos 2009-12-03T15:44:39Z 2009-12-03T16:59:35Z <p>I have the following format: Value1 is {0} and Value2 is {1}.</p> <p>I need to replace the numbers in the brackets with strings. This is easily done in most languages using string.Format or something along those lines. How can I do this using only vbscript?</p> <p>I've tried: </p> <pre><code>Replace (strFormat, "{0}", value1) Replace (strFormat, "{1}", value2) </code></pre> <p>It does not work. Any solutions?</p>