Tagged Questions
1
vote
2answers
322 views
Calling PythonFunction's from a VB application hosting Iron Python
I'm a C++ programming who was tapped to write a small application in Visual Basic. The application hosts an IronPython runtime and I am attempting to define some function in python and then call them ...
8
votes
1answer
3k views
ScintillaNET vs AvalonEdit for providing scripting interface for a WPF Application
I am working on a project which includes implementing a scripting interface for my WPF (.Net4) windows Application. I am curious if anyone can suggest a preferred editor, AvalonEdit vs ScintillaNET. ...
2
votes
1answer
151 views
Instantiating IronPython Types in C# which implement a .NET interface
I am writing a simple plugin system for my .NET app written in C#. I am trying to use IronPython to accomplish this.
In my .NET code i Have created an interface IPlugin, which all Plugins must ...
4
votes
2answers
216 views
How do I set __name__ to '__main__' when using IronPython hosted?
When using IronPython hosted the __name__ special variable returns as <module> instead of __main__. I found some discussion here: ...
7
votes
2answers
740 views
IronPython - Editor for end-user
We're currently investigating how we can embed IronPython (scripting) into our C# application.
We see the benefits it will provide to our end users, giving them the ability to hook into our ...
2
votes
3answers
649 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 ...
0
votes
2answers
79 views
Is Ironpython suitable for value calculation?
I want to allow the users to define a formula based on two variables. Say I have a Quantity and Value and I want to allow the users of my app to write something like
Quantity*20+Value*0,005
in a ...
4
votes
1answer
760 views
Reasons for using a DLR-based language rather than C# for scripting tasks?
I'm considering embedding a scripting language into one of my software projects and have identified two options: compiling C# at run-time via CodeDOM and embedding a DLR-based scripting language. ...
3
votes
4answers
5k views
How to use Microsoft.Scripting.Hosting?
To embed some IronPython Code into C# I want to use the ScriptEngine
using IronPython.Hosting;
using Microsoft.Scripting.Hosting;
I found the reference for IronPython, but where is the necessary ...
1
vote
7answers
4k views
Powershell window disappears before I can read the error message
When I call a Powershell script, how can I keep the called script from closing its command window. I'm getting an error and I'm sure I can fix it if I could just read the error.
I have a Powershell ...
9
votes
8answers
3k views
Extending C# .NET application - build a custom scripting language or not?
I need to build a scripting interface for my C# program that does system level testing of embedded firmware.
My application contains libraries to fully interact with the devices. There are separate ...
2
votes
2answers
902 views
IronPython, Click Once, .NET 2.0 Error - thoughts?
I'm am trying to roll out a test application to test the feasibility of righting a Click Once Smart Client app that also uses a rules engine customizable by embedding IronPython.
So far all users but ...
0
votes
7answers
390 views
Advice for Windows system scripting+programming
I just got a project where I have to do the following on a Windows OS:
detect how many drives (C: D: E:
..etc) are connected to current
system
what the system labels are
for each volume
how much ...
4
votes
1answer
2k views
How to pass a lambda expression to a C# constructor from an IronPython script?
I'm integrating an IronPython scritping engine into my C# raytracer which, so far, has been a breeze even though I'm completely new to Python. There is one particular thing, though, that I need help ...
7
votes
5answers
310 views
What is the best technology to use for automating a task using .net libraries?
Imagine that you need to develop and schedule an application/script to do the following:-
Reference one or more .net assemblies
Query the API, get some objects
for each object call another method in ...
1
vote
3answers
1k views
How to embed IronPython in a C# application for game scripting?
I'm currently porting a my tiny space game project from Delphi 2007 Win32 to C#(and XNA). In Delphi, i used RemObjects Open Source scripting solution "PascalScript".
Now that i continue developing ...
25
votes
6answers
41k views
Find and Replace Inside a Text File from a Bash Command
What's the simplest way to do a find and replace for a given input string, say abc, and replace with another string, say XYZ in file /tmp/file.txt?
I am writting an app and using IronPython to ...
2
votes
1answer
73 views
Intercepting Method Access on the Host Program of IronPython
Greetings,
Most of the information I see around concerning the construction of Proxies for objects assume that there exists a Type somewhere which defines the members to be proxied. My problem is: I ...