mono

What's the bzr command to revert

Easy question. I have downloaded gnome-do and I'm starting to learn about it. By mistake I have removed a file and now I want to update it with the latest version. What'st the bzr command to do that? I've tried bzr update but it always says I'm up to date :( The deleted file looks like an uncommited change. What's the bzr option t...

Suggestion for a cross platform line graph library for .NET and Mono

Hello I'm writing a cross platform datalogging application in C# so I use the .NET compiler for Windows and Mono for the Mac. I'm at the stage now where I'm building the GUI for my logging application, I have a plug in arcitecture so am reasonably flexible on what I use. I'm looking for a charting library to initially plot simple line ...

Rich text in gtk-sharp?

Does anybody out there know if there is a richtextbox equivalent in gtk# or any way to replicate the functionality? I might not need full rtf support, I could probably get by with being able to show multicolored text if a full rtf solution can't be done. Thanks in Advance. ...

App.config dllmap entry portability

The dllmap configuration file entry is used in Mono to map requests for windows DLLs to Linux (.so) libraries. But it seems that if Microsoft's .NET framework tries to parse a configuration file with such an entry, an error occurs because it doesn't understand "dllmap". I think everything else in my distribution can be distributed unch...

How do you hide a Gtk# window?

How can I hide a Gtk# window that I created in MonoDevelop? I tried the following but it doesn't work: public MainWindow (): base (Gtk.WindowType.Toplevel) { Build(); this.HideAll(); this.Visible = false; } Solution Calling HideAll() outside the constructor, as tomlog suggested, works. If you want to do some work before ...

Mono (mod_mono) & Apache (httpd) on Fedora 10: failing to start correctly

Hi It seems I am one of the few trying to get Mono's mod_mono to run on httpd on Fedora 10. Mono is installed and the httpd is configured to use mod_mono.conf But when I do this: service httpd start I get this error: Starting httpd: [crit] (13)Permission denied: Failed to attach to existing dashboard, and removing dashboard file ...

Have you deployed .NET computing applications to clouds outside Windows Azure?

I'm interested in running CPU-intensive computations in clouds. The only real requirement is ability to run .NET applications (F# algorythms like this one) with enough security permissions for using reflection-based IoC Container. Persistence technology does not really matter as long as something is there. I'd like to know of your exper...

Imitating a context menu in Gtk#/gtk-sharp

Is there some way to use the Menu.AttachToWidget(...) function of a gtk menu item to attach the menu to say a Gtk.Textview and have it handle showing the menu when needed. Or is creating an event handler for ButtonPressEvent and showing the menu there the only way to do it? Or is there a third possibility that I'm missing? Thanks in Ad...

Mod_Mono & Apache: Failed to create shared memory segment for backend

Hi I have successfully installed mod_mono 2.4 and httpd on Fedora 11 and got httpd to start. But when I add: <VirtualHost XXX.XXX.XXX.XXX:80> ServerName mydomain.com ServerAlias www.mydomain.com ServerAdmin [email protected] DocumentRoot /usr/lib64/xsp/test/ MonoServerPath mydomain.com "/usr/lib64/mono/2.0/mod-mono-server2...

Current state of Mono on Linux?

I'm a long time user of the .NET Framework on Windows platforms, but I do a lot of programming on Linux as well. I'd like to take advantage of Mono for some particular projects, but the last time I tried (maybe 2 years ago?), Mono was simply not up to the task. As well, it was particularly difficult to get really good information on the ...

ASP.NET MVC 1 and 2 on Mono 2.4 with Fluent NHibernate

Hi! I'd like to create an application using ASP.NET MVC, that should run under mono 2.4 (compiling will be done on a Windows box). Has anyone getting luck with this? Here is what I've already tried: ASP.NET MVC on mono without any persistence model support, and using nhaml as the view engine S#aml architecture, which is a quite good f...

Need a Mono-compatible WinForms docking library

I've been looking for a Visual Studio-like docking library for WinForms, but the two most popular and complete options (WeifenLuo.WinFormsUI.Docking and the MagicLibrary) both use P/Invokes extensively, so I can't use them in Mono. The best I can manage so far is toggling a Panel from being hosted by the main form or by a toolwindow tha...

How to run ASP.NET web application using mono?

Hi, My department doesn't have a server to host web applications developed in ASP.NET. They do have RHEL boxes having Apache web server, which won't host my ASP.NET web pages. I inquired and they said they have mono which would run my .NET applications. I created a simple web page and it worked on my windows laptop. My question is wha...

The Mono .NET framework and WMI

We have a .NET project that uses WMI and are interested in porting it to the Mono framework. It appears Mono does not support WMI. Are there any libraries that can add WMI support? Basically we would want to access a Windows server using WMI from a Linux/OS X box. ...

DotGNU vs Mono

DotGNU and Mono seem to be attacking the same problem - namely implementing the .NET CLR in a free, open-source way with an eye to cross-platform compatibility. I've been reading quite a bit about both, and I'm having a hard time deciding which implementation to use for an upcoming project. My particular project doesn't need System.Wind...

Gtk# property grid.

Does anybody out there know of a lgpl licensed Property Grid control for c#. I know there is a property grid control in the monodevelop source but I was wondering if there were other options? ...

Please recommend a Mono (i.e. C#) audio reading library

I'm trying to write a small app that displays the contents of an audio file in the frequency domain. I'm looking for a Mono-compatible library that can read an audio file and give me the contents in a physically meaningful way. Can anyone make any recommendations? ...

Using Linux ioctl with Mono

I'm trying to do ioctl command through Mono framework, but I cant find what I'm looking for. I'm trying to send command to a DVB card that has a kernel module. I hope someone can link or explain clearly how this can be done. Any example with Mono using kernel modules would be useful I guess. ...

Mono C# tutorial?

Is there any good tutorial to learn C# with mono? So far, google hasn't been helpful because most tutorial are for Visual Studio. I am a Java developer, so I am familiar with Object Oriented ideas. My goal, is to be able to develop a small portable application with a SQLite backend. Thanks ...

Mono validation of NHibernate's cfg.xml file

I'm trying to set up NHibernate in Mono, to store objects in SQLite. I've copied/pasted the example configuration file. I only have the following two lines of code: var config = new Configuration(); config.Configure(); Which result in the following ungrammatical validation exception: System.InvalidOperationException : Unexpecte...