12
votes
12answers
759 views
How do I make the business case for Python?
How would I make a compelling argument for introducing Python into a windows environment? VBscript or Batch scripts will run on any machine and handle most administrative tasks and Java and .Net are …
11
votes
9answers
3k views
Windows built-in ZIP compression script-able?
Is the zip compression that is built into Windows XP/Vista/2003/2008 able to be scripted at all? What executable would I have to call from a BAT/CMD file? or is it possible to do it with VBScript?
I …
10
votes
14answers
1k views
Response.Write vs <%= %>
Bearing in mind this is for classic asp
Which is better, all HTML contained within Response.Write Statements or inserting variables into HTML via <%= %>.
Eg
Response.Write "<table>" & …
10
votes
15answers
545 views
Why continue writing legacy systems?
I have a student position working on some websites for my school. Everything my school does is in VBScript/ASP Classic. I'm a bit confused about something. I can understand that my school as a LOT …
9
votes
4answers
969 views
Why is modulus different in different programming languages?
Perl
print 2 % -18;
-->
-16
Tcl
puts [expr {2 % -18}]
-->
-16
but VBScript
wscript.echo 2 mod -18
-->
2
Why the difference?
9
votes
15answers
3k views
What is the IDE for classic ASP and VBScript?
Yes, I'm stuck supporting a legacy ASP application. I currently have VS2008 installed but it complains incessantly about the ASP and VBScript I am dealing with. What would be a better IDE to use to …
8
votes
20answers
440 views
How should I go about learning to write programs?
I'm 15 years old and I want to learn how to program computers. I like to think I'm more experienced with computers than the average person, I use the command prompt every day and I know how to access …
6
votes
8answers
5k views
Oracle to Excel - PL/SQL export procedure
Hi,
I’m writing pl/sql procedure that exports data from Oracle to Excel. I need data formatting so I can’t use CSV. I’ve already tried with XML but it generates too large files when I want to export …
5
votes
4answers
56 views
Finding and removing orphaned web pages, images, and other related files.
I am working on a number of websites with files dating back to 2000. These sites have grown organically over time resulting in large numbers of orphaned web pages, include files, images, CSS files, …
5
votes
3answers
61 views
Dictionary/Client VS Application Variables
Hi i got a question about my server performance ... i got a classic asp cms hosting ~250 websites, for each website we build a Classic ASP dictionary using
set dict = …
5
votes
2answers
635 views
Any good libraries for parsing JSON in Classic ASP?
I've been able to find a zillion libraries for generating JSON in Classic ASP (VBScript) but I haven't been to find ANY for parsing.
I want something that I can pass a JSON string and get back a …
5
votes
4answers
968 views
Mount/Unmount USB drives with VBSCript
I am looking for a way to mount\unmount a USB flash drive using VBScript. This is the closest I was able to get.
Sub EjectDrive(strDrive)
On Error Resume Next
CONST SSF_DRIVES = 17
Set objShell = …
5
votes
3answers
3k views
Extract files from zip file with VBScript
When extracting files from a zip file I was using the following.
Sub Unzip(strFile)
' This routine unzips a file. NOTE: The files are extracted to a folder
' in the same location using the name of …
5
votes
4answers
2k views
How to get list of running applications using PowerShell or VBScript
I need to programmatically get a list of running applications as shown in the "Applications" tab inside the Windows Task Manager using PowerShell or VBScript.
All I could find so far is how to list …
5
votes
3answers
671 views
Expose an event handler to VBScript users of my COM object
Suppose I have a COM object which users can access via a call such as:
Set s = CreateObject("Server")
What I'd like to be able to do is allow the user to specify an event handler for the object, …
