Questions tagged [ironpython-studio]

IronPython Studio is a free full IDE (Integrated Development Environment) for the Python programming language.

IronPython Studio is a free full IDE (Integrated Development Environment) for the Python programming language. It is based on the existing IronPython example that is included in the VS SDK. IronPython Studio is based on the Visual Studio 2008 Shell runtime (royalty free) and can be installed without requiring any version of Visual Studio. It is available for Visual Studio 2008 Shell Isolated and Integrated modes.

Reference: http://ironpythonstudio.codeplex.com/

29 questions
1
vote
2 answers

How can I fix missing IronPython project templates in Visual Studio 2010?

I installed IronPython yesterday. After running Visual Studio the IronPython project template showed up but later it was gone. I've tried repairing, uninstalling, and reinstalling without fixing the issue. How can I make the templates show up?
David Silva Smith
  • 11,498
  • 11
  • 67
  • 91
1
vote
2 answers

Ironpython Studio forms

This is a two part question. A dumb technical query and a broader query about my possibly faulty approach to learning to do some things in a language I'm new to. I'm just playing around with a few Python GUI libraries (mostly wxPython and…
One Monkey
1
vote
1 answer

How do I import a third-party IronPython module in .NET?

I am C# developer and I have to use an IronPython library in the .NET framework. I tested every class in Python and it's working but I am not sure how to call the library in a C# class. When I try to call the library, I am getting a 'LightException'…
nikunjM
  • 560
  • 1
  • 7
  • 21
1
vote
1 answer

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 self._DataGridView1.BeginInit() and self._DataGridView1.EndInit() are…
Meli
  • 151
  • 3
  • 13
1
vote
1 answer

Can we acess SQL Server data from Iron Python Script File if so how I m trying this following code?

Can we access SQL Server data from Iron Python script file if so how I m trying this following code ? import sys import clr clr.AddReference("System.Windows") from System.Windows import Application import pypyodbc constr="DRIVER={SQL Server Native…
Vijaykumar
  • 127
  • 1
  • 10
1
vote
2 answers

Problems with IronPython Studio and PictureBox

Right, so I'm having a go at Iron Python Studio as I'm quite familiar with VS2005 and want to try Python with an integrated GUI designer. But as soon as I add a PictureBox I'm in trouble. When running the project I get complaints about BeginInit and…
Niklas Winde
  • 1,761
  • 3
  • 23
  • 33
0
votes
0 answers

Call a Python script from C# via IronPython (IronPython.Runtime.Exceptions.ImportException: 'No module named 'requests'')

I am calling a python script from C# code, which invoked a REST API to Authenticate and Upload a file into AMAZON S3. public static string runPy() { { debugLog(" ---- ---- Running Python ---- --- "); …
0
votes
1 answer

Ironpython in visual studio 2019

I have been struggling to create a button that loads the file using IronPython in Visual studio 2019. The console window pops up for 1 sec and disappears. import wpf clr.AddReference('IronPython.Wpf') #Add a reference for the '…
0
votes
1 answer

Installing python packages in Ironpython

I have made few functions in Pycharms using the following packages: Urllib.requests Numpy However, when I used these functions inside a code that I wrote in Ironpython (used in order to make a GUI), I recieved an exception that there are no such…
Ben
  • 1,737
  • 2
  • 30
  • 61
0
votes
1 answer

switch between forms on ironpython studio

I'm new to IronPython, currently using ironpython studio, usually I like to program with Visual Basic or Delphi. My problem is that I don't know how to switch between forms by clicking a button, on Delphi you normaly write this code from a button on…
juanD
  • 1
0
votes
3 answers

Why doesn't IronRuby have the same tools that IronPython does?

I've been using Ruby as my main scripting language for years but switched to .NET several years ago. I'd like to continue using Ruby (primarily for testing) BUT the toolset for IronRuby is really nonexistent. Why? In Python, meanwhile, there are…
rsteckly
  • 1,952
  • 3
  • 23
  • 35
0
votes
0 answers

How to register a managed debugger in VS Integrated Shell

My team currently has a fork of the Iron Python Integrated Shell project where we completely implemented our own custom language using managed C#. Our current implementation does not utilize any debug engine (it uses some hacky alternative) and my…
noodlejs
  • 301
  • 2
  • 8
0
votes
1 answer

IronPython studio cannot change default font colors

I cannot figure out how to change the default colors in Visual Studio for python files. I have a dark gray background color and black Python code doesn't look very good on that background. I looked in Environment->Fonts and Colors in Option dialog…
Vadim
  • 21,044
  • 18
  • 65
  • 101
0
votes
3 answers

Generating EXE out of IronPython script

I am using IronPython studio to create IronPython scripts and convert them into executables. When converted to executables, it creates a Main exe and two dlls (IronMath.dll and IronPython.dll). Is it possible to create the executables without…
Prabhu
  • 3,434
  • 8
  • 40
  • 48
1
2