The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
63 views

My VBS Word macro is really slow, looking for advice!

So, I have a 100page long docx format document. I'm using a macro written in VBS to extract some information and then just generate a table from them. I iterate through the paragraphs and store the ...
1
vote
0answers
21 views

VBScript for AD account creation

Does the following code look okay? Want to see if anyone can spot any mistakes I may have made. This will be pulling from a pre-formatted Excel document - I have already specified all needed Cell ...
1
vote
0answers
52 views

How to tell the NPC what hand it has?

Posted my question here: http://stackoverflow.com/questions/14710039/vbscript-poker-game-what-hand-do-i-have Here is the full code: 'buy a blank deck of cards 'declare variables dim defaultDeck(51) ...
2
votes
1answer
36 views

Power utility for starting processes

I was looking for a way to start elevated (i.e. administrator permissions) and/or invisible processes via batch in Windows. It turns out that this is kind of impossible with batch only, so I googled ...
3
votes
0answers
234 views

VbScript/ASP Classic good OOP Pattern

Hy all, I have to create a website in Classic ASP, and i really want to do a clean design so i will try to put everything in Classes and Models to emulate the ViewModel Pattern. So can you tell me ...
2
votes
2answers
369 views

Check if an XML file exists then change URLs in it

This is my first VBScript I have ever written and I would like to know if there is any obvious blunders in the code. All the code should do is check if file exists then change the Yahoo URL to the ...
5
votes
2answers
409 views

Is there a more efficient way to do Base 32 encoding/decoding than this?

This journey started with a quest to create the shortest possible case-insensitive verification number. Based on the answers there, I worked out a Classic ASP/VBScript implementation of Crockford's ...
2
votes
3answers
251 views

Trying to speed up a report that takes freaking forever

I'll try to keep this as short as I can without losing context - we have a system for online education, where presentations often have a test. Management has access to a report used for measuring ...