-
Replied To a Post in [win32] - about joystick
If I am reading the docs right, the POV field represents the hat control, if present. The U, V, and R represent additional axes for the joystick, if the joystick … -
Replied To a Post in help
Just to be clear, do you mean [this](https://manomachine.codeplex.com/)? **EDIT**: Looking around the web a bit more, I see that there are several simulators for the Mano machine design. Can you … -
Began Watching help
We received a project to make calculator in assemly I want to check the result of the numbers actually in the range. that I don't have pverflow or undeflow. But … -
Replied To a Post in help
Could you tell us what system this assembly code is for? Unlike high-level languages, every type of computer has it's own specific assembly language, so we would have to know … -
Began Watching how to delay time in c++ linux
the title says it all i,ve been trying functions like sleep usleep and delay all of them dont work -
Replied To a Post in how to delay time in c++ linux
What exactly happened when you tried to use them? Can you explain what it is you are trying to accomplish, and why? How long (or short) a delay do you … -
Began Watching error BGI graphics not supported under Windows
i got a project in c++ and want to make graph and shaps in c++ but i got this error i am using borland 5.02 if any one knows this … -
Replied To a Post in error BGI graphics not supported under Windows
Depending on the version of Windows you are using, this most likely isn't going to be possible. Windows Vista and later do not support 16-bit legacy code except through virtualization … -
Began Watching program
need help for my assignment im a IT student. -
Replied To a Post in program
As Hiroshe said, this isn't anywhere near enough information to start helping you. You'll need to not only explain the assignment, but also show us what you have tried to … -
Began Watching compiler
after compiling,when i run program my 'FTN 95\PLATO' recently showing me black DOS box,only reading "PREES 'RETURN' to cotinue" without executing the program. could u say why is this happening … -
Replied To a Post in compiler
Ah, OK, that's important information we will need in order to give an answer; however, this forum is specific to the C++ language, not FORTRAN, which would be discussed in … -
Began Watching using class object in different project
So I've built a Queue data sructure(all the needed methods) and I just wanted to know how can I use my Queue objects in different project ? -
Replied To a Post in using class object in different project
OK, the answer depends on just what it is you need help with, separating your classes, or managing the project. The second would depend on your development environment, but first … -
Marked Solved Status for [Scheme, (define-syntax)] problem with a macro expanding to unquoted values
**note:** This was also posted to the [comp.lang.scheme](https://groups.google.com/forum/#!forum/comp.lang.scheme) earlier today. I normally wouldn't cross-post, but after I noticed the extremely low traffic on the newsgroup, I decided to try a … -
Replied To a Post in [Scheme, (define-syntax)] problem with a macro expanding to unquoted values
With the help of godek at comp.lanf.scheme (which wasn't so dead as it seemed), I was able to get a working and vastly simpler macro written. For the record, the … -
Replied To a Post in [Scheme, (define-syntax)] problem with a macro expanding to unquoted values
The test code is: (define-field-pattern foo (width 3) ((bar => 2))) (display foo) (newline) This should have printed the line shown above; the actual result was the following error message: … -
Edited [Scheme, (define-syntax)] problem with a macro expanding to unquoted values
**note:** This was also posted to the [comp.lang.scheme](https://groups.google.com/forum/#!forum/comp.lang.scheme) earlier today. I normally wouldn't cross-post, but after I noticed the extremely low traffic on the newsgroup, I decided to try a … -
Edited [Scheme, (define-syntax)] problem with a macro expanding to unquoted values
**note:** This was also posted to the [comp.lang.scheme](https://groups.google.com/forum/#!forum/comp.lang.scheme) earlier today. I normally wouldn't cross-post, but after I noticed the extremely low traffic on the newsgroup, I decided to try a … -
Edited [Scheme, (define-syntax)] problem with a macro expanding to unquoted values
**note:** This was also posted to the [comp.lang.scheme](https://groups.google.com/forum/#!forum/comp.lang.scheme) earlier today. I normally wouldn't cross-post, but after I noticed the extremely low traffic on the newsgroup, I decided to try a … -
Edited [Scheme, (define-syntax)] problem with a macro expanding to unquoted values
**note:** This was also posted to the [comp.lang.scheme](https://groups.google.com/forum/#!forum/comp.lang.scheme) earlier today. I normally wouldn't cross-post, but after I noticed the extremely low traffic on the newsgroup, I decided to try a … -
Edited [Scheme, (define-syntax)] problem with a macro expanding to unquoted values
**note:** This was also posted to the [comp.lang.scheme](https://groups.google.com/forum/#!forum/comp.lang.scheme) earlier today. I normally wouldn't cross-post, but after I noticed the extremely low traffic on the newsgroup, I decided to try a … -
Edited [Scheme, (define-syntax)] problem with a macro expanding to unquoted values
**note:** This was also posted to the [comp.lang.scheme](https://groups.google.com/forum/#!forum/comp.lang.scheme) earlier today. I normally wouldn't cross-post, but after I noticed the extremely low traffic on the newsgroup, I decided to try a … -
Edited [Scheme, (define-syntax)] problem with a macro expanding to unquoted values
**note:** This was also posted to the [comp.lang.scheme](https://groups.google.com/forum/#!forum/comp.lang.scheme) earlier today. I normally wouldn't cross-post, but after I noticed the extremely low traffic on the newsgroup, I decided to try a … -
Edited [Scheme, (define-syntax)] problem with a macro expanding to unquoted values
**note:** This was also posted to the [comp.lang.scheme](https://groups.google.com/forum/#!forum/comp.lang.scheme) earlier today. I normally wouldn't cross-post, but after I noticed the extremely low traffic on the newsgroup, I decided to try a … -
Edited [Scheme, (define-syntax)] problem with a macro expanding to unquoted values
**note:** This was also posted to the [comp.lang.scheme](https://groups.google.com/forum/#!forum/comp.lang.scheme) earlier today. I normally wouldn't cross-post, but after I noticed the extremely low traffic on the newsgroup, I decided to try a … -
Created [Scheme, (define-syntax)] problem with a macro expanding to unquoted values
**note:** This was also posted to the [comp.lang.scheme](https://groups.google.com/forum/#!forum/comp.lang.scheme) earlier today. I normally wouldn't cross-post, but after I noticed the extremely low traffic on the newsgroup, I decided to try a … -
Began Watching [Scheme, (define-syntax)] problem with a macro expanding to unquoted values
**note:** This was also posted to the [comp.lang.scheme](https://groups.google.com/forum/#!forum/comp.lang.scheme) earlier today. I normally wouldn't cross-post, but after I noticed the extremely low traffic on the newsgroup, I decided to try a … -
Began Watching Passing the control back to the start of the if condition
Hi all Here is my snippet for(int i = 1;;i++){ System.out.println("Please enter the name:"); name = input.nextLine(); System.out.println("Please enter the email:"); email = input.nextLine(); if(!email.matches(EMAIL_PATTERN)){ System.out.println("Please enter a valid email.\nThe … -
Replied To a Post in Passing the control back to the start of the if condition
Put a `while()` loop around it. -
Began Watching Related to glade software
Hi Dani I am trying to develop a case study in c languade for addressbook.Is glade a turbo c accepted GUI. If so how can I link c program functions, … -
Replied To a Post in Related to glade software
I would be amazed if anything written in this millenium that wasn't specifically written in Turbo C would be compatible with TC. It is an MS-DOS compiler that is more … -
Began Watching MFC and C++
Hi,can anyone help me how to start programming With MFC C++ ? and what's the best learning source for it? and is it good to learn that ? i am … -
Replied To a Post in MFC and C++
I doubt that MFC would be a wise choice. For better or for worse, it has largely been abandoned by Microsoft in favor of .NET, and while it is unlikely … -
Began Watching converting dwcimal to binary using 8086 assembly language
please can you give me a exact code for converting decimal to binary using 8086 assembly language; -
Replied To a Post in converting dwcimal to binary using 8086 assembly language
**boxes2:** You should be made aware that this message board doesn't not work like IM, IRC, or Twitter. Repeatedly posting the same message over and over again is counter-productive, as … -
Began Watching converting hexa to binary using 8086 assembly language
please can you give a code for converting hexa to binary using 8086 assembly language -
Replied To a Post in converting hexa to binary using 8086 assembly language
**boxes2:** Please read the [Forum Rules](http://www.daniweb.com/community/rules) and follow the required rules; in particular, be aware that we are not going to do your work for you, and that if you … -
Began Watching Is there really any use for learning C++?
I'm required to learn it for a degree. I already know a bit of Java. But I'm just kind of wondering if it's a waste of time or not. -
Replied To a Post in Is there really any use for learning C++?
While I would not say you *need* to know C++ to be a successful programmer, you will not regret learning it, if only because it would give you a better … -
Began Watching What is the whole purpose of Assembly?
I Assembly even worth learning if your not going to be developing the root of an os? I've considered it but it just seems worthless. -
Replied To a Post in What is the whole purpose of Assembly?
A lot of the answer to this is a matter of perspective, to be honest. In the end, all programs come down to machine code, and assembly language is a … -
Began Watching Question about microcode and machine code
1. An assembly instrction is converted into binary, also known as the machine code by the assembler. And it contains only 0s and 1s yes /no? 2. Then, the microcode … -
Replied To a Post in Question about microcode and machine code
At the risk of some minor thread necromancy, I would also mention that one of principles of RISC is that all (or almost all) of the instructions be simple enough … -
Began Watching micro
what is micro in c programming. -
Replied To a Post in micro
> what is micro in c programming. I believe the term you are going for is *macro*, not micro. A macro is a piece of code that gets replaced by … -
Began Watching polymorephim
what's difference b/t polymorphism andinheritance -
Replied To a Post in polymorephim
In OOP terminology, polymorphism is the ability for sub-classes to extend or even change the behavior they inherit from their parent classes. For example, if you have a class Animal, … -
Began Watching Many classes calculate a final grade by using a weighted scoring system.
<Simple copy of teacher's homwork specification deleted by Forum Moderator> -
Replied To a Post in Many classes calculate a final grade by using a weighted scoring system.
I doubt anyone here is laughing but you. What Rubberman said was serious - deadly serious. No one here is going to do your homework for you, and asking for …
The End.