2
votes
2answers
63 views

clear Winforms GroupBox without destroying content

I want to clear the content of a GroupBox to fill it with new options, but I cant use the Dispose() function since I don't want to destroy the objects in it (Textboxes from another class). Is there a ...
0
votes
1answer
36 views

How to interface Visual Studios 2010 with Python

I am wanting to make an interface with some simple buttons and text fields. My problem is that I don't know how to make an Interface with Python. I want to have the ease of drag and drop like that of ...
1
vote
1answer
170 views

How to draw lines in IronPython with Winforms?

I've started working with IronPython in #Develop, and i love the integration with IronPython and Windows Forms, it lets you create the GUI like is were Visual Basic or C# The question i have is ...
0
votes
1answer
257 views

ActiveX control in ironpython windows form

I'm having difficulties with a set of activeX controls used for automation of lab instruments. I've got them all to work in VB, in forms applications - as they won't work in console applications. My ...
0
votes
1answer
177 views

Opening a winform from an IronPython shell without blocking the shell or the form

I'm starting a winform from an IronPython shell. My form is then calling a script which runs for some hours and writes output to the shell. While the script is running, the GUI is blocked (I cannot ...
1
vote
1answer
123 views

IronPython & Windows.Forms' Control type

I cannot get this working... for CBControl in self._tabPage2.Controls: if CBControl.GetType == System.Windows.Forms.CheckBox().GetType: .... It is not working... I need to ...
1
vote
1answer
565 views

How can I pass command-line arguments in IronPython?

I am working with IronPython and have got it working somehow. Though, there seems to be no resource on passing command-line arguments to Iron Python. How can I pass command-line arguments to a python ...
1
vote
0answers
108 views

Error on databinding inherited control in ironpython

I have a class in python which inherits TextBox #all imports class IPTextBox(TextBox): pass later I'm trying to use databinding on an object of this class foo = Foo() # foo has property Text ...
2
votes
3answers
303 views

Pattern for periodically updating screen data

I am new to the world of GUI programming and I am writing a little GUI app using IronPython and WinForms. It reads values from an external device and displays them in a ListView component (name, ...
1
vote
0answers
196 views

How do you add an OnLoad event to an IronPython WinForm?

I'm having a problem getting the OnLoad event called from an IronPython script that uses WinForms, I've reduced the problem to the smallest possible reproduction case: from clr import AddReference, ...
3
votes
3answers
935 views

Controlling a C# Winforms GUI with IronPython

So I made a Winforms GUI in Visual Studio using C#, but for the project I am working on I want the majority of the code to be written in Python. I am hoping to have the "engine" written in python (for ...
0
votes
1answer
194 views

breakpoints in SharpDevelop with IronPython

is it possible somehow to get the breakpoints to work in SharpDevelop with IronPython/Winforms? They work alright with other languages but with IronPython they just don't stop
3
votes
2answers
1k views

How can I insert an ironpython console into my form?

I want to make a winform by C#, and add a ironpython console window in it, like a multiline textbox. So I can write python program into it to do some operations in my Winform software. How can I do ...
2
votes
1answer
367 views

Adding a DataGridView in IronPython Studio Winforms gets a “'DataGridView' object has no attribute 'BeginInit'”

By just adding a datagridview in IronPython Studio it triggers a "DataGridView' object has no attribute 'BeginInit'". Is there a fix for this? The errors are gone if the lines ...
1
vote
1answer
510 views

finding control in winforms panel

I need to find a child control in a winforms panel. I was wondering if there is a method similar to Panel.FindControl() of the asp.net webforms panel in the .net winforms version
1
vote
1answer
103 views

Why does the interpreted order seem different from what I expect?

I have a problem that I have not faced before: It seems that the order of interpretation in my program is somehow different from what I expect. I have written a small Twitter client. It takes a few ...
1
vote
1answer
116 views

cast existing Button to IPy subclass

I have a test harness that runs in an embedded IronPython engine in our C# app. Some of the tests are UI automation that simulate button clicks, etc. # assume code to find an existing button, 'b' ...
2
votes
2answers
466 views

IronPython + Winforms in a non blocking manner

I have been doing Michael Foord's IronPython&Winforms tutorials in the interactive console. Is it possible to remain in the console after the issueing Application.Run(form) so, I can put ...
0
votes
1answer
539 views

How to store and resend keyboard input for UI automation?

I have a winforms application where I need to capture keyboard input and store it in a script. The script can then be replayed with IronPython to automate the application. My current take on this is ...
0
votes
2answers
596 views

Different styles for Windows forms in Ironpython

I want to change the look of my Ironpython windows forms, Is it possible to change the style of the form and for example make it more like a Mac? thank you
0
votes
5answers
560 views

How to create IDLE -like functionality to WinForms application

I'd like to add "IDLE-like functionality" to C# WinForms application, but I don't quite have an idea how to do that and couldn't find anything useful with Google. So basically I want interactive ...