All Questions
Tagged with ironpython silverlight
28 questions
1
vote
0
answers
146
views
Importing standard modules in ironpython script in silverlight application raises an error
Can someone explain, please, how to avoid errors of type: "ImportError: No module named nameOfModule"
in ironpython script, which is part of Silverlight web application?
The error pops, even when I ...
1
vote
1
answer
3k
views
Scrape data with Python from Silverlight application?
I'm curious is there a way from Python/IronPython to communicate with remote Silverlight application.What I'm looking for is a way to log into remote silverlight app and parse data, the way that Curl ...
3
votes
2
answers
740
views
How can I code an IronPython Silverlight application entirely in python, and what are the minimal necessary components in the HTML?
I've been banging my head against to wall for weeks to put together the minimal HTML for an IronPython Silverlight application that uses Gestalt, as pioneered by Jimmy Schementi here: http://www....
2
votes
1
answer
135
views
Interrupt interpreted user code in Silverlight
I'd like to run some arbitrary user code in a Silverlight application. Of course I want to embed a Turing-complete language (easy enough), but don't want to allow the user to lock up their browser if ...
10
votes
6
answers
2k
views
is WPF THE choice for windows apps? [closed]
I am developping in Ironpython with Visual Studio 2010 through PTVS.
I see that WPF is quite slow compared to the silverlight equivalent... at least to me.
My program does a lot of calculations but ...
2
votes
2
answers
482
views
NotImplementedException in Silverlight and IronPython
i'm hosting IronPython Scripts in one Silverlight Application and i want to run the script and get one System.Windows.Controls.TextBlock object.
so i use this ironPython code:
import clr
clr....
0
votes
1
answer
265
views
Unable to replicate examples of running ironpython in browser with silverlight
Basically i am following this tutorial: http://blog.jimmy.schementi.com/2010/03/pycon-2010-python-in-browser.html
According to it, this code should run fine:
<!DOCTYPE html PUBLIC "-//W3C//DTD ...
1
vote
2
answers
407
views
Ironpython and future statements
I am using IronPython as a math parser with the DLR in my Silverlight project: it works, but computes incorrect results in cases involving division, as it uses integer instead of floating point math ...
0
votes
2
answers
139
views
how to convert ���var f = userState as Fault” from c# to ironpython
I want to convert C# statement
var f = userState as Fault
to ironpython statement
0
votes
1
answer
976
views
How to access PostgreSQL with Silverlight
I create hangman game with silverlight ironpython and I use data in postgresql for random word but I don't know to access data in postgresql in silverlight.
how can or should it be done?
Thanks!!
2
votes
2
answers
4k
views
how to convert "Button b3 = (Button)sender" from c# to ironpython
I want to convert C# statement
Button b3 = (Button)sender;
to ironpython statement
3
votes
1
answer
134
views
Ironpython 2.6.1 on Silverlight 4
I am trying to integrate IronPython in my Silverlight application but am unable to do so. After downloading the binaries, every time I try to add the dlls as references in my VS2010 solution all I get ...
0
votes
1
answer
359
views
Failing to import external scripts using in IronPython DLR in the browser
I am trying to use IronPython in the browser and attempting to import external python scripts:
<script src="http://gestalt.ironpython.net/dlr-latest.js" type="text/javascript">
</script>
....
2
votes
3
answers
785
views
DLR Scripting within Silverlight 4 Application
I would like to add some scripting support to a Silverlight 4 application that I'm working on. I have the latest stable releases of both IronRuby and IronPython installed on my machine with Visual ...
1
vote
1
answer
374
views
Type conversion from IronPython.Modules.PythonDateTime to System.DateTime
I'm hosting an IronPython engine instance in my C# (Silverlight 4) app to execute some Python scripts on the fly. These scripts can return values of either IronPython.Modules.PythonDateTime+datetime, ...