Search:

Type: Posts; User: cszikszoy; Keyword(s):

Page 1 of 10 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    6
    Views
    1,866

    Re: Obtaining Low Level Access to a USB Port

    Easiest thing to do would be to use a USB to RS232 converter cable. It will show up on the host computer as a regular serial port (/dev/ttyUSB0, probably). Almost all micro controllers have a...
  2. [ubuntu] Re: No XDMCP login in Maverick? - How about letting the user decide?

    Try this: http://ubuntuforums.org/showthread.php?t=1471703

    It works for me perfectly on 10.04. I use xming on windows and also xnest on my other ubuntu box to connect to my server. I haven't...
  3. Re: Cross-platform filesystem navigation in Mono

    Look at the members of System.IO.Path, particularly Path.DirectorySeparatorChar, and Path.Join ().

    The MSDN docs are very thorough and complete, and will apply equally to Mono on Linux/OSX as they...
  4. Re: Windows is to Visual Studio as Ubuntu is to ______.

    Monodevelop. Monldevelop is also cross platform and supports many languages, though C# is supported best. C, python, vala, VB and other languages are supported as well.
  5. Thread: new to C#

    by cszikszoy
    Replies
    6
    Views
    1,001

    Re: new to C#

    try:
    http://www.mono-project.com/GtkSharp
    http://www.mono-project.com/GtkSharpBeginnersGuide
  6. Replies
    3
    Views
    821

    Re: GTK# Monodevelop question

    There are some good GTK# guides for C# here:

    http://www.mono-project.com/GtkSharpBeginnersGuide
    http://www.mono-project.com/GtkSharp
  7. Replies
    3
    Views
    821

    Re: GTK# Monodevelop question

    That's not C# code. You need to compile that with ncc, the nemerle compiler.

    http://nemerle.org/Main_Page
  8. Replies
    9
    Views
    35,743

    [SOLVED] Re: xdmcp in 10.04

    Thank you very, very much! Works perfectly.
  9. Replies
    3
    Views
    346

    Re: Recent documents Icon?

    Yes, it is a GTK stock icon, the action is "document-open-recent", the place is "folder-recent". Note that some icon sets might not have "folder-recent", so if it doesn't fallback to the other.
  10. Replies
    6
    Views
    1,216

    Re: C++ or PHP RSS reading library

    I've ussed LastRSS before, and it's very simple but pretty good. It's PHP. Give it a try: http://lastrss.oslab.net/
  11. Replies
    4
    Views
    363

    Re: Gio::FileMonitor question

    Other file is supposed to be used when you move or rename a file. File would be the name of the original file, other would be the new name. Unfortunately, the new file argument was never used in...
  12. Replies
    4
    Views
    3,616

    Re: Click Event in Monodevelop/GTK#

    All the signal tab does is create the method for you in the code view. You can also just add the .Clicked handler yourself, like this:

    Gtk.Button a = new Gtk.Button ();
    a.Clicked += delegate {...
  13. [ubuntu] Re: com 1: assigning a com port to a usb dongle programmer fdti usb tools

    it should show up as /dev/ttyUSB<N> when you plug it in. It should show up as /dev/ttyUSB0 (mine does).

    I also seem to remember having to remove brltty package to get usb serial to work. You can...
  14. Replies
    7
    Views
    5,103

    [ubuntu] Re: how to cp files using ssh?

    use scp.


    man scp

    should tell you all you need to know.
  15. Replies
    11
    Views
    876

    Re: Java vs. C# for Arithmetic

    To play the advocate here... MonoDevelop is a fantastic IDE, and I prefer it to eclipse.
  16. Replies
    4
    Views
    3,074

    [ubuntu] Re: Power Button on the Docky dock

    Glad you're enjoying it :) If you have any comments, concerns or questions feel free to find me (or another dev) in #docky on irc.freenode.net.

    Also, feel free to file a bug at...
  17. Replies
    1
    Views
    534

    [ubuntu] Re: Karmic and Gnome-Do with Docky Error

    We were having some bad problems in a previous version, specifically the one that was included with karmic, 0.8.2 I believe. Please go to launchpad (http://launchpad.net/do) and use our PPA to...
  18. Replies
    4
    Views
    3,074

    [ubuntu] Re: Power Button on the Docky dock

    Sorry, but Docky (as included with GNOME Do) has pretty much reached end of life. We will be removing it within the next release or so. I and several others are, however, working on Docky 2. We...
  19. Replies
    6
    Views
    3,227

    Re: Cross Compiling Mono for ARM

    I would ask the people in the official mono channel, #mono on irc.gimp.org
  20. Replies
    6
    Views
    952

    Re: Mono issue with SMTP

    You can also ask people in the official mono irc channel, #mono on irc.gimp.org
  21. Replies
    36
    Views
    5,898

    Re: What do you think of google's go language?

    Mono is GPL v2 and the C# language is an ECMA standard.
  22. Replies
    3
    Views
    2,451

    [SOLVED] Re: C# wait for program to load.

    System.Threading.Thread.Sleep (<milliseconds>);
  23. Replies
    36
    Views
    5,898

    Re: What do you think of google's go language?

    MonoDevelop has a great visual GTK designer.
  24. Replies
    8
    Views
    1,511

    Re: WLAN AP-List How to start?

    What about querying NetworkManager's DBUS interface to get that info? I've written something before in C# that gets all info from DBUS.
  25. Replies
    36
    Views
    5,898

    Re: What do you think of google's go language?

    What about Vala? Also Mono applications can be compiled into a standalone binary (all of the referenced parts of the runtime are embedded into the binary).
Results 1 to 25 of 250
Page 1 of 10 1 2 3 4