588 Posted Topics

Member Avatar for Duki

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

Member Avatar for ddanbe
0
119
Member Avatar for Duki

In one of my C# books, this is written: [quote] "if you write this application in VB.NET or any other language compliant with the .NET CLS, you will have compiled it into more or less the same MSIL. By design, IL code created from different languages is virtually indistinguishable"[/quote] I …

Member Avatar for jbennet
0
127
Member Avatar for pizzafiend
Member Avatar for anupam_smart
0
3K
Member Avatar for Duki

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 similar to [URL="http://www.robotshop.us/hokuyo-utm-03lx-laser-scanning-rangefinder-1.html"]this[/URL] Does anyone have an idea of where I could start? I'm not sure …

Member Avatar for LizR
0
101
Member Avatar for mayo_tech11

inspiring films: The Guardian The Pursuit of Happyness 300 We Were Soldiers more to come....

Member Avatar for Obeledeveloper
0
326
Member Avatar for Duki

Will someone PLEASE explain to me the significance of the electoral votes? More specifically, how is the popular vote 48% - 51%, yet Obama won by more than double the electoral votes as McCain. Someone make sense of this for me. I understand according to the process, the electoral votes …

Member Avatar for Dave Sinkula
0
274
Member Avatar for Duki

Hey everyone, I'm working with a login form in my application. The easiest way I can see to do the authentication is to query a user/pass database for any rows that match the given username and password. How can I send a query when the user clicks OK? Am I …

Member Avatar for toko
0
121
Member Avatar for Duki

Hey everyone, I'm trying to send a bindingitem add new item click event but i'm having problems. I've tried BindingNavigatorAddNewItem_Click(sender, e) but it doesn't work. I want to do this so I can remove the toolstrip and have my own link labels on the form. For now, I still have …

0
56
Member Avatar for Duki

Hey guys, my prof is looking for a good polymorphism project. The one's in the book weren't good at all. Could someone give a suggestion?

Member Avatar for Firasath
0
122
Member Avatar for Duki

Hey everyone, I have a program using databases and I want to send a click event for the AddNewItem binding. I was able to do something similar for the "Save" icon, so that when a user modifies an entry they can click a link label that says "Apply" and it …

Member Avatar for Duki
0
111
Member Avatar for Duki

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: [code=c#]Using System.Ports.IO SerialPort ports = new SerialPort("ttyS0",19200,Parity.None, 8, StopBits.One); [/code] We can't get anything sent out of our COM ports. We're not even …

Member Avatar for Duki
0
117
Member Avatar for Duki

Hey guys, is there something special I need to do to access the RS232 port in Linux from C#?

Member Avatar for LizR
0
79
Member Avatar for Dark_Omen
Member Avatar for Duki

Hey everyone, I'm creating some databases (new to this) and I'd like to specify the maximum number of digits allowed for a record. For example, I have a field for zip code that I would like to limit to 5 digits. Can I do this with any of the binary …

Member Avatar for Teme64
0
95
Member Avatar for Duki

Hey everyone, I'm writing a program for work. I need to do the following: The user inputs an unknown number of values to be processed. I want to allow them to basically click "new" and be able to add a new textbox or something that will allow them to input …

Member Avatar for selvaganapathy
0
119
Member Avatar for Duki

Hey everyone, I have a program that computes the distance between two elevations at a given point. I need to plot these lines to a picture. I'm having problems getting the lines to start in the correct spot. Here's the code I'm using: [code=vb] Dim Gr As Graphics = PictureBox1.CreateGraphics() …

Member Avatar for Duki
0
294
Member Avatar for Duki

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 "windows form"?

Member Avatar for Duki
0
163
Member Avatar for DV6500

Do you have a static IP available for a NAT translation? Which model router do you have?

Member Avatar for DimaYasny
0
234
Member Avatar for Duki

Hey guys, I need to know about Lithium-Ion batteries and where I can buy them. I'm not really talking about laptop batteries. I need something that can power a desktop for well over an hour (more like half a day). Does anyone know where I can get information on this? …

Member Avatar for GrimJack
0
169
Member Avatar for Duki

Hey everyone, I need a decompiler for a VB6 application. The software was written in 2002 by a former IT admin, and he didn't leave the source code. I've been able to use programs like VBdecompiler-Lite, but it looks like the only thing I can get is the native code? …

0
57
Member Avatar for Duki

Which is better? We're designing a new autonomous robot for the competition we attend during the summer and this is one of our topics for design. I want to do a dual-processor, multi-core computer to run the software. Some others want to do distributed computing (between two laptops). Am I …

Member Avatar for Salem
0
276
Member Avatar for Duki

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: [code] char t1 = (char)A; comBobbySue.Write(A);[/code] but i get errors. can someone give me a hand? :(

Member Avatar for dickersonka
0
179
Member Avatar for Duki

Hey everyone, I want to restrict cursor movement outside of a picture box when the user clicks a button. Here's what my code looks like so far: [code=c#] private void btnX_Click(object sender, EventArgs e) { if (remote == false) { remote = true; Cursor.Position = pctRemote.PointToScreen(gridCenter); //centers the cursor on …

Member Avatar for LizR
0
272
Member Avatar for jackstar

Welcome to the forums! Which model router did you get? Also, can you do the following (on both computers) and post your output: start->run...->type cmd->OK type "ipconfig /all" (without the quotes) and hit enter. Post the output of this command and we'll have a look.

Member Avatar for PCResolver
0
154
Member Avatar for Duki

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 cores each (dual xeon quad cores). We want to dedicate one processor (or core) to calculating …

Member Avatar for Duki
0
131
Member Avatar for Duki

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 determine the direction they move. The problem we've run into is say …

Member Avatar for LizR
0
92
Member Avatar for Duki

Hey everyone, is this the most efficient way to round a decimal number to two decimal places? [code] txtXaxis.Text = String.Format("{0:F2}", A); //show 2 decimal places txtYaxis.Text = String.Format("{0:F2}", V); //show 2 decimal places[/code] thanks!

Member Avatar for Duki
0
74
Member Avatar for Duki

Hey everyone, I'm completely new to C# so I'm sorry if I don't make sense. I need to capture the x and y position of the mouse cursor within a group box (or some other frame). How can I do that?

Member Avatar for cVz
0
241
Member Avatar for Duki

Hey everyone, I'm trying to write code that will be sent out of the COM port to a PIC microcontroller. However, I don't have the controller available yet. Is there an emulation software that will allow me to virtualize a COM port and capture the data that's being sent to …

Member Avatar for dougy83
0
198
Member Avatar for 99mtamchamp

Simply put, the Linksys router also has a switch built into it. This is how multiple people are able to access the same internet connection. The router transfers information back and forth to the built-in switch. Unfortunately, this means that both of you will be on the same network. If …

Member Avatar for zeroth
0
81
Member Avatar for Daywraith

My suggestion: [url]http://www.cdw.com/shop/products/default.aspx?EDC=871657&cm_sp=Product-_-Overview-_-Main+Tab[/url] I've never used Linksys in a production environment. However they are built by Cisco Systems, which has to count for something. They are much cheaper than the fully loaded Cisco series switches, however I doubt you would be using the functionality that wouldn't be included with a …

Member Avatar for Duki
0
136
Member Avatar for Anupkumar

Hey Anupkumar! Not sure about the simulators, but you can do some research on OSPF, EIGRP, BGB, and IS-IS as these are the most common routing protocols used today. There are many simulators out there, but I wouldn't recommend spending any money on them. If you're serious about it, search …

Member Avatar for Duki
0
80
Member Avatar for Duki

A very funny (and borderline absurd) article I thought many of you would enjoy: [url]http://www.pbm.com/~lindahl/real.programmers.html[/url] :) -hope this is the best place to post this

Member Avatar for grumpier
0
105
Member Avatar for deeptiabdullah
Member Avatar for Duki

Hey guys, We're trying to work with a driver program for our robot. If we can grab the x and y coordinates of the Mouse we could send them to the controller for driving. Does anyone know how to capture the mouse movement into an integer?

Member Avatar for iamthwee
0
164
Member Avatar for Duki

Hey everyone, A friend and I are trying to figure out how to interface C++ 2008 with COM ports for our robotics team. Is there a simple "template" we could go by, or is it different for every device? Could someone provide an example of how to transfer data to …

Member Avatar for Duki
0
463
Member Avatar for The Dude

[quote=christina>you;369394]Here you go... [URL="http://youtube.com/watch?v=zp-f2HZbUYU"]"Straight Up"[/URL] But I would advise you not to watch the video part, just listen to the song. =p (I couldn't find a music video and the others were live and didn't have good quality.)[/quote] awesome remake. agreed, don't watch the video.

Member Avatar for The Dude
0
173
Member Avatar for J_M44053

Apparently your system only supports PCI cards. You can choose from any of these cards... [url]http://www.compusa.com/products/products.asp?N=200105+4294967168&Ne=300752&Cn=Computer_Upgrades_Video_Cards[/url] These are just examples. Better prices may be elsewhere, such as pricewatch.com just make sure you get a pci card and not a pci-e (express).

Member Avatar for Bijdog
0
329
Member Avatar for Duki

Hello all, I'm looking for a good VB.NET book. I know a little about c++ and am looking for something along the lines of a text book. Anyone have any good suggestions?

Member Avatar for jbennet
0
139
Member Avatar for Duki

[QUOTE] Download Day is here! Set a Guinness World Record Enjoy a Better Web Sounds like a good deal, right? All you have to do to help us set the record for the most software downloaded in 24 hours is get Firefox 3 now – it’s that easy. We're not …

Member Avatar for Infarction
0
210
Member Avatar for Duki

Does anyone have a recommendation of some software I could purchase to simulate cisco routers? I'm in the netacad and am looking for something that will allow me to setup networks to test or with give me practice labs built in. thanks

Member Avatar for safesa
0
77
Member Avatar for mattyd

How has evolution been proven true over and over? Have you any evidence of monks magically transforming into human beings? If you do, by all means... If the bible is not intended to be litteral then neither is Ceasar Agustus's [I]Galic Wars[/I] or Thucydides, one of the greatest of ancient …

Member Avatar for ~s.o.s~
3
10K
Member Avatar for Duki

Hey everyone, I have Vista installed on my C: partition and XP installed on G: Every time I reboot, the PC goes straight into XP, with no option for Vista. How can I make it to where the computer gives me the option at boot?

Member Avatar for bobbyraw
0
88
Member Avatar for tiuk

If you have a managed switch (which you're going to connect to the wap in order to get Internet to it, I'm assuming) you could just isolate the port on the switch from the other IP schemes.

Member Avatar for blackmagic1943
0
178
Member Avatar for Narue

[ATTACH]4041[/ATTACH][quote=Narue;100464]Post your tips for making life easier in C and C++. I'll start: [B]Standard vector object initialization[/B] The biggest problem with the standard vector class is that one can't use an array initializer. This forces us to do something like this: [code] #include <iostream> #include <vector> using namespace std; int …

Member Avatar for bector
2
8K
Member Avatar for Duki

Hey everyone, I've been the IT at my workplace for about 2 years now. We use a piece of software that was developed in house by one of the previous ITs (about 6 years ago), and I think it was developed in VB6. We need to modify a couple of …

Member Avatar for AndreRet
0
216
Member Avatar for The Dude
Member Avatar for Serunson
0
283
Member Avatar for Duki

Hey all, I have a ViewSonic E90FMB 19" CRT monitor w/flat screen. I've used it a lot for about 2 straight years. I now have a lap top and the monitor is sitting in my bedroom doing nothing. Still has great picture. I am wanting to get rid of it …

Member Avatar for Duki
0
155
Member Avatar for Duki

Hey everyone. I have a program that will load project data according to the project number selected. One of the fields associated with the project number is the project manager. I have another table called Contact which is the contact information for the project mangers. I have a link setup …

Member Avatar for iamthwee
0
65
Member Avatar for Duki

I want to connect my PC to my TV. I have an s-video capable graphics card, but is this the best way? I want the clearest picture possible. Would a tv-tuner card like the Radeon Theater or All in Wonder cards work for better for this?

Member Avatar for iaindb
2
195

The End.