Notices


Reply
Thread Tools
Posts: 669 | Thanked: 433 times | Joined on May 2010
#31
Is there a good .net framework API documentation for mono (something like MSDN with example codes)?

i was trying to add an item to a combobox at runtime but i can't access its "Items" property (only from designer's properties).
 
Posts: 22 | Thanked: 50 times | Joined on Apr 2011
#32
 

The Following 2 Users Say Thank You to keks-n For This Useful Post:
Posts: 1,141 | Thanked: 781 times | Joined on Dec 2009 @ Magical Unicorn Land
#33
Thanks, i was able to build & run a simple gtk-sharp app.
 
Posts: 669 | Thanked: 433 times | Joined on May 2010
#34
Originally Posted by keks-n View Post
It looks like that you need documentation for GTK#.

Try these links:
http://www.mono-project.com/GtkSharpBeginnersGuide
http://www.go-mono.com/docs/index.as...classlib-gnome
http://www.mono-project.com/GtkSharp
Thanks (is there no search option in the API reference?)

i mostly use the MSDN for non UI API.
 
Posts: 22 | Thanked: 50 times | Joined on Apr 2011
#35
Guys, please, vote for the package. It seems to be almost stable.
 
Andy1210's Avatar
Posts: 233 | Thanked: 220 times | Joined on Jan 2010 @ Hungary
#36
how can i use gtk designer for vb.net app?
__________________
Nokia N950 - PR1.3
OpenSUSE 12.2 / Windows 8
 
Posts: 669 | Thanked: 433 times | Joined on May 2010
#37
i've tried searching the web for this but couldn't find a solution:

does anybody know how i can get the x y coordinates of a textview control inside a ScrolledWindow?

Another issue i have is a crash when i use File operations (File.Copy for example) - the crash only happens when i execute it from the shortcut i made for it in hildon desktop - if i run from xterm the same command it works well. i thought it was probably a security issue so i tried executing it with sudo but it didn't help...
anyone knows how to solve this?

is there a good place to post these kind of questions?

Thanks

Last edited by impeham; 2011-05-21 at 19:35.
 
Posts: 22 | Thanked: 50 times | Joined on Apr 2011
#38
Another issue i have is a crash when i use File operations (File.Copy for example) - the crash only happens when i execute it from the shortcut i made for it in hildon desktop - if i run from xterm the same command it works well. i thought it was probably a security issue so i tried executing it with sudo but it didn't help...
anyone knows how to solve this?
Does it throw an exception or just "catch" SIGSEGV? Please, try to log which exception is thrown.
 
Posts: 669 | Thanked: 433 times | Joined on May 2010
#39
the problem is - how do i log the exception? i cannot seem to be able to write to a file...
any other way?
 
Posts: 22 | Thanked: 50 times | Joined on Apr 2011
#40
For example:
catch (Exception e)
{
var f=new System.IO.StreamWriter("/tmp/wtf");
f.WriteLine(e.ToString());
f.Flush();
}
 
Reply


 
Forum Jump


All times are GMT. The time now is 00:30.