| ListView...ItemCheck event...make some items hidden..but how? (2 replies) |
| microsoft.public.dotnet.languages.jscript |
| HI! was ich machen will... wenn ein user checked eine item in der ListView sollten alle andren item nicht checktbar sein oder noch besser: alle andren item nicht checktbar sein und hidden(nach dem der user nochmal auf diese checked item klickt sollen wieder alle items sichtbar sein) (das erste beispiel würde mir mir aber auch schon reichen) aber wie kann ich diesen event am besten schreiben? hat e... |
|
| equivalent of "using" (6 replies) |
| microsoft.public.dotnet.languages.jscript |
| Hello All, I am new to .NET, so this is probably a newby question. What is the equivalent of the C# "using" statement in JScript.NET? Do i really have to explicitly name the total package when i use something? button1.Location new System.Drawing.Point(10, 10); button1.Location new Point(10, 10); Question about the common language runtime debugger (dbgclr.exe), doesn't it support JScript syntax? I ... |
|
| Using JScript for application scripting (3 replies) |
| microsoft.public.dotnet.languages.jscript |
| Most of the posts I see here are for ASP.NET, but I'm wondering if anyone uses JScript for scripting applications. Most of my project is in C#, and I would like to add some scripting functionality, similar to how VBA scripts can be written for Windows apps that use COM. I'd rather not mess with COM, though; I'm looking for something I can do in .NET. So I thought JScript might work. I have heard i... |
|
| RegExp.$1 not avail on ASP.net (6 replies) |
| microsoft.public.dotnet.languages.jscript |
| Can someone please confirm that the properites of the gloabl object Regexp are not available with JScript when running under asp.net. At least thats what it says in the Framework.net SDK Docs Kirk |
|
| Serious memory leak in IVsaEngine.Compile() (2 replies) |
| microsoft.public.dotnet.languages.jscript |
| How to prevent memory leak after Compile()? I can't use .NET technology in my projects because of this problem. Example (compile it with jsc.exe and run): import System; import System.Console; import Microsoft.Vsa import Microsoft.JScript import Microsoft.JScript.Vsa class TSimpleHost extends BaseVsaSite { function OnCompilerError (err :IVsaError) :boolean { return true; } function GetGlobalInstan... |
|
| Parameter count mismatch (2 replies) |
| microsoft.public.dotnet.languages.jscript |
| Hi, Inside a JScript class, if I try to eval() a function call to a variable argument list function ( ... params : Object[] ), I get a "Parameter count mismatch" error. If I don't use eval(), this works OK. Is this a bug? Any workaround? Thanks, Peter Myklebust |
|
| Windows forms control within IE (11 replies) |
| microsoft.public.dotnet.languages.jscript |
| Hi, I'm trying to use my windows forms control within IE. I can load the control and it works, but when my control send an event, I have the next exception: "System.Security.Permissions.SecurityPermision" What I must to do with the Runtime Security Policy? I try the Multi File Upload example, but It doesn't work for my. Is there a simple way to do that? Thank you, Esteban |
|
| sending complex type params to a web service with jscript (2 replies) |
| microsoft.public.dotnet.languages.jscript |
| Hi, I'm trying to call a web service using Jscript. The wsdl file define one complex type parameter: types schema targetNamespace "http://www.themindelectric.com/package/emb laze/" xmlns "http://www.w3.org/2001/XMLSchema" complexType name "DirNotificationData" sequence element name "sid" type "int"/ element name "entryType" nillable "true" type "ns11:DIR ENTRY TYPE"/ element name "eventType" nilla... |
|