3
votes
3answers
41 views
How do I pause VBS script while folder is deleted?
I'm writing a VBScript for SyncBack (backup utility) in which I am deleting old versions of a backup.
'' # if current version is greater than the total allowed number of versi …
0
votes
1answer
11 views
Starting a Firefoxprofile in a startupscript?
How do you start a Firefox-profile in a startupscript? This want do:
Set shell = CreateObject("WScript.Shell")
progList = Array("C:\Program Files\Mozilla Firefox\firefox.exe" -P …
0
votes
2answers
29 views
How can I open an HTML file as a text file to read the code using VBScript?
I have a lot of HTML pages that need the same few lines of text changed on them. To reduce the time it will take to manually open each one in Notepad and find the text and replace …
2
votes
4answers
33 views
Unicode, VBScript and HTML
Hi all,
I have the following radio box:
<input type="radio" value="香">香</input>
As you can see, the value is unicode. It represents the followi …
0
votes
2answers
24 views
Appending columns from two tables in MS Access
I have two MS Access tables:
tableA
num state
1 12
2 13
1 11
3 12
tableB
num stateA stateB
1 12 11
1 12 11
2 13 12
2 1 …
0
votes
2answers
46 views
Classic ASP class properties
Is it possible to set a dictionary object as a property of a class in classic ASP? I can't seem to get the syntax right. I have a function that I want to return a dictionary object …
0
votes
1answer
13 views
vbscript autocomplete
Hello,
Does someone know where can i find a vbscript autocomplete, google style (no postback)?
Thanks
1
vote
0answers
11 views
Detect Windows CE in vBScript ( Logon script )
Im wondering if its posible to detect windows CE in a windows logon script ( Scrip runs in the user account ).
I assume its posible to detect this via some checking for some file, …
1
vote
3answers
52 views
Unable to call c# code from vbscript - ActiveX error
Hi, i am trying to call a method i have written in c# from vbscript.
I have followed just about all of the instructions i can find on the web and am still having problems.
Specif …
1
vote
1answer
27 views
Using Classes in a Dictionary in Classic ASP
Hi
I usually do C# but have inherited a classic ASP project.
I have defined a class:
Class clsPayment
Public Name
End Class
Set objPayment = New clsPayment …
2
votes
3answers
70 views
Migrate (monolithic) Classic ASP to ASP.Net
For many years I have had an objective of moving out of ASP/VBScript to a "better" language - my preference would be C# as I have skills in C - but I would consider other languages …
0
votes
4answers
55 views
How to set delay in vbscript
Hi,
How to set delay in vbscript??
WScript.Sleep(100) does not work on Windows XP, Vista
Any help!
0
votes
1answer
40 views
VBscript and ADO - 3704 Operation is not allowed when the object is closed.
Hi All,
This function inserts a row into a SQL database and needs to return the identity number created:
Function WriteDatabase(backupTypeID, numImages, folderSize, success, erro …
2
votes
1answer
54 views
Overusing CInt?
I am fixing a defect in some classic ASP using VBScript and I've come across the following line:
variable1 = CInt((CInt(variable2) MOD CInt(3600))\ CInt(60))
Is it necessary to …
1
vote
5answers
46 views
Get SYSTEM temp folder?
I'm looking for something similar to this question. However, I am looking specifically to dynamically find the location of the system's temp folder (i.e. the temp folder used by s …
