monodevelop

How to step into Framework source code in MonoDevelop

While debugging a project in MonoDevelop how can I step into Mono Framework source code? I'm running the vanilla MonoDevelop from openSUSE 11.3. ...

Why GTK visual designer uses "pack" system to arrange widget ?

I'm a "classical" programmer, with "classical" RAD system. I would like to "migrate" to monodevelop to deploy some application, but the first big "mountains" is to learn the "packing" system for design object. Why gtk (or mono) uses this system ? Thanks ...

Web Service Call on Apache Timing Out

I have a webapp that is trying to contact a web service but it is timing out. The webapp is hosted on Apache. In my development environment I run the webapp on XSP and the web service call works fine. Any ideas on what I might be missing in the Apache config? ...

How do I enable right-click (control-click) context menus in MonoDevelop?

Right Click (or control-click since I'm on a Mac) doesn't bring up the context menus for Solution or Projects. For instance, in Visual Studio I would right click on a Solution to add a new project to the solution. I've looked all through the menu and can't find the add project command. Also, how do I add a folder to a project? Again, ...

Changes to SQLite are lost after connection.Close()

Working with MonoTouch .NET for iPhone and SQLite on Mac OSX. I can read from the database no problem. However, when I attempt to make changes to the database, I get strange behavior. The code below runs without exception, but no real changes are being made to the database. I can create a table, insert a record, select that record, and d...

Weird cursor placement in MonoDevelop

Just installed MonoDevelop and enabled the "Insert matching brace" and "On the fly code formatting" options. It's producing rather weird behavior. When I type int f() { It inserts a matching brace, as expected. This gives me: int f() {|} (Let | be my cursor). However, when I hit enter, I get this: int f() |{ } It puts my cursor...

MonoDevelop command line compile a solution

Hi! The problem is as follows: I have a MonoDevelop project (ASP.NET) on my development workstation. I'm currently at a customer site, without my regular development environment on my laptop (Regulatory Burden). I have SSH access to my development workstation, but the network is too laggy to handle X11 comfortably. I need to make a ...

How can designers and developers work together with Monotouch? Is itt different than with the SDK?

For web applications you can have one designer create a mockup, and then another one (Perhaps Off Shore) generate CSS, templates, themes, skins...whatever. How can you do something similar with Monotouch? How would it differ from what can be done in SDK workflow? Can you use some of the same tools as for WPF/Silverlight? (And still be ...

Monodevelop code completion

Hello, sicne couple of days ago I'm newbie to Monodevelop IDE before I used Eclipse. It's confusing that code completion doesn't work for me when I press Ctrl + Space though I've configured it. What I need to configure for code completion to work? ...

In MonoDevelop, how do I specify the target directory to be used when generating a package?

If I right click on the "Tarball" project, and go to Options > Files, I see some like this: There are a couple of problems here: "pkg-config folder" uses /usr/local/lib/pkgconfig, instead of /usr/lib/pkgconfig. MonoDevelop itself doesn't look in /usr/local/lib/pkgconfig for .pc files. This is a library, so I don't think I want it in...

Monodevelop warning "Could not generate code for widgets of type: xxxx"

About 2 years ago I worked on a C# project, using MonoDevelop V1 and later V2 (beta release, compiled from source, what a mission) under Fedora. The project went dead. Now I am bringing it back to life, but I have changed my development platform to Debian (testing, i.e. squeeze), which has MonoDevelop V2.2. I am mostly very pleased with...

monodevelop insists on using a reference that doesn't work

I am using MonoDevelop 2.2 from the Debian testing repository. I have installed the addins for GTK support, for version 2.8 and 2.10. When I compile my solution, I get warnings saying Warning: Assembly 'glade-sharp, Version=2.10.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f' not found. Make sure that the assembly exists in disk....

How do I use properties to reference files in Monotouch csproj file?

In Visual Studio, I can create a file reference to a file like this: <Content Include="..\Foo\$(Configuration)\Bar.txt" /> the property will be resolved at runtime to map to the current configuration (i.e. debug, or release). When I load the project in Monodevelop, the property is not resolved. Is this a bug in MonoDevelop, or is th...

Monodevelop Control + TAB problem

Hi, I am having problem with Monodevelop 2.4 on windows 7 x64. When using Control-Tab to switch between documents a little window pops up with "Pads" on the left and "Documents" on the right side. It stops reacting to any input except mouse (blocking the application completely), it does not disappear until I minimize main window, then re...

Developing Monotouch and XCode in paralell - how to set it up

Would it make sense to develop an app in Monotouch and With XCOde in parallel or with Monotouch as a prototype. (I would be learning both while developing). Since both use the same interface-builder. Could I just take the files and create a SDK version from the same interface files the same way just after? How can I set it up so that...

Can I develop a .NET application in Windows and deploy versions for Linux and Mac?

Is this possible with, e.g., MonoDevelop perhaps? ...

DllImport doesn't work as advertised in Mono (Linux, C#) (UPDATED)

I'm getting to know Mono development in Linux, in baby steps. I'm trying to call Linux C libraries. This page, in theory, tells me how, but when I type the code below in MonoDevelop 2.2.2 (Fedora 13), I get a "Parsing Error (CS8025)" in "private static extern int getpid();". Moreover, the help system doesn't work. EDIT: I just had to mo...

Getting nice-looking widget sizing in MonoDevelop (Gtk#)

EDIT: Click here for the code. So I'm experimenting with interface building with MonoDevelop (version 2.4). I'm trying to get used to the Gtk concept of "containers within containers". I created a vbox with two... er... boxes, put a menu on the top box, and a table on the bottom one. I set the table to have two column and five rows. On ...

Monodevelop Proxy Settings

How do I set the proxy settings of Monodevelop? I tried to modify the Monodevelop.exe.config with the following code <system.net> <defaultProxy useDefaultCredentials="true"> <proxy proxyaddress = "http://172.0.0.18:8080" bypassonlocal = "true"/> </defaultProxy> </system.net> ...

Errors with MonoDevelop HelloWorld

Currently following the HelloWorld Tutorial on the monotouch website. I add the following code as per the tutorial: int ntaps = 0; button.TouchDown += delegate { label.Text = "I have been tapped " (++ntaps) + " times"; }; However, when I build I get this error in regards to line 3 of the code abov...