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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: neos
  • Content: Threads
  • Order by date
  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 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...
  3. 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...
  4. 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...
  5. 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
  6. 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...
  7. 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
  8. 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...
  9. 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
  10. neos

    dev-c++, and icons

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

    win32 skinning tutorials?

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

    using platform sdk with .net sdk

    Anyone know how I can configure cl.exe from the .net sdk to find the includes headers from the platform sdk? I cant compile anything right now? :( shaun
  13. neos

    developing compression algorithm

    Hey, Anyone know how to go about developing a compression algorithm? I would like to know where to start. Any suggestions please. shaun
  14. neos

    mounting win98 hd

    hello, Im running rh linux 7.2 on my primary hard disk, then on my second hd I am running windows 98. I have huge amounts of mp3's I want to transfer over, and I am having some problems mounting the win98 disk. I tried this command mount -t vfat /dev/hdb1 /mnt/windows/ but I get the error...
  15. neos

    dual booting winxp, rh linux7.2

    hello, i need to know how to dual boot winxp pro, and redhat linux 7.2. Can I use GRUB to boot them all because I am writing my own operating system, and havnt got to the bootstrap yet. Which do I install first? GRUB, xp, linux? Ive heard the winnt bootloader is very fussy about other...
  16. neos

    dual booting winxp, rh linux7.2

    hello, i need to know how to dual boot winxp pro, and redhat linux 7.2. Can I use GRUB to boot them all because I am writing my own operating system, and havnt got to the bootstrap yet. Which do I install first? GRUB, xp, linux? Ive heard the winnt bootloader is very fussy about other...
  17. neos

    what wrong with this code?

    hey, ive just started programming in c++, please go easy on me. ive tried to write a short calculator program, its just a simple console program, but im getting this error. im compiling with borland 5.5 using &quot;bcc32 calc.cpp&quot; #include <iostream> using namespace std; void...
  18. neos

    removing gmc!

    hey, i just upgraded to ximian gnome 1.4, and im using nautilus as my desktop manager. how do i get rid of gmc for good? i want no trace of it left!
  19. neos

    writing over mbr

    hey, i have a school project to do. i have to write a bootsector that restarts the computer. i got that done, using nasm, but now i need some way to write the bootsector to the mbr. so instead of the computer booting into windows, my bootsec gets loaded. Can someone show me how this might be...
  20. neos

    deleting old packages

    hey, ive downloaded ximian gnome 1.4 onto a cd, and i am installing it locally. I am running RedHat Linux 7.1. During the installation i get errors in the terminal window saying something like &quot;error: unable to recursively delete directory, contains files&quot;, or something like that...

Part and Inventory Search

Back
Top