Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 340
Search took 0.27 seconds.
Search: Posts Made By: enumerator
Forum: JavaScript programming 08-26-2005, 12:23 AM
Replies: 2
Views: 811
Posted By enumerator
Thanks for asking.

Thanks for asking.
Forum: Post a JavaScript 08-25-2005, 03:33 AM
Replies: 5
Views: 3,979
Posted By enumerator
That's cool, improve upon it if you like (if it...

That's cool, improve upon it if you like (if it works); as is, I'll be putting that little snippet to use... ;)
Forum: JavaScript programming 08-25-2005, 01:02 AM
Replies: 2
Views: 811
Posted By enumerator
Just replace "&H" with "0x" (declared in...

Just replace "&H" with "0x" (declared in ShlObj.h, btw)
Forum: Post a JavaScript 08-24-2005, 08:18 PM
Replies: 5
Views: 3,979
Posted By enumerator
Sure

compile (http://msdn.microsoft.com/library/en-us/jscript7/html/jsconCompilingJScriptCodeFromTheCommandLine.asp): %comspec% /k jsc /t:library "C:\ManagedMetaclass.js"
(outputs to System32 directory)...
Forum: Post a JavaScript 08-24-2005, 04:59 AM
Replies: 5
Views: 3,979
Posted By enumerator
I didn't mean that to be a "drive by"; it...

I didn't mean that to be a "drive by"; it actually took me a while to research an ultimately simple thing to implement, so... :)
Forum: Post a JavaScript 08-22-2005, 09:28 PM
Replies: 5
Views: 3,979
Posted By enumerator
.Net Metaclass

This allows JScript classic to get automation objects directly from managed code assemblies: woo hoo! :D


JScript.Net

import System.Reflection;

package Managed
{
class Metaclass
Forum: JavaScript programming 07-14-2005, 12:07 AM
Replies: 34
Views: 3,633
Posted By enumerator
Twilight Zone...

Twilight Zone...
Forum: HTML & CSS 07-13-2005, 07:54 PM
Replies: 5
Views: 610
Posted By enumerator
its all relative

its all relative
Forum: JavaScript programming 07-13-2005, 03:53 PM
Replies: 7
Views: 2,814
Posted By enumerator
My comments weren't meant to be a criticizm of...

My comments weren't meant to be a criticizm of anyone's code, by the way, just a generalization... ;)
Forum: HTML & CSS 07-13-2005, 03:33 PM
Replies: 5
Views: 1,329
Posted By enumerator
So... was that it, or did ya' not wanna' to know?

So... was that it, or did ya' not wanna' to know?
Forum: JavaScript programming 07-13-2005, 02:17 PM
Replies: 7
Views: 2,814
Posted By enumerator
It has to do with proper usage. Either they suck...

It has to do with proper usage. Either they suck all together, or someone is coding them improperly, so if diagnosing the real problem requires an unacceptable amount of work, then why bother?
Forum: JavaScript programming 07-13-2005, 02:08 PM
Replies: 13
Views: 1,364
Posted By enumerator
WYSIWYG editors are nothing more than a set of...

WYSIWYG editors are nothing more than a set of objects, properties, methods, and events. So it's down to which ones exist in a given browser's object model. (IE seems to have the richest editing...
Forum: JavaScript programming 07-13-2005, 01:26 PM
Replies: 7
Views: 2,814
Posted By enumerator
Probably not without a lot of careful engineering...

Probably not without a lot of careful engineering (for lack of a better term). Isolating a problem during construction is most always less involved than diagnosing a set of interdependencies. (I...
Forum: JavaScript programming 07-13-2005, 01:11 PM
Replies: 6
Views: 672
Posted By enumerator
IE's insertAdjacentHTML method happens to perform...

IE's insertAdjacentHTML method happens to perform much better than setting innerHTML, by the way...
Forum: Geek News and Humour 07-13-2005, 01:07 PM
Replies: 45
Views: 4,892
Posted By enumerator
Question On the topic of searching, CF's persistence...

On the topic of searching, CF's persistence mechanism is questionable: anyone else noticed that archived threads seem to vanish? :confused:
Forum: JavaScript programming 07-13-2005, 12:45 PM
Replies: 34
Views: 3,633
Posted By enumerator
Likewise, if you meerely want to transform source...

Likewise, if you meerely want to transform source code, a regular expression could work directly on a file string (via a file reader), without requiring a DOM. Whether this approach is applicable...
Forum: JavaScript programming 07-13-2005, 11:51 AM
Replies: 34
Views: 3,633
Posted By enumerator
JS can automate database objects (such as ADO),...

JS can automate database objects (such as ADO), under special circumstances.
Forum: JavaScript programming 07-13-2005, 11:21 AM
Replies: 34
Views: 3,633
Posted By enumerator
The document needs to be rebuilt as valid HTML...

The document needs to be rebuilt as valid HTML markup (if that's the goal). getElementsByTagName() doesn't apply, because those are not HTML elements. They can be declared as custom tags in IE, and...
Forum: JavaScript programming 07-13-2005, 11:14 AM
Replies: 13
Views: 1,389
Posted By enumerator
I don't think most people would unwittingly jump...

I don't think most people would unwittingly jump through security hoops. The same goes for FF; safeguards are in place (perhaps not quite as many). It's impossible for all practical purposes, but...
Forum: JavaScript programming 07-13-2005, 10:32 AM
Replies: 13
Views: 1,389
Posted By enumerator
That's what it's for: trusted sites... "I trust...

That's what it's for: trusted sites... "I trust you", or "I trust myself to allow this, because it was my idea".

Anyway, this can also be done with IWshShell.SendKeys(), if the operation is...
Forum: JavaScript programming 07-13-2005, 10:05 AM
Replies: 34
Views: 3,633
Posted By enumerator
You guys are discussing this as if it were a...

You guys are discussing this as if it were a legitimate technical issue; it isn't: forget about Firefox. This is a Microsoft office document. Just use IE to transform it, and be done already...
Forum: Geek News and Humour 07-13-2005, 09:51 AM
Replies: 45
Views: 4,892
Posted By enumerator
Yeah, but most are totally redundant posts, like...

Yeah, but most are totally redundant posts, like "listen here, I don't wanna read the manual... help me plz!" :rolleyes:
Forum: JavaScript programming 07-13-2005, 09:19 AM
Replies: 13
Views: 1,389
Posted By enumerator
There is a Microsoft ActiveX control (as of XP,...

There is a Microsoft ActiveX control (as of XP, at least) which mimics the input file element (and permits setting the value). It is undocumented, and not marked safe for scripting, however, so it...
Forum: JavaScript programming 07-13-2005, 09:08 AM
Replies: 6
Views: 672
Posted By enumerator
Arrow How to Build Tables Dynamically...

How to Build Tables Dynamically (http://msdn.microsoft.com/workshop/author/tables/buildtables.asp)
Forum: Graphics and Multimedia discussions 07-13-2005, 12:53 AM
Replies: 2
Views: 3,159
Posted By enumerator
No, desktop wallpaper cannot be set directly from...

No, desktop wallpaper cannot be set directly from a script.
Showing results 1 to 25 of 340

 
Forum Jump

All times are GMT +1. The time now is 03:25 PM.