| JScript.NET and Expando (3 replies) |
| microsoft.public.dotnet.languages.jscript |
| Ok, I got a couple of questions about JScript.NET and Its abilities with expando objects. How does the compiler handle Microsoft.Jscript.JSObject type objects, and allow them to use the dot notation? Can I do this? PLEASE? ie: expando class foo { } var o new Object(); var oh : foo; oh new foo(); o.ABC 100; oh["ABC"] 100; System.Console.WriteLine( o.ABC ); System.Console.WriteLine( oh["ABC"] ); I w... |
|
| Resource file (7 replies) |
| microsoft.public.dotnet.languages.jscript |
| Hi Everyone, Does any one know how to embed a managed resource into a exe by using the VSA engine? thanks |
|
| How to grab commad line arguments? (2 replies) |
| microsoft.public.dotnet.languages.jscript |
| Can someone please translate this to JScript.NET for me? Thanks! using System; namespace hello.world{ class main { static void Main(string[] args){ Console.WriteLine("hello world from C#"); for(int ii 0; ii args.Length; ii ) Console.WriteLine(" args {0}", args[ii]); return; } } } |
|
| how to get the time of a client? (8 replies) |
| microsoft.public.dotnet.languages.jscript |
| Hello, how can i get the systemtime of a client with a programm that will be executet on a server ? mfg Jochen Eberle |
|
| InputBox? (4 replies) |
| microsoft.public.dotnet.languages.jscript |
| Is there a .NET equivalent of the old VB Input (or the javascript window.prompt()) function? I just want a quick and dirty popup that let's the user input a string. |
|
| Bitwise combination of FontStyle attributes (5 replies) |
| microsoft.public.dotnet.languages.jscript |
| I've read that I can perform a bitwise OR to get a combination of FontStyle attributes, but FontStyle.Bold || FontStyle.Italic generates an error. Does anyone know how this is done? |
|
| /bin from wsc (4 replies) |
| microsoft.public.dotnet.languages.jscript |
| In my previous (before .net) life, I had jcript wsc files which I referred to and used for common functions. Heretofore, I have been continuing to use them (with asp pages), however the time has come to migrate these to .net. It appears that the logical place to put them is as compiled objects in the bin folder. Is this correct? (I can include code behind with the pages, however, this appears that... |
|