| Thread | Last Post | Replies |
|
| How do I change what href refers to? | 31 Aug 2007 01:06 GMT | 5 |
For efficiency reasons, I'm downloading a web page, storing it in a file, and then parsing it later. In that web page is a tag like this: <a href="/a/b.html">Dude</a> which is clearly relative to the original URL, but since it's being loaded
|
| how to create a printable version of my form? | 30 Aug 2007 19:25 GMT | 1 |
helloo.. i have a form where user can fill up some data....it was like a time sheet form where users can input the time they work on a particular day.. I want to let them see a preview of the data they entered , and have the option to
|
| JavaScript mysterious error | 30 Aug 2007 15:18 GMT | 1 |
All my jscript functions are surrounded with try ... catch, and in the catch section I send an AJAX request to log the jscript error on the server. The exception is being logged like this:
|
| Script Save dialog | 27 Aug 2007 10:30 GMT | 5 |
Is it possible to programmatically process File download window? I want to "click" on Save button and then provide a file name and save it. Thanks
|
| Can not create Scripting.FileSystemObject | 25 Aug 2007 21:33 GMT | 1 |
There is a local html file in which it used the Scripting.FileSystemObject. when I use the IE to open the html file, it will popup a security warning messagebox, click yes to continue, the Scripting.FileSystemObject can be created,
|
| Version number and strong name for DLL created with JScript Compiler | 24 Aug 2007 17:03 GMT | 4 |
I'm using the jsc.exe JScript Compiler to compile a small piece of JScript that I want to use with one of my VB.NET DLLs. It generally works, but there are two irritations I'm having that I can't find a solution to.
|
| display all date in a specific number | 23 Aug 2007 14:06 GMT | 2 |
hello again!..can anybody help....how to create a function that will display all the date given a particular week number.............................im planning to use a select box that contains week numbers, then onclick, will display all days
|
| Launching a command from within a script fails - Why? | 22 Aug 2007 04:10 GMT | 2 |
I originally posted this on http://groups.google.com/group/microsoft.public.scripting.wsh. It was suggested that since I'm writing JScript, this group is more appropriate. So here goes: I'm failing in my attempt to run a command from within a script. All
|
| Delete a randomly named folder | 21 Aug 2007 22:16 GMT | 3 |
Is there any way to create a startup or logon script that will delete a folder that is randomly named? We have had four folders appear on our machines as a result of a SMS push that didn't work. Each folder is named with a series of letters and numbers. I'm thinking that we could ...
|
| Eventlistener Object | 21 Aug 2007 14:31 GMT | 1 |
Html like this. <table onClick="F()"> <TR> <TD> click </TD> </TR> <TR> <TD> click </TD> </TR>
|
| execCommand behavior in Firefox | 20 Aug 2007 23:26 GMT | 2 |
I am creating a rich text text editor and I've run into a bit of a snag. When calling execCommand from IE with forecolor as the command and an empty string as the third argument { execCommand("forecolor", false, "") }, it will remove the color formatting from the selection. Not ...
|
| Problem with javascript notation in M/S IE6 | 17 Aug 2007 03:42 GMT | 5 |
I would like to know what i do wrong in the following piece of code. I use the following input values for the function. <a href="javascript: createInput('Member','1','','%3Coption+value%3D%27%27+selected%3D%27selected%27%3E%26nbsp%3B%3C%2Foption%3E')">Add another member</a>
|
| hProcess.GetOwner() is slow. Alternative needed. | 15 Aug 2007 17:30 GMT | 4 |
I want to get the User Name that owns a process. If I relay on WMI, I can perform this with the following code: var wmi = GetObject("winmgmts:{impersonationLevel=impersonate}!\\\\.\\root\\cimv2");
|
| Typed URL | 15 Aug 2007 16:53 GMT | 12 |
Is there any way of grabbing the address that the user may type into browser's address bar. I have a page that, on the onunload event, has to run an ASP page in order to do some close-down housekeeping. I then want to forward the user to the URL that they may have typed into the ...
|
| Inheritance question | 14 Aug 2007 17:13 GMT | 4 |
Let's say I have a class with a property described like this: someProperty:{prop1: function (){code}, prop2: function (){code}} I am subclassing that class in my code. what if I want to add more elements to someProperty but still have prop1 and prop2 functioning?
|