Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by 2016nc

  1. 2016nc

    Want to use my unix box to access the web from other box over the web

    Ok, I do not even know what is in the realm of possibilities here, so even if you could point me in the right direction so I could figure it out from there it would be greatly appreciated. Here is my objective: To use an IP (which I own) to obtain full access to web from a system which has...
  2. 2016nc

    Trying to upload pictures to my celll via my palm ir port

    is there any way to upload pictures to my celll via my palm ir port? it is a nokia 7210 and I have apalm m125. I don't have an SD card so I havent figured out how to get the pics on the phone without having a program that makes them a .prc or .pdb. So, of course, when I try to beam that over...
  3. 2016nc

    How do I change a programs priority?

    Changing the thread priority worked!!! I bumped my program down to idle and viola. Thanks guys. Here is a little more about my program to clear some things up if you are interested. My program doesn't have focus, so windows doesn't send it a WM_KEYDOWN message or anything. So, I set up a...
  4. 2016nc

    How do I change a programs priority?

    Oh I am writing in C++
  5. 2016nc

    How do I change a programs priority?

    I made a program to check the state of a key and writes a file based on the last time the key was pressed. I am doing to help me time events in a game. So both this program and the game will be running at the same time. The problem is this simple program strives to take up 100% of the...
  6. 2016nc

    Need a 'configured' kernel to compile my drivers...

    Well, it is a wmp11 by linksys. In my /usr/src directory there is nothing but empty directories (using 'ls -al *' to see) the directories are like 486, 586, amd stuff like that. No regular files though :/ If by 'machine' you mean a specific hardware configuration then No this machine was not...
  7. 2016nc

    Can anybody tell me where I could f

    Hey pasammon, One thing I enjoyed going through was the source code for quake3. What is available is not terribly complex, but atleast it is professional. I went through it to try and give myself an idea of what a company might expect. The name of the installer for the source code is...
  8. 2016nc

    visual c++ calculator - you like a challenge?

    I like how it messed up that one link, here is the unmessed up vcersion of that link http://www.calculator.org/rpn.html
  9. 2016nc

    visual c++ calculator - you like a challenge?

    BoulderBum and bakermunch, I believe the implementation you are talking about is called 'reverse polish notation' used for its simplicity to program and named after its polish inventor http://www.calculator.org/rpn.html I searched the net for some source code, the first one I found was in Java...
  10. 2016nc

    Needing a little help with simple functions

    2 questions -- where is infile declared (and outfile for that matter) and why is main a float? dude, I am sleepy, so I cant read others code without getting a headache -- but, here are some general tips: Make a smaller program one that just reads the input of your input file and prints it to...
  11. 2016nc

    ANSI C functions on unix not working/recognized

    Well, in any case I would like to know the answer as well, but here is what little I have to offer... What libraries are you including? on my system anyways... #include <cmath> (math.h with std namespace) has the ceil() and floor() functions #include <cstdlib> (stdlib.h with std namespace)...
  12. 2016nc

    Beginner prog help....

    there are ways to calculate what day of the week it is by the date http://www.oakland.edu/~grossman/MTE210/ass1.fa02.html you could use that then plug in the 13th of every month of a given year and see how many you have -- altenatively you could call the calendar function via a system call...
  13. 2016nc

    Round function ?

    Well, besides bad grammer, this will do your rounding. :P
  14. 2016nc

    Round function ?

    #include <cmath> #include <iostream> using namespace std; void main(){ float num = 0; while (true){//CTRL + C to quit cin>>num; cout<<&quot;num rounded down to nearest integer &quot;<<floor(num)<<endl; cout<<&quot;num rounded up to nearest integer &quot;<<ceil(num)<<endl...
  15. 2016nc

    Executing Program In Unix From VC++

    Perhaps you could make a simple socket program thats sits and waits on your unix box for a certain transmission and then executes a certain command. I would just advise that you dont make you program to open to suggestion lest someone take advantage of it.

Part and Inventory Search

Back
Top