Forum: C# Jul 6th, 2009 |
| Replies: 1 Views: 370 Our organization has hundreds of project numbers. I would like to create a program that will let me store the numbers along with keywords in a database, and then have the option for predictive... |
Forum: C# Mar 6th, 2009 |
| Replies: 3 Views: 389 If you know c++, you know a lot of c#. |
Forum: C# Dec 13th, 2008 |
| Replies: 3 Views: 467 In one of my C# books, this is written:
I was then asked this question: Why is there a difference between C# and VB in speed? I don't understand the above statement very well, but it seems... |
Forum: C# Dec 8th, 2008 |
| Replies: 6 Views: 542 Cool. Any suggestions on a C# graphics book? |
Forum: C# Dec 7th, 2008 |
| Replies: 2 Views: 2,408 Does anyone know of a compiler that will let you utilize WPF in Linux? |
Forum: C# Dec 7th, 2008 |
| Replies: 6 Views: 542 thanks !
was that made in c#? or just a picture? |
Forum: C# Dec 6th, 2008 |
| Replies: 6 Views: 542 Hey everyone,
I'm going to be starting on a project that communicates with a 270 degree range finder. I would like to incorporate some sort of picture to represent the data it reads. Something... |
Forum: C# Oct 20th, 2008 |
| Replies: 4 Views: 679 Hmm, ok. What commands can I enter to see my com ports? |
Forum: C# Oct 20th, 2008 |
| Replies: 4 Views: 679 I'm not sure. We tried some command, can't remember what it was, and it showed ttyS0-3 |
Forum: C# Oct 17th, 2008 |
| Replies: 4 Views: 679 Hey everyone,
we're still working trying to get Linux to communicate to our robot via an RS232 port. We added this code to the project in Mono:
Using System.Ports.IO
SerialPort ports = new... |
Forum: C# Oct 2nd, 2008 |
| Replies: 3 Views: 900 Oh ok. So is there code I can use to open the coms? |
Forum: C# Oct 2nd, 2008 |
| Replies: 3 Views: 900 Hey guys,
is there something special I need to do to access the RS232 port in Linux from C#? |
Forum: C# Sep 18th, 2008 |
| Replies: 19 Views: 1,689 Ok itÅ› working now in Ubuntu. I was trying Fedora earlier.
Is there a way to modify the form from Mono? I see the Form1.designer.cs but it brings up the code, not the layout. Do our forms need... |
Forum: C# Sep 17th, 2008 |
| Replies: 19 Views: 1,689 I transfered them via flash drive |
Forum: C# Sep 17th, 2008 |
| Replies: 19 Views: 1,689 Created the hello world program and it ran fine |
Forum: C# Sep 17th, 2008 |
| Replies: 19 Views: 1,689 |
Forum: C# Sep 17th, 2008 |
| Replies: 19 Views: 1,689 They're both on Line 1 Using System
It says one is associated with Form1.resx and the other is Resources.resx |
Forum: C# Sep 17th, 2008 |
| Replies: 19 Views: 1,689 I get two parsing errors (CS8025). |
Forum: C# Sep 17th, 2008 |
| Replies: 19 Views: 1,689 now we're getting compile errors for some reason. I don't know why |
Forum: C# Sep 17th, 2008 |
| Replies: 19 Views: 1,689 yes mono is working.
I ran the app through MoMa and it said something about one of our methods not being supported but no big deal. Just a simple cursor_clip.
But we still get compile errors... |
Forum: C# Sep 17th, 2008 |
| Replies: 19 Views: 1,689 We're trying to get our C# program to work on linux. We just loaded into Mono, and it compiles fine but the form doesn't appear. Anyone know what? Does it have something to do with it being a... |
Forum: C# Sep 17th, 2008 |
| Replies: 5 Views: 2,093 Hey everyone,
can someone tell me how to include other .cs files in my program? sort of like the .h files in C++ I guess. I want to be able to call functions from other .cs files.
Thanks |
Forum: C# Sep 2nd, 2008 |
| Replies: 14 Views: 1,752 I can't get it to work that way. Here's the code I tried:
byte[] outBufferAngle = BitConverter.GetBytes(A);
byte[] outBufferVelocity = BitConverter.GetBytes(V);
... |
Forum: C# Sep 1st, 2008 |
| Replies: 14 Views: 1,752 Ok, that answers my question. I'll try it when I start working on the program again.
We already have D computed from a previous section of code. I just wanted to know if there was a way to use D... |
Forum: C# Sep 1st, 2008 |
| Replies: 14 Views: 1,752 Ok I'm a little confused.
Say I want to send the double A out the COM port. what would be the easiest way?
I've got it working to where it will parse the text box, but there's got to be a way to... |
Forum: C# Aug 30th, 2008 |
| Replies: 8 Views: 1,831 Hm, how can I see what it was? Sorry if that's a dumb question |
Forum: C# Aug 30th, 2008 |
| Replies: 11 Views: 1,666 I think there's some confusion between "Multi-threading" and "Multi-Tasking" here... |
Forum: C# Aug 30th, 2008 |
| Replies: 14 Views: 1,752 oh cool. So I can specify how many bits to take in? |
Forum: C# Aug 30th, 2008 |
| Replies: 8 Views: 1,831 Ok I've got a lot working!!
Here's the code:
private void btnX_Click(object sender, EventArgs e)
{
if (remote == false)
{
remote =... |
Forum: C# Aug 30th, 2008 |
| Replies: 14 Views: 1,752 awesome, it's working great. Here's the only problem I've run into.
I'm sending angles to the controller. So when I get to angle 256, it errors out because of the maximum size of the Byte.parse... |
Forum: C# Aug 28th, 2008 |
| Replies: 14 Views: 1,752 awesome, thanks. I'll test that out tonight. |
Forum: C# Aug 28th, 2008 |
| Replies: 11 Views: 1,666 ha. Ok :(
Ideally we would like to compile and run the code on a Linux box, but since we're going to be doing multithreading, I think we may just stick with XP or the like.
Am I right in... |
Forum: C# Aug 28th, 2008 |
| Replies: 14 Views: 1,752 yeah maybe. Is there any way to send an Int or Double to the COM port? |
Forum: C# Aug 28th, 2008 |
| Replies: 14 Views: 1,752 hey everyone,
we have an argument that figured up the angle in a double. We need to convert that double to a char and send it out the serial port. I've tried this:
char t1 =... |
Forum: C# Aug 28th, 2008 |
| Replies: 11 Views: 1,666 another quick question that I can't find the answer to.
Is multithreading different for Linux? i.e., if I write my program on a windows machine, will it run in Linux? |
Forum: C# Aug 28th, 2008 |
| Replies: 11 Views: 1,666 |
Forum: C# Aug 28th, 2008 |
| Replies: 11 Views: 1,666 Probably a bit of an advanced question...
How hard is it to allow for multi threading support with C#? For example, we have a motherboard that has the capability for two processors with four... |
Forum: C# Aug 27th, 2008 |
| Replies: 8 Views: 1,831 thanks I'll test that out and post the code if I have problems |
Forum: C# Aug 27th, 2008 |
| Replies: 1 Views: 1,370 Hey again,
Is there a way to capture multiple key presses? Here's what we want to do:
When a user wants to drive the robot manually from the keyboard, we want to allow them to press WASD to... |
Forum: C# Aug 27th, 2008 |
| Replies: 2 Views: 1,002 |