Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
606 views

JScriptTypeInfo definition

I have the following code in VBScript: Dim control set control = CreateObject("MSScriptControl.ScriptControl") control.language = "jscript" control.addCode("function test() { return {property: ...
2
votes
1answer
1k views

Excel VBA: Parsed JSON Object Loop

Per example below...Looping through an object from a parsed JSON string returns an error "Object doesn't support this property or method". Could anyone advise how to make this work? Much appreciated ...
2
votes
3answers
368 views

Evaluating dynamic string formulas in .NET?

I'm working on a project where I need to evaluate some formulas in VB.NET. I've been using the MS Script Control to evaluate some of the simple logical/mathematical formulas. However, I'm now faced ...
2
votes
3answers
415 views

Ensuring unique ID attribute for elements within ScriptControl

I'm creating a control based on ScriptControl, and I'm overriding the Render method like this: protected override void Render(HtmlTextWriter writer) { RenderBeginTag(writer); ...
1
vote
1answer
110 views

Is it possible to sleep in JScript executed by C# MSScriptControl.ScriptControlClass?

I'd like to be able to sleep in a JScript executed by C# MSScriptControl.ScriptControlClass. I thought that maybe the WScript.Sleep() function might be available, but I'm getting a "WScript is ...
1
vote
1answer
373 views

ScriptControl inside UpdatePanel

I have a ScriptControl (requires ScriptManager) with JavaScript to handle client-side interactions and ICallbackEventHandler to communicate back and forth. Everything works perfectly with one or ...
1
vote
2answers
2k views

Creating an AJAX Script Control

Call me a 'n00b', but I am new to creating Script Controls. I want to create a simple control with 3 text boxes. I have a .cs file that looks like this: public class SmokingCalc : ScriptControl ...
1
vote
1answer
443 views

ASP.Net Script Controls, Returning False from OnClick, and FireFox

Short Explanation: I have a script control that has the click event being handled in the script file. The Click handler pops up a confirm prompt and returns the prompt's value. Problem: IE sees ...
0
votes
1answer
73 views

Multiple ScriptControl instances sharing variable

I have a ScriptControl that uses an image as an embedded resource and GetWebResourceUrl to generate the WebResource.axd URL. I am currently using GetScriptDescriptors() to send the URL to the ...
0
votes
1answer
1k views

problem with get data from MSScriptControl

I have problem with get data from vbscript in C# console application. I just write below code: int[] i = new int[3] { 1, 2, 3 }; string msg = ""; object[] myParam = { msg , ...
0
votes
1answer
153 views

Script control client object loss of scope

I've got a script control that has a control embedded within it that exposes a server side property for a client side click event. For example, embeddedControl.OnClientAppointmentClick. So my ...
0
votes
1answer
2k views

Javascript/Ajax - Manually remove event handler from a Sys.EventHandlerList()

I have two scriptcontrols, one holds the other, and I have successfully been able to handle events from the child on the parent using: initialize: function() { this._autoComplete = ...
0
votes
3answers
1k views

ASP.Net ScriptControl - Call one method from another

Say I have two script controls and one control has the other as a child control: ParentControl : ScriptControl { ChildControl childControl; } The script for the Child Control: ChildControl = ...
0
votes
1answer
945 views

ASP.Net ScriptControl - Add the Javascript get_events method : Possible?

So I've run into a snag, apparently the get_events method is only "included" with the ExtenderControl class. What I need to do: Be able to call the get_events Javascript method using a ScriptControl ...
0
votes
1answer
457 views

How do I Get the Autcomplete Control script side with a Script control (ASP.Net)

Problem How do I capture and assign the events on an Ajax Toolkit autoomplete control using a script control on the script file? Explanation I basically created a script control to combine a textbox ...