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 neos

  1. neos

    sound card not working with slackware 9.1

    I just installed slakware 9.1 and it kicks ass, likin it alot better than rh. But I can't get my sound card to work. Anyone else using slack had this problem? I have an integrated Intel audio card on my machine I think. Anyone know what the modprobe line would be? My card did work with rh so I...
  2. neos

    importing my own class, I get an error

    I did that, but now I get the error D:\src\Face\Main.java:3: package Face does not exist import Face.*; ^ 1 error The Face.class file is there though. shaun
  3. neos

    importing my own class, I get an error

    I have written a class called Face and it compiled correctly. But I can't import it correctly. Both files are in the same directory. import Face; // thats how I import it and theres the error below... D:\src\Face\Main.java:3: '.' expected import Face; ^ 1 error Any suggestions...
  4. neos

    use of malloc()

    Thanks for your help guys. -obislavu-: I was not sure why I had to put the if(ptr) { free ptr; } into the code. I would only free that allocated memory if I wasn't going to use the array later, right? shaun
  5. neos

    use of malloc()

    I am new to C. I am trying to get an understanding of the malloc function for creating variables while the program is running. The program I wrote below, I don't know if it works or not, is the new variable (array in this case)being created? #include <stdio.h> void create_array() { int i...
  6. neos

    my bootstrap, whats wrong

    I'm a newbie to assembly, bare with me. I'm using nasm. I wrote this small bootloader, but when it loaded up the string didn't print out, and I just got alot of colours on the screen. bits 16 org 0 jmp start start: mov si, os_nam call print print: mov ah, 0 int 10 os_nam db 'shauns...
  7. neos

    Are visual c++ .net executables real?

    http://www.bloodshed.net/dev/devcpp.html if your interested. And thanx for your help shaun
  8. neos

    Are visual c++ .net executables real?

    Yep, thanx. Would you know how Bloodshed's Dev-C++ IDE with the mingw compiler system compare to Visual C++? Is either better? shaun
  9. neos

    Are visual c++ .net executables real?

    I am thinking of getting Visual C++ 2003 when it comes out, but I've heard some talk about how anything produced from visual studio aren't real PE exe's, that they have .net code all embeded. Is that true? Do Visual c++' exe's require the .net runtime also? shaun
  10. neos

    type conversion from char** argv

    I have this code, it finds x ^ y. I want to pass two floating point vars at the command line, so I used char** argv and then tried to convert the argv[1] and argv[2] to a float, but I get the error &quot;pointer value used where a floating point value was expected.&quot; how do i convert...
  11. neos

    how do I access the printer?

    How do I access the printer (parrellel port) in c++? I've tried searching the internet, but I can't find any tutorials. shaun
  12. neos

    setting up mingw32

    I download the mingw packages, (the core distro, binutils, make, and the runtime) and extracted them to d:\mingw32\ Now where I tried to compile a simple hello world program it test it out I got an error about now being able to find -luser32 I believe. So, what Im asking is do I have to set...
  13. neos

    custom icon for my program

    I use dev-cpp, how can I give my console programs their own icon? (ie - so its not the default console icon the user clicks on.) shaun
  14. neos

    dev-c++, and icons

    How can I make my program use a custom icon in Dev-C++? A console, and win32 program. shaun
  15. neos

    win32 skinning tutorials?

    Where can I find tutorials on skinning win32 api apps? (ie winamp) shaun

Part and Inventory Search

Back
Top