monodevelop

Find a UITableView from code?

How do I connect a UITableView so I can find it in my code? ...

How to run NUnit test in MonoDevelop 2.2 in Ubuntu 10.04?

I was following a tutorial but I can't find the option to run tests. ...

Why wouldn't `new int[x]{}` be valid???

In MonoDevelop I have the following code which compiles: int[] row = new int[indices.Count]{}; However, at run-time, I get: Matrix.cs(53,53): Error CS0150: A constant value is expected (CS0150) (testMatrix) I know what this error means and forces me to then resize the array: int[] row = new int[indices.Count]{}; Array.Resiz...

Monodevelop - Ubuntu - exe file as output?

Hi everyone, OK I'm creating an app in MonoDevelop for Ubuntu Linux, but the compiled file is always a windows exe, I've set it to compile as a Linux Binary but I'm confused, can anyone shed any light on how to get a proper Linux way of opening the program? Thanks ...

Console redirection of the current process in Mono

I am trying to redirect the Console output of a C#/Mono application into a gtk# textview. There are zillions of answers here explaining how to redirect output of a command to whatever output device conceivable. However, I am trying to do the same on the current process. Originally the application was designed as command line, know I w...

Why is MonoDevelop compiling with csc.exe?

I am trying to use MonoDevelop (2.4 beta 1) on Windows (7 x64) in order to test a .NET application on Mono (2.6.4). For some reason MonoDevelop is not using the Mono tool chain to build the application. It compiles it with the Microsoft tool chain - C:\Windows\Microsoft.NET\Framework\v3.5\csc.exe. The project I am trying to build is a si...

MonoDevelop debugging?

Ok, this seems like a dumb question because MonoDevelop is getting more mature, so I'm sure I'm just missing it, but I looked around and all the questions about this subject seem to be about remote debugging or debugging on a Mac. I'm using Ubuntu 10.04 Lucid Lynx, and I just installed MonoDevelop 2.2.1 from the software center. I creat...

Making GUI applications on Linux/Windows. What languages/tools to use?

My student group and I are trying to continue working on a project we worked on this semester over the summer to become a professional, deployable app. We originally did it in Adobe AIR but it seems now that the computers this program will be running on will be very slow, maybe 600mhz and 128-256mb ram so flash just isn't going to cut it...

Mono Develop 2.2 OSX issue

I tried a simple: "what is your name?" "Hello "+ name" app but when I run the app it wont allow me to input anything.... Whats up with that? ...

Can I work with Visual Studio Project and Solution files in a team using Subversion?

We're a team of students doing a software project. As some of us don't use Windows, but the product needs to run on Windows and .NET, we want to develop on MonoDevelop and Visual Studio which both use Visual Studio files; language of choice is C#. My question is: Can we check in the solution and project files into our repository without...

ASP.NET + GoDaddy Free Hosting?

Has anyone successfully been able to deploy ASP.NET website to GoDaddy's free hosting? I am talking about free hosting that comes with a domain package from GoDaddy. The catch of the free hosting is having an annoying Google Ads banner in a frame on top of the page. I've searched Google, stackoverflow and GoDaddy forums but I can't find...

How can I invoke linux programs from C#/Mono?

I've been using MonoDevelop and Make to execute some build taks on a C project under linux, but I decided to abandon Make and switch to NAnt since I am more proficient in writing C# programs than Make/shell scripts, so I decided to write a custom NAnt task in C# to replace my Makefile. So, how can I invoke GCC or other shell commands fro...

Installing Monodevelop from the SVN on Ubuntu 10.04

I wrote the following script to install the svn version of MonoDevelop #!/usr/bin/env bash PREFIX=/opt/local check_errs() { if [[ $? -ne 0 ]]; then echo "${1}" exit 1 fi } download() { if [ ! -d ${1} ] then svn co http://anonsvn.mono-project.com/source/trunk/${1} else (cd ${1}; svn ...

How to install MonoDevelop 2.2 in a Virtual Machine under Debian 5 stable ?

Hi everyone, My problem is I wish to install the new version of MonoDevelop 2.2 in my Debian vmware image. This version is not validate for the moment. Also I try to add in my sources.list in /etc/apt the following line : deb http://ftp.ch.debian.org/debian squeeze like advise in the monodevelop website. The problem when I select m...

Monodevelop does not show iPhone application option...

I am using the latest iPhone IDK, Mono, monotouch and Monodevelop as of July 1, 2010. I installed on a Mac with latest version of Snow Leopard. When I open MonoDevelop, the option for an iPhone application is not listed. Also, when I use the Interface Builder and place controls (set outlets also) and save, there is not change in the rela...

TFS support (plugin, external tool, etc) from within MonoDevelop?

Is there an easy way to integrate TFS for version control into MonoDevelop? I have a new MacBook Pro and an trying to determine which things I can do with Mac native apps and which I will need to run using Parallels. I downloaded the Microsoft Visual Studio Team Explorer Everywhere 2010 command-line client, and was able to create a wor...

enable auto-completion for C in Mono Develop

I need to enable Auto completion for C programs in Mono - I think using CTAG? How can I do that? ...

MonoDevelop -- GTK Designer just shows a blank square?

I am having problems getting the GTK designer to work with MonoDevelop. I tried 2.4 on Arch Linux and it gave this problem. Then I tried 2.2 on OpenBSD and it gives the exact same problem. Both machines are 64bit. Instead of having a window to drag things on I just have a blank square: The tutorials I've seen look similar to this th...

monodevelop shortcuts and auto-code

Hello, i'm using MonoDevelop after used Eclipse for several years. In eclipse when i create a class, eclipse auto-generates all stub methods from extended class or implemented interface. How i can obtain same job in monodevelop? Thanks ...

Is there any Iron Python plug-in for Monodevelop?

I have installed Iron Python on my Ubuntu 10.4 and Mono Develop, but there is no interaction between them. Is there any Iron Python plug-in for Monodevelop as in VS? If not, wich is the best Iron-Python IDE for Ubuntu or Debian? ...