Tagged Questions

JScript is a scripting language based on the ECMAScript standard, created by Microsoft and implemented in a range of environments. You would expect this tag to accompany questions regarding these environments, such as Windows Script Host (WSH), Active Server Pages (ASP) and HTML Applications (HTA)

learn more… | top users | synonyms (1)

3
votes
1answer
127 views

How to implement IObjectSafety programmatically in JScript.NET

tldr; How to mark a JScript.NET dll as safe for scripting? Consider this JScript.NET library (helloworld1.js): package helloworld1{ class test1 { public function test1run(){ return 'This ...
3
votes
2answers
407 views

Is asynchronous call of JavaScript function possible in Windows Sscript Host?

Imagine you have a simple function in Windows Script Host (JScript) environment: function say(text) { WScript.Sleep(5000); WScript.Echo(text); } Is it possible to call say() asynchronously? ...
3
votes
2answers
622 views

How to convert an image file to BMP programmatically using native Windows XP capabilities?

Is it possible to convert an image file to BMP format using WindowsXP's native libraries and scripting capabilities? I'm talking about WSH, JScript, VBS, etc... C++ is also good for what I need if it ...
3
votes
2answers
732 views

Write binary data using javascript on the server

I'm trying to output a PDF using server side javascript (ASP). The current method I'm using is: xfile=Server.MapPath(lib.fso.GetTempName()) xf=lib.fopen(xfile,"wb"); lib.fwrite(xf,this.buffer); ...
2
votes
1answer
108 views

HTA/HTML/VBScript/JScript Issue

I am writing a small .HTA app to capture users' job titles, telephone numbers and addresses and upload them into AD. I am using a little piece of VB to pull the info from AD and populate some text ...
2
votes
1answer
43 views

Re-evaluatiing a condition in jscript

So I have a little sensor in my 'scene' and when it gets blocked I want my program to wait 4 seconds and if the sensor is still blocked I want it to alert the user. The script works fine if the sensor ...
2
votes
1answer
94 views

Get line number of an error in JScript run in Windows Script Host

Say, I have the following code that I run as a .JS file using the Windows Script Host: try { ProduceAnError(); } catch(e) { //How to get an error line here? } Is there any way to know the ...
2
votes
2answers
157 views

in JavaScript, when finished with an object created via new ActiveXObject, do I need to set it to null?

In a Javascript program that runs within WSH and creates objects, let's say Scripting.FileSystemObject or any arbitrary COM object, do I need to set the variable to null when I'm finished with it? Eg, ...
2
votes
1answer
501 views

WSH / JScript to start and stop services based on time?

Just looking to see if my assessment is correct on the easiest way to do this. Background: we have a software suite which we're running via services. The services need to be shut down between 10pm ...
2
votes
4answers
553 views

How to get the main window handle of a process using JScript?

Is there any method in JScript to get the handle of the main window of a process by providing the process name? The Process.MainWindowHandle property works only in JScript .NET. Is anything similar ...
1
vote
2answers
46 views

Are there performance, scalability, or reliability disadvantages to Classic ASP/JScript?

Writing Classic ASP code in JScript has a lot going for it: more humane syntax, a sane object system, programmer familiarity, and a general lack of annoyances. You can even mix legacy VBScript and new ...
1
vote
2answers
87 views

How to make an input from command line in JScript?

How can I read input from the command line in JScript, similar to Pascal's readln?
1
vote
2answers
113 views

JSHINT error: Expected 'combine' to have an indentation at 9 instead at 13

I like the idea behind JSLINT but sometimes it is a little too strict, in my opinion needlessly so. Recently I found JSHINT. It's a little more flexible, allows more options to be turned on or off. ...
1
vote
2answers
91 views

From jscript (or vbscript) how to dynamically invoke a method from a COM object?

JScript allows funky features like .apply(), whereby you can invoke a method by name, passing an array of arguments to invoke the method with. However this applies to JScript (javascript) objects, ...
1
vote
2answers
118 views

How to read a spreadsheet with WSH?

I need to read some cell values from a .xls file using JScript under WSH. Is there any COM object or anything that I can use to do that?
1
vote
1answer
610 views

Using server-side javascript in classic asp: what's wrong with “this”?

Trying to get started with using javascript in classic ASP. Seem to be some "gotchas" with this though: can anyone with some experience in this tell me what's up with the "Blah2" code ? Seems like ...
1
vote
2answers
211 views

How can I write a simple JScript input/output program?

I'm planning on using Javascript to enter the BIO tomorrow. However, I can't rely on the examiner having a browser with a decent javascript engine, so I was hoping to use Microsoft's JScript instead. ...
1
vote
1answer
818 views

how to read (Default) value in Registry Key in VBScript/JScript

I can read the value of the key name "UpdateCheck" under HKEY_LOCAL_MACHINE\SOFTWARE\CCleaner\ with Shell.RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\CCleaner\UpdateCheck") But I cannot read that of the ...
1
vote
3answers
357 views

Reading a Windows 'binary' float into a ASP jscript variable

I need to read files produced by a legacy Windows app that stores real numbers (the 8-byte "double" type) in binary - i.e. as a packed array of 8 bytes. I can read the 8 byte group OK but how can I ...
1
vote
1answer
252 views

Dynamic Value in Regexp.replace using javascript

I do not know where my head is today, can somebody please explain to me - why I can get the hturl value by the request form and do the replace in the htstring? (I do this and it works - but only ...
1
vote
2answers
420 views

ASP Classic - Include VBScript page in a JavaScript page?

Is there a way to include a VBScript page into an ASP page written using Javascript? There is an ASP page written in Javascript, but our sidebar menu is written in VBScript. When I include the ...
1
vote
2answers
791 views

Profiling a classic ASP application using AQTime

We have developed a large number of websites using ASP (jscript flavour), talking to the underlying intelligence layer (written in Delphi) through COM. These websites are running on IIS (5 and 6). ...
0
votes
0answers
10 views

Ignore JScript exceptions in VS2010 script debugger

is there a way how to ignore VS2010 Java Script exception dialog which is shown when attached to JSCript running in IE. We have ExtJS project and teher's some exceptions occuring in ExtJS we know ...
0
votes
1answer
21 views

jscript runtime error

I have a visual studio 2010 project. It runs from my notebook fine but from my desktop it won't run. The error is Microsoft JScript runtime error: '$' is undefined. Here is the code function ...
0
votes
0answers
14 views

Workaround for VS 2010 JScript intellisense not allowing references outside project?

I am using the // <reference path="..." /> xml tag to bring in other script files for intellisense. I have a separate project for NQUnit tests and would like intellisense there for my WebApp's ...
0
votes
0answers
14 views

Get thrown object in JScript hosted via WSH/ActiveScript

I'm hosting JScript in my application and it works fine. My code is using the ActiveScript interfaces just like in the example posted as answer here: parse and execute JS by C# Now whenever an ...
0
votes
3answers
88 views

how to execute vbscript from website

i have a VBScript file. When its on the computer it works fine. I want to put it on a php site for it to be executed by a button click. but i have not been successful. it actually get computer info. ...
0
votes
1answer
40 views

How to create an ActiveX that can be used in a Javascript engine

Do you know any tutorial for creating MFC ActiveX objects that can be used in JScript or VBScript (Windows Script Based Host)? I mean an OCX that can be used as: var x= new ActiveXObject("name"); ...
0
votes
0answers
25 views

Custom tweet filled out by form data

I have honestly have looked every where to try to find some code examples or how people have done this. I am looking to use a form to fill in the information for a tweet. So the person would fill ...
0
votes
0answers
54 views

Microsoft JScript runtime error: 'GetToolbarId' is undefined

when i run my application website , I get below error: Microsoft JScript runtime error: 'GetToolbarId' is undefined in htmlcomponent.htm below lines are highlight //aler` var DEBUG = false; ...
0
votes
2answers
160 views

Use Scripting.FileSystemObject to create file in path that doesn't already exist

I'm trying to create a text file using the Scripting.FileSystemObject in JScript. I can't seem to figure out how to create the file if a directory in the file doesn't already exist. For example: var ...
0
votes
1answer
81 views

write file using WScript.shell

How can I write text files using WScript I'm really new on this that's why I cannot give some details. I want to write a log file that can be stored in c://users/user/appdata/local my sample code, ...
0
votes
1answer
36 views

Parse script output from shell wanted in JScript

I want to execute a command and parse the output from the shell. I am using JScript inside TestComplete. I already found out that I can run commands using WScript.shell. But I do not know how to parse ...
0
votes
1answer
28 views

Detect web service accessibility using JScript

Is there a common way to detect whether a web service is accessibly, through javascript? For example, if the web server is down or ISS on it is stopped, I can stop the program.
0
votes
0answers
25 views

How to find IE TextRange start and end

I'm creating a rich editor control but as always I have to provide the backward compatibility with -IE9. I've found many solutions on the net but almost all of them gave the start/end offset based on ...
0
votes
3answers
84 views

Is there a local runtime environment for running Javascript? (like Windows Scripting Host for JScript)

I wonder if there is a 'local runtime environment' for hosting Javascript code, that's not browser based, for running small local apps? Something like WSH (Windows Scripting Host) for JavaScript (not ...
0
votes
2answers
70 views

query a process by PID windows javascript

I have a few processes on windows and have there pid. It is RUNNING on the machine. How can I query using js if the a process with the pid is up ? Can I ensure in js that this the process (and ...
0
votes
2answers
112 views

How to enumerate my environmental variables in JScript?

How do I enumerate my process's environmental variables in JScript, and, say, output them to the screen?
0
votes
3answers
92 views

String join in JScript?

How do I join a bunch of strings with a separator in JScript? (I'm looking for a solution with linear running time.)
0
votes
1answer
114 views

How to evaluate Xpath when DOCTYPE present in XML declaration

I have problem with evaluation XPath expression in Windows Script Host using JScript when is present on top of document. When I remove DOCTYPE parsing doesnt break. Here is sample of code that I am ...
0
votes
1answer
84 views

StdRegProv .CheckAccess method in JScript - error: Object expected

This script is getting Microsoft JScript runtime error: Object expected on If (out_params.bGranted) line. It seems like this is related to a syntax error, but I can't find it. This code, in its ...
0
votes
0answers
100 views

microsoft speech api with wsh jscript

Using the text to speech api was very easy but i cannot find any good examples for using the speech recognition api (Sapi.SpSharedRecognizer) with wsh. Could someone please give me a short example?
0
votes
2answers
117 views

Get date in ASP

I think I have a stupid question again :-) <%@language="JScript"%> <% htmlStr+="<tr><td><br/>Order date: "</td><tr>"; %> How can I get and fill the actual ...
0
votes
1answer
62 views

JScript version availability for WSH installations

I'm not sure if JScript for WSH is available in every windows installation. Which version of JScript is available for WSH, and in which windows version? Please provide the link to an authoritative ...
0
votes
3answers
171 views

Read keypress using JScript

I am trying to do a simple JScript using the Windows Script Host (outside any browser, was my intent) to read users keypresses, but can't find a way to do what amounts to: function tap(e) { ...
0
votes
2answers
396 views

Read Excell data (cell)

I'm trying and trying and I just can't. Please I need to read/display a specific cell in my html just like another text. I'm using this: function readData() { var excel=new ...
0
votes
0answers
547 views

Windows Script Hosting (WSH) 5.8 issue “Automation server can't create object” on new ActiveXObject - not an issue with WSH 5.7

I created a simple DLL using ATL Project Wizard with one simple class added (of Simple ATL Object type) under MS Visual Studio 2008 (C++). The solution was built fine and dll registration went ...
0
votes
2answers
347 views

WSH: How to use extended JScript Date Object in VBS?

I have used Date.prototype in my WSH-JScripts to do some date calculations. I would like to include these functions in WSH-VBS as well. Basically, mixing JS and VBS code and including JS files in a ...
0
votes
2answers
509 views

Windows Script Host (jscript): how do i download a binary file?

i'm trying to automate a file download with Windows Script Host (JScript). i see ADODB.Stream has an Open method whose documentation makes it seem like it should be possible to open a HTTP URL and ...
0
votes
1answer
104 views

Finding out if a URL param exists in JS-ASP

I am editing other people's code, written in server-side JS for ASP, and have run into a problem that probably has a very simple solution. I'm outputting some code from a URL param like this: ...

1 2