VBScript (Visual Basic Scripting Edition) is an interpreted scripting language developed by Microsoft that is modeled on Visual Basic.

learn more… | top users | synonyms (1)

0
votes
0answers
21 views

How to compare data in different type of files?

I have got a problem. I need to compare data between two files,one is html file and the other one is excel file, actually the html file is result file and the excel file is the input file, I need to ...
0
votes
0answers
8 views

Script to set linked tables doesn't save username and password

I recently developed a simple Access 2010 database for a client. It was designed without VBA, just using macros so it wouldn't trigger any security warnings. The only problem was that it uses ODBC ...
0
votes
0answers
11 views

How to get the user name at the early stage of logon

What is the best method to get the username at the early stage of the Windows logon? I need to be able to determine the currently logged on user after the user is authenticated and before the registry ...
0
votes
1answer
15 views

calling ajaxmin build task from vbscript

I have a java script file which I wanted to have minification and compression on so I found this site http://ajaxmin.codeplex.com .I can use the command line to perform the procedure on my java script ...
-1
votes
1answer
23 views

Vbscript file does not exits ? Cannot read the .txt file?

when i tried to run it in command prompt cscript PrinterMigration.vbs PrinterMapping.txt. I get an error saying that the printerMapping.txt does not exist. But, both files PrinterMigration.vbs and ...
0
votes
1answer
15 views

I need to write VBS WScript.Echo output to text or cvs

I am attempting to write a VBScript that will list all of the installed application on a system in a text file or csv. I was able to find an existing code to list all of the software (including name, ...
0
votes
2answers
18 views

Read files from URL

Is it possible to read files like .css and .js from a URL? For instance, I have a file, which is located at http://main/shared/css/main.css, and want to read this file and store its content in another ...
0
votes
2answers
36 views

vbscript skipline and cr line endings

For some reason when I use the objFile.ReadLine method to read my text file, the entire file is returned as one long line. The file I'm opening is using CR line endings instead of CRLF or LF line ...
1
vote
1answer
39 views

How do I send unicode data to nvarchar field in stored proc with ado/vbscript?

I've been banging my head against the wall with this problem for the better part of two days, and my vbscript/ado is super rusty. I inherited a legacy product. It contains a method that performs ...
0
votes
1answer
15 views

Getting month and year date format in vbscript

Can someone please tell me how can we get data in the month and date format.In the below code it shows me the year with the same date one year ago in the format 6/18/2012 ..but I just need the ...
0
votes
0answers
26 views

VB.NET exe that talks to out-of-process COM on activate event bombs when external script AppActivates it

I wrote a VB.NET Windows Forms app that requests a string from an out-of-process COM object every time the activate event fires. My form has two tabs, so I need to programmatically flip to the correct ...
0
votes
2answers
31 views

copying folder to another path getting error

I have this below code which is copying files from one folder and creating a new folder if does not exist and then pasting the files over there.I am getting a path not found error..meaning if I want ...
0
votes
1answer
19 views

Set vbs permissions

I need to set "Read" permission on all folders, subfolders, and files on the local disk, except for the folder "$Recycle.Bin" How can this be done? Now the permission are distributed on all but how ...
0
votes
0answers
30 views

how to pass an vbs parameters to sql stored procedure?

Hi all im new to StackOverflow and im here with a question that i can't seem to find the answer to. I'm trying to execute an stored procedure that extracts the data to separate them into different ...
1
vote
1answer
56 views

How can a batch file receive two values from a VB Script?

The VB script takes one parameter as input. Is it possible to enter two parameters? Also could I use drop down list as well in the below script? @echo off > usermessage.vbs ECHO WScript.Echo ...
0
votes
1answer
27 views

VB script to rename all files in dir to start with an index

Set fso = CreateObject("Scripting.FileSystemObject") sFolder = "." Set folder = fso.GetFolder(sFolder) Set files = folder.Files Set index = 1 For each folderIdx In files File.Move ...
0
votes
0answers
11 views

connect to AD with alternate credential​s and build outlook signature

I am trying to pass alternate AD credentials in a script and display user attributes (ie displayname, department, title). I want to prompt for a username and password and then I want the script to ...
-2
votes
0answers
25 views

Search knowledge base / wiki programmatically [closed]

At work I have a wiki database that is huge and obviously it has a search page. However, I'm lazy and want to made something in VBScript or Java (Java only starting to learn but will manage). Can I ...
0
votes
0answers
17 views

Minimization and HTTP Compression using vbscript

I am very new to VBScript so can someone please tell me if it is possible to do minimization's and http compression using vbscript..I have different files like css and js that I would like to minimize ...
0
votes
1answer
28 views

subscript out of range error in vbscript

Can someone look at the below script and tell me why it's throwing this error subscript out of range error in vbscript ..In the text file there are two entries it writes to the file correctly but then ...
0
votes
1answer
36 views

how do I set my html form data as variables to write to a file in VBScript?

I have a Form created in Html and a VBScript to write a file to a Pickup folder for email to a certain address. I want to replace or add to the current fields in the write script with the form data as ...
0
votes
2answers
37 views

Error : Expected statement 800A0400 in my VBScript

Below is the start of a automation script ive been working on. The script opens IE, Goes to a URL and enters the logon credentials. I Then need to check if a image is loaded ...
1
vote
1answer
37 views

Using a variable in an path

I am trying to... Open a database connection Put html form data into an Access 2007 database Pass that same form data into a already created PDF form using the FDF Toolkit ...
-2
votes
0answers
35 views

Javascript or VBScript [closed]

My boss is deathly afraid of Mozilla and Apple, and insists that Firefox/Safari/Chrome will steal all of the private company information because they are "open sources". He only uses ie6 and makes ...
-1
votes
0answers
16 views

VBscript virus end in end of my html files [closed]

I noticed that all of my html files has this in end of my codes. Also i found this that explains about it. http://www.dataprotectioncenter.com/antivirus/mcafee/taking-a-look-at-w32ramnit/ Anyone ...
0
votes
1answer
35 views

find and replace symbol using vbs

I am working a 1XXX words documents, I want to use vbs to changing the status of checkbox faster but I can't found any work solution, after that, i wonder if find and replace can solve my issue, so i ...
0
votes
1answer
23 views

vbs type mismatch: [string]

I have the following code giving me an error and I can't understand why. Set objFSO = CreateObject("Scripting.FileSystemObject") Set objDir = objFSO.GetFolder(strOrigDir) Set colFiles = objDir.Files ...
0
votes
1answer
35 views

How to check whether QTP is launched in remote machine using VBS

I am trying to launch QTP on a remote server using VBS. I am running VBS file using C# code. When I am running my C# application from local machine it's giving me VBS error messages if there is any ...
0
votes
2answers
33 views

use SQL Query in asp to populate scripting dictionary

this is an answer I received from another question. I was just wondering how I use an SQL Query in asp to add users to the scripting dictionary using a database instead of writing them manually. Set ...
1
vote
1answer
38 views

Display alert based on the background color of a drop down select option

A have a drop down list which is being populated by a database, certain options in the list have a different background colour according to whether they have been banned or not. I would like to run a ...
-7
votes
0answers
50 views

convert python script to VB [closed]

I have this python script for renaming files in a dir. What will the equivalent script in VBscript? import os index = 8000; for filename in os.listdir("."): if filename.endswith(".png"): ...
1
vote
1answer
24 views

Public object not being recognized by internal action

I am creating a script in QTP, it has a few internal actions (ActionA, ActionB...) and I have an associated function library commonFunctions.vbs In my commonFunctions I have the code below: Public ...
0
votes
3answers
40 views

Cant understand a syntax in vbscript

I know its a really stupid question, but can anyone help me understanding these lines: dim dmnth = array() Redim dmnth(Rs_emp_count + 1, Rs_proj_count + 1, total_days + 1) dmnth(emp_cnt, prj_cnt, 0) ...
-1
votes
0answers
29 views

How to check and compoare the excel files in different folder and if files scheema value is missing update the scheema value in excel

There are two folders with same excel files, I have to check files exist in other folder or not.If not then copy that file from source to destination afterwards check the scheema of files if scheema ...
-2
votes
1answer
25 views

Excel macro vbs (Data already exist) [closed]

how to prompt user that data that he inserted is already exist macro vbs. example I inserted in A1 "Data" and if I insert again the word "Data" on A2 it will appear a prompt that say "your data is ...
0
votes
1answer
37 views

Automate download of a dynamically generated file after NTLM Authentication using vbscript/java

I am trying to automate to download a dynamically generated file on a server, so here are the steps what I have to carry out manually - Login to the site using my credentials - It uses NTLM to ...
0
votes
1answer
29 views

How to check if a file is uploaded in Imacro

Using Imacros and VBscript for firefox. How to I test once a file has been uploaded. What I want to be able to do is test for a page change and then see if a specific text is in the page if it is ...
0
votes
2answers
38 views

getting invalid procedure call or argument in vbscript

I have the below code..I am getting an invalid call or procedure at this statement txsOutput.Writeline txsInput1.ReadAll ..The combination file is ust a text file which has some entries in this ...
0
votes
1answer
18 views

Reading file in vbscript throwing error with invalid procedure call or argument error

I have the below code..If I use the static strInputPath3 the code works fine but if I use the strInputPath3 the code errors out with an error invalid procedure call or argument..Can someone please ...
0
votes
1answer
26 views

Break down sections in a text file using vbscript

I have a file which is in this format name.css value name.js value I want to break this down and create strings which will be in this format string1 = "c:\" + value + name + ...
-1
votes
0answers
24 views

Msgbox behaves different in vbscript

Normally in VB when we use the msgbox function, the msgbox stays up until we dismiss it. I've been noticing that my messageboxs and inputboxs in vbscript disappers after 5 seconds without being ...
0
votes
2answers
33 views

WSH VBScript switch workSHEET in already open Excel workBOOK

Is it possible to switch worksheets within a workbook in a WSH VBScript (referenced by name) and if so, how would I do it? This will be used in a script that already opens an Excel file. I want to ...
-2
votes
2answers
84 views

how to maximize ,minimize and close button in popup window in html page? [closed]

I trying to make a popup window that has no title bar or maximum,minimum and close button. any suggestion please post on this site.
0
votes
2answers
44 views

Python or VB script to run a batch file in background even the user logged out in windows [closed]

We need python or VB script code to run a batch file in background even the user logged out the system. The script should run always irrespective of users logged in/logged off and machine reboot. I ...
0
votes
0answers
16 views

Using VBScript to do HTTPCompressions

So I have multiples files like css and js and json which using VBScript I am merging into one file.Now I want this file to be Compresses or minimized when merging them together..I don't have much idea ...
-1
votes
1answer
75 views

Grouping Similar Cells in Excel [closed]

I have an excel sheet that has 7000+ records. It has two columns- Number and Title. The rows under the 'title' column contains strings and some of the strings are quite similar. For instance: Need ...
0
votes
1answer
32 views

VBS issue for writing a file

Here is what I am trying to do. The script reads a text file for computer names one at a time. Checks to see if a program.lnk exists. If the link exists it copies a new link to that computer/users ...
1
vote
1answer
25 views

Adding some kind of event listener for network connectivity

I have at my disposal the following resources: VBScript, WMI Queries, Registry Key/Values, .bat batch files Using any combination of these resources I need to create some kind of event listener that ...
-1
votes
1answer
36 views

How to check all the links dynamically?

The following thing I have to do using VBScript in QTP 10/11: The VBScript opens one login page. After the login it counts the number of links in that page and then prints all the links. Afterwards ...
1
vote
1answer
32 views

Using Session values inside VBScript

This is an excerpt from an old authentication technique. I'm trying to assign a different value to the Document.Form.XXXXX.Value variables. The values I want are stored inside a Session variable ...

1 2 3 4 5 118