2
votes
0answers
38 views

VB Script accented characters coming out as “Chinese” looking script?

I'm writing a VB script to replace words in a word doc. The crux of the code is: strEuropeanOld="European" strEuropeanNew="Européen" I then replace the word: If InStr(FileText, strEuropeanOld) ...
0
votes
1answer
50 views

how to supress error message Duplicate primary key ms access

I have created student attendance application in MS access 2010 in which I have two main tables. One table is master data of student and other is attendance table in which field ID Card Number and ...
1
vote
3answers
86 views

How can I use VBScript to effectively refresh the external data of several Excel spreadsheets?

I have a macro in one XLSM workbook's module that refreshes all the external data, then saves and closes that workbook. ActiveWorkbook.RefreshAll ActiveWorkbook.Save ActiveWorkbook.Close ...
0
votes
1answer
30 views

Updating MS Power Point linked object such as chart or Excel sheet

I have a ppt which is generated every week. I have created a vbscript for updating the linked chart.. but i couldn't find how to identify the excel sheet which i have used for creating the table in ...
0
votes
1answer
36 views

How to pass vbscript variable into html

I am using vbscript and excels to automate one of my tasks.The below mentioned code automatically draft an email in outlook with an attachement.But still i have to manually enter the 'aa' values and ...
0
votes
1answer
47 views

Display timer as well as “Pause / Resume / Stop” Button

I have a small scrip that basically presses "F2" for me every 4 minutes for the duration of 8hours for the active application. It works and is really basic as my skills in VB are extremely limited. ...
0
votes
0answers
68 views

Update XLSM (macros) via VBS, Current Directory

I am trying to run an excel macro via a scheduled task. I found a good working method here. My version of that vbs is here: Option Explicit On Error Resume Next ExcelMacroExample WScript.Echo ...
0
votes
1answer
88 views

Writing a vbscript to read data in a table and output total hours

I am working with a table like below, where there are projects that are broken down into tasks, and one task may appear more than once. I am aiming to get the sum of all hours of the same task, so for ...
0
votes
1answer
86 views

Extract All Excel Function Types From A String using Regex in VB

How can i extract excel functions (only their names) from a string in visual basic? For example i have: Sin(B6)*Sum(A2:A4) So i want to find a way to have "Sin" and "Sum" from this. Note: I already ...
0
votes
2answers
97 views

Adding to an array in VBA with strings as the index

Not sure I've labelled this correctly. I have a bunch of cells containing strings of data. Each cell consists of something like this: q1 = 1 | q2 = 3.2 | q3 = 5.6 q1 = 1.8 | q3 = 2.1 | q5 = 1.4 ...
0
votes
0answers
55 views

Create Access ADE file from command line

I have inherited an Access 2007 application that needs to be saved as an ADE before release. Is there a way to do this from the commandline? I am trying to automate the build process as much as ...
0
votes
2answers
68 views

Visual Basic Fill Array with simple number set

I need to fill an array with numbers 1-50, and I currently have the code: Dim numberSet(49) For x = 1 To 50 numberSet(x - 1) = x Next x The challenge is to do it in the least amount of lines ...
-1
votes
1answer
43 views

vba to format/parse dataset in csv [duplicate]

Can anyone see whats wrong with this script? Option Explicit Dim lrow As Long Dim lcol As Long Dim i As Long Dim j As Long Dim strow As Long Dim fso As Object Dim xl As Excel.Application Dim wb As ...
-1
votes
1answer
103 views

Connection to MS access 2007 via form using vba

I have created a sample MS access 2007 database and designed a form to retrieve the records of the user , if the username and password entered in the form matches the record.In the button action it ...
0
votes
1answer
59 views

Problems searching HTML with Regular Expressions

I'm trying to use regular expressions for the first time and having some trouble, maybe with my syntax. Here's a sample string contained in my source file I'd like to find: Type = Creature / Animal ...
3
votes
0answers
92 views

VBS Very very slow in ms word [closed]

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
votes
1answer
50 views

how to open and WRQ relection program through VB script?

I want to open test.r2w file (r2w is extention for WRQ reflection program) and then i want to run macro which is store inside of that file and then i want to close it automatically. is it possible ...
0
votes
0answers
112 views

VBA Proxy settings for a non admin

At the moment i'm using the following code : strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & ...
1
vote
1answer
55 views

VBS: Terminate multiple running applications

I am trying to close multiple applications at the same time using the following VBS script, but am getting the error 0x80041017 on the For Each loop line. It works fine with just one application but I ...
3
votes
1answer
770 views

Using excels named range/ object in a sql string VBScript

( I have edited this questions, see below ) I have searched on here and google but I still cannot solve my issue. I am trying to use an excel's named range equivalent in my .vbs file. This below works ...
3
votes
1answer
174 views

What is the maximum size of Scripting.Dictionary?

I am trying to find what is the upper limit of Scripting.Dictionary? Is there one? It could be either limit on number of elements or size of memory. I could not trace any info on that.
7
votes
2answers
588 views

Start excel from Task Scheduler was working, now fails

I've been running my excel 2000 vba program with Task Scheduler and cscript and vbscript for about a year now. A few days ago it stopped working. I can run the program manually. Whenever Task ...
0
votes
0answers
112 views

How to use POST data using navigate in VBS

Currently I'm trying to write a function to post data to an IE window in VBS. I'm trying to modify a function I wrote in VBA which works well: Sub IEPostStringRequest(URL As String, FormData As ...
0
votes
1answer
425 views

Parsing data in text into excel columns

I want to parse the below portion of the text file such that the incremental numbers under "DVA" are placed into a column as a range of cells that I determine. I would like to do the same for the ...
2
votes
2answers
367 views

Strangely cscript does not save xlsx as xlExcel8 and failed silently

I was using MSOffice2010 and cscript (Windows Script Version 5.8), trying to do things as simple as: 1. Open a native xlsx file 2. Save it as xls file (xlExcel8) What I did was: xcx.vbs ' ...
1
vote
1answer
262 views

VBA function call: Excel Button vs VBS call

I'm struggling with a VBA Sub that is called by a button. This Sub opens an Configuration.xls Excel spreadsheet from a hard coded file path. A MsgBox tell me about the current workspace - the ...
1
vote
1answer
83 views

Object based programming in Microsoft Vb script

I have one fundamental question in object based programming in vb script or VBA. In general when we use the object oriented programming in Java we use object references to either a variable or ...
1
vote
1answer
470 views

MSWord macro: search and highlight formatted text patterns

I'm trying to write a MSWord macro that will find, and then highlight (in yellow), certain kinds of text strings in a MSWord file. For example: 1) An italicized comma, followed by whitespace, and ...
0
votes
0answers
85 views

Windows script to generate table of contents for a Word book [closed]

I have a book in which the sections are separate Word documents and they are in 7 folders representing the 7 chapters. The filenames are like this: one digit shows the chapter number, and 1-3 digits ...
2
votes
1answer
269 views

Passing variable from console to vbs to Excel macro

I'm trying to pass a variable down the following sets of code: From a Console application written in C#: static void Main(string[] args) { string myPath = @"R:\xxx\xxx\xxx\test.vbs"; ...
1
vote
4answers
3k views

Copy specific rows from excel based on a specific cell value

I have multiple worksheets in a excel book and each of these worksheet contains module wise data. I want to copy all the module data from each worksheet and paste it in a new excel book. How can this ...
0
votes
0answers
116 views

Get HTTPS SSL Certifiate expiration date

Is there any option to get the expiration date of ssl certificate? For example we have a website: https://superbank.comm So the connection is using certificate. You can see the expiration date in the ...
1
vote
2answers
877 views

VBA: Refer to specific line in text file

I have data such as the following in a text file: Member A Diameter 60 in Thickness 1 in Yield Stress 50 ksi Brace B Diameter 54 in Thickness 1 in ...
-1
votes
2answers
209 views

Is it possible to give the count of maximum columns used by a particular row(s)

I have a Excel matrix as below: PID# T1 T2 T3 T4 T5 T6 T7 11 1 1 14 1 1 1 21 1 1 41 1 ...
0
votes
1answer
234 views

Can the VBScript data transfer from array to row be faster?

I have a situation where my Dictionary object Keys are nothing but the row numbers and the Items are Each row details(i.e. Item is an 1D array). Now with the help of the below code I can push back ...
2
votes
0answers
557 views

How to rewrite VBA code into VBScript Code (tools/rules) [closed]

I am unable to find this information on the site using the search feature. And I have seen similar post On C# into Java and VBA into C# in this post I raise this question because I think it's at ...
0
votes
1answer
80 views

How to Copy the one Cell Format to the all the Cells beside that Cell?

Could you guide me by saying that How can i Copy the color and Font and Style of an Cell say in Row#1? But not the content of the Cell.I wrote the below code but it gets copied all the above with ...
3
votes
1answer
84 views

Can we assign the dictionary keys to a column with a single statement?

I have large dictionary keys,Which I want to insert to a column of an excel sheet.Which I have done by the below : Dim a, d, i 'Create some variables Set d = CreateObject("Scripting.Dictionary") ...
0
votes
2answers
272 views

I am trying to copy the sheet1 range data to sheet2 range but,nothing copied

I am trying to copy the sheet1 range data to sheet2 range but nothing gets copied. This is the full code which I was trying to achieve something but got stuck in the basic place. Please help Edit: I ...
0
votes
2answers
214 views

Sorting order check using VBScript

Suppose I have an array arr1 which contains date values as below : Arr1(50)=("9/3/2012 4:57:02 AM","22/3/2012 5:57:02 AM","9/5/2012 8:57:02 AM","9/3/2011 4:57:02 AM") Edit Dim CellCount Dim ...
1
vote
1answer
520 views

Pass Argument from VBS to VBA

I try to call a VBA subroutine from VBS with passing a string variable from VBS to VBA, but can't find the appropiate syntax: 'VBS: '------------------------ Option Explicit Set ArgObj = ...
0
votes
1answer
256 views

Need to generate excel using vb script?

I am trying to run test cases using driver script, which i had developed in vb script.(below is some part of code that launches QTP), and lanuched qtp script generate XLS reports. now issue is that ...
2
votes
1answer
229 views

Setting Task Manager to Run VB Script

I have having task manager call up a VB Script which opens an access document at a certain time everyday, and when this document opens it has VBA Code set up to export the file as a different file ...
0
votes
1answer
694 views

VBS apply Excel VBA macro to all files in current directory

I try to apply a VBA macro kept in personl.xls to all files in a given directory, but I hit an error in line 29.. I'm afraid I got things mixed up here: Option Explicit On Error Resume Next Dim ...
2
votes
0answers
279 views

Convert row with columns of data into column with multiple rows (RUN TIME ERROR)

I have a row of data as follows: header1 header2 header3 header4 header5 row key datavalue1 datavalue2 datavalue3 datavalue4 datavalue5.... CC ...
1
vote
2answers
397 views

Convert VBA to VBS

I have a little VBA script with some functions that I would like to convert to a single VBS file. Here is an example of what I got: Private Declare Function GetPrivateProfileString Lib "kernel32" ...
1
vote
2answers
535 views

Create comma separated file (csv) from access - scheduled daily from windows

I would like to create a vbs file to export an access table in a csv file (comma separated). I saw this coda from Remou. It works, but it create tab separated. Can anyone help me? Thank you! db = ...
0
votes
1answer
556 views

Calling vba function(with parameters) from vbscript and show the result

I have the following vba function ( in a module in Excel file) Public Function validate_fncname(strFncname As String) As Boolean . . . validate_fncname = True End Function and I wrote the ...
3
votes
1answer
527 views

Filling Excel userform in excel file automatically from vbscript

I have an Excel file that is full of macro and functions and userforms that help the user to fill the data correctly in this Excel file. I need to write a VBScript that accesses one of the userforms. ...
0
votes
1answer
392 views

Check/display the declared type of an entity (variable, expression…)

I am investigating types in VB especially in VBA. Generally, given an entity there are two types: Effective value type, I guess, is defined as value types in this part of the specification; Declared ...

1 2 3 4