-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm using Mac Snow Lepord and can't find "~/.config/MonoDevelop/" for the life of me. I have MonoDevelop (v2.2.2) up and running already, but when I tried to set up a template the IDE started having problems.
Namely, whenever I went to Monodevelop - preferences- Code Templates I would get an error…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
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}
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
When I try to create a new solution in MonoDevelop 2.8.5 in Ubuntu 11.04 x64, it shows me:
System.ArgumentNullException: Argument cannot be null.
Parameter name: path1
at System.IO.Path.Combine (System.String path1, System.String path2) [0x00000] in <filename unknown>:0
at MonoDevelop…
>>> More
-
as seen on Developer IT
- Search for 'Developer IT'
In the past two years, I have been developing .NET from my MacBook by running Windows XP into VM Ware and more recently into Virtual Box from OS X. This way, I could install Visual Studio and be able to work seamlessly.
But, this way of working has a major down side: it kills the battery of my laptop……
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I get this exception every time i try to create a new Iphone/Ipad solution?
I have been following the guides and have both XCode, interface builder and IOS SDK installed.
Any clues are welcome:)
System.ApplicationException: Can't create display binding for mime type: application/vnd.apple-interface-builder
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
My MonoTouch Version Info:
Release ID: 20401003
Git revision: 2f1746af36f421d262dcd2b0542ce86b12158f02
Build date: 2010-12-23 23:13:38+0000
The MFMailComposeViewController is displayed and works correctly as a dialog using the following code:
if (MFMailComposeViewController.CanSendMail)
{
…
>>> More
-
as seen on ASP.net Weblogs
- Search for 'ASP.net Weblogs'
Hello all, A few weeks ago it was announced that I will be speaking at the Norwegian Developers Conference 2010 on MonoTouch. I'll be doing two session, an introduction to MonoTouch and developing for iPhone, iPod Touch and the iPad as well as deep dive into MonoTouch and the ecosystem that is around…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm a newbie. I can't figure out how and where to call ResignFirstResponder to get rid of the keyboard when the user finished entering the text in an UITextField. I'm a bit confused by the UIResponder class. Mono documentation says: "To dismiss the keyboard, send the UIResponder.ResignFirstResponder…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've had Xcode (3.2.1 - SnowLeopard, iphone 3.1.3) installed for a while, and I can run and build apps on it fine.
I installed MonoTouch, as I want to leverage the 8+ years of .NET skills I have :)
So I installed:
Mono: MonoFramework-2.6.1_1.macos10.novell.x86
MonoTouch: monotouch-eval-1.5.0
MonoDevelop:…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm trying to resize an image loaded from disk - a JPG or PNG (I don't know the format when I load it) - and then save it back to disk.
I've got the following code which I've tried to port from objective-c, however I've got stuck on the last parts. Original Objective-C.
This may not be the best…
>>> More