Forum: C# Oct 1st, 2004 |
| Replies: 28 Views: 72,729 I haven't read through all the material, but it looks like it's specific for each blue tooth device. You'll need a BlueTooth SDK from the hardware vendor and then use PInvoke to access it's... |
Forum: C++ Sep 26th, 2004 |
| Replies: 6 Views: 3,767 So you want to create a custom data type that has a size of 3 bytes? Why do you want/need a datatype of this specific size?
If we know where you're coming from we might be able to better help you... |
Forum: C++ Sep 26th, 2004 |
| Replies: 3 Views: 48,659 Thanks Narue and Stack Overflow for your quick and accurate replies!!
All is now good and I can get on with the rest of the lab :) |
Forum: C++ Sep 26th, 2004 |
| Replies: 4 Views: 5,385 Well I got it to compile and run.
Here's the errors that I found:
Your function prototypes didn't match the function's return type in it's code. (Aka, return a short but prototype says it... |
Forum: C++ Sep 26th, 2004 |
| Replies: 3 Views: 48,659 I'm trying to write a simple file output program for my class. The error I recieve when I try to compile in VS .net 2003 is the following.
fatal error C1083: Cannot open include file:... |
Forum: C++ Sep 23rd, 2004 |
| Replies: 6 Views: 3,767 You can create your own data type by either using a struct or by using a class.
And so you know....
//This is invalid
sizeof(myowndatatype) = 3; //You can't assign a value to a function...
... |
Forum: Motherboards, CPUs and RAM Sep 23rd, 2004 |
| Replies: 3 Views: 2,358 A lot of the motherboards I've had experiance with are picky when it comes to how they have their RAM installed. Just by chance, are we talking DDR RAM here? I was looking to purchase some more RAM... |
Forum: Linux Servers and Apache Sep 23rd, 2004 |
| Replies: 3 Views: 34,227 Even though ASP.NET was written specifically for the Windows Platform there has been a really active movement in the Linux community to bring C# and the .NET framework over to their OS as well. This... |
Forum: IT Professionals' Lounge Sep 21st, 2004 |
| Replies: 11 Views: 5,369 Well I got a job by following that old saying "It's not what you know but WHO you know". Many companies will forgo the experiance requirement if a perspective employee has the backing of well... |
Forum: C# Sep 21st, 2004 |
| Replies: 3 Views: 3,762 Here's a neat coding project recently posted over at http://blogs.msdn.com:http://www.theserverside.net/blogs/showblog.tss?id=BuildProviders
If I were you I'd take a project or concept you're... |
Forum: C++ Sep 21st, 2004 |
| Replies: 4 Views: 1,661 kc0arf is exactly right.
I'm a part time developer for work and a full time computer engineering student. So time is rare, and I tend to only be on these forums when I'm searching for help to my... |
Forum: C Sep 21st, 2004 |
| Replies: 0 Views: 7,307 Adding this because it took literally an hour of searching before I found a code sample using fscanf that read more than just the first line of a file.
This code assumes you're reading a file line... |
Forum: Computer Science Sep 21st, 2004 |
| Replies: 13 Views: 21,404 Here's one link that might help you out: http://www.free2code.net/tutorials/programming/1/Creating_a_Programming_Language.php
And... |
Forum: Computer Science Sep 21st, 2004 |
| Replies: 3 Views: 8,856 Just my personal opinoin but I would use whatever language you're most comfortable with.
Once it's compiled, makes no difference to the PC what language you chose.
I don't know much about... |
Forum: C# Sep 20th, 2004 |
| Replies: 3 Views: 13,604 What do you mean by print from the text box?
Do you want to "print" this to the screen, console, file, a physical printer? |
Forum: ASP.NET Sep 20th, 2004 |
| Replies: 3 Views: 3,111 .Net is NOT a programming language, it is an application framework.
When you write a .Net application, no matter what language you use, it gets compiled down to an Intermediate Language(IL). When... |
Forum: ASP.NET Sep 20th, 2004 |
| Replies: 5 Views: 8,602 Please note that if you want to use good ol' C++, aka without the CLR and completely unmanaged code, make sure that it's a Win32 project under the C++ project types. If it says .Net in it, then the... |
Forum: Community Introductions Sep 20th, 2004 |
| Replies: 612 Views: 123,354 Well hello all! Found a thread on this site that helped me out, so I decided to join up and help someone else out! |
Forum: C++ Sep 20th, 2004 |
| Replies: 4 Views: 1,661 Looks like you did. But that won't compile, you have no ;'s at the end of the lines, and the int variables are declared incorrectly
should be
int toys; toys = 62;
Also you need to have the... |