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 bkrike 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: *

  1. weevilofdoom

    Enumerate Dialup/Network adapters

    In C++, what do you think is the best way to get a 'list' of all installed network/dialup adapters. Is there an API call that I'm missing to do this? I just want to get a list of adapters, so I can find the 'selected' one in the registry. Just wondering if there's an easy way to do it, or if...
  2. weevilofdoom

    CreateMDIWindow question...

    I was wondering, with CreateMDIWindow, you can specify a thread to execute the MDI Window code, well, I was wondering if you can create each window using the same thread code, without re-doing the code over and over, and still have each MDI Window on its own thread? Or do you need a separate...
  3. weevilofdoom

    A question about Asus A7N8X-E Deluxe

    I'm interested in purchasing said motherboard in topic, and I heard that fitting a Zalman CNPS7000A/B HSF is a tight fit with some PSU's. However, I am pretty set on this HSF and Motherboard combination, so I was wondering if anybody has had trouble fitting these together.... and if so, how did...
  4. weevilofdoom

    Computer Randomly Reboots...

    Every so often, my computer just decides to reboot, and when Windows XP pops back up, it says a driver has caused a problem, and windows has recovered from a serious error. Well, I'm not really sure how to figure out which driver is causing the problem, or if there is a way. At the moment, my...
  5. weevilofdoom

    trouble with slackware 9.1 and framebuffer ??

    OK! I recompiled my kernel after install, and my framebuffer doesn't work anymore, it is perplexing. in my lilo.conf file i have vga=773 (which i believe is 1024x768x256 ?) and my video card is a matrox millennium PCI variant, but I do know it supports this resolution, because i ran it just...
  6. weevilofdoom

    Can't get standard images to appear on toolbar?

    Trying to just setup a few standard toolbar items in my app, got my array of TBBUTTON TBBUTTON tbb[] = { STD_DELETE, 1, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, 0, 0, 0, STD_PRINT, 2, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, 0, 0, 0, STD_HELP, 3, TBSTATE_ENABLED, TBSTYLE_BUTTON, 0, 0, 0, 0...
  7. weevilofdoom

    Very odd ethernet problem?

    Well, my ethernet card seems to be acting strangely. I can ping IP addresses, I can see SMB shares, as well as sharing stuff myself, but when I try to telnet or ftp a host, I can't, gives me something about "socket" errors. I have checked my DNS servers, and they are OK, so I am kind...
  8. weevilofdoom

    Having trouble with keyboard interrupts and a custom ISR (sort of )

    I've written an ISR type program that is supposed to detect when the escape key is pressed, and output a message, it uses chaining to go to the original ISR if escape is not pressed. When I type, it outputs normally to the screen, but when I hit escape, it outputs that stupid little arrow...
  9. weevilofdoom

    Not C++,but couldn't find a C forum ;)

    how would one check for an empty file in C? The file exists, but it has no data in it, so when I try to read from the file, boom, you know? ;) And I don't want to stick data in the file, I want to be able to check for empty files. The weevil of doooooooooom -The eagle may soar, but the weasel...
  10. weevilofdoom

    AAA Ascii adjust after addition instruction

    How would one say use this function to add say 10 ascii "numbers" together? (I'm assuming that you don't have to do any conversions of the numbers, just get them from the keyboard, but I can't get this to work, is there some sort of loop? I am boggled) The weevil of doooooooooom -The...
  11. weevilofdoom

    Multiplication by Addition (using shifts)

    I've got two numbers numOne WORD 666 numTwo WORD 34 I've converted inputted numbers (ascii) to binary, and stored them in these two "variables" I need to multiply these by adding, and shifting, but I don't know where to start or how to do this? any help would be appreciated The weevil...
  12. weevilofdoom

    Trouble with templates!!

    I've created a stack (LIFO), and on the "pop" function, it complains about incompatible types, yet it's templated, so there shouldn't be any issue. It is based off of a templated array class. It is boggling to say the least. Here's a snip of my Stack class: #include...
  13. weevilofdoom

    Recommended temperature for athlon XP cpu's?

    Well, I've got an Athlon XP 2000+, and it seems to be running pretty hot (for my standards), I was wondering what if any are the recommended temperatures for the cpu. It runs (idle) 43C, and under Load anywhere from 49C - 52C (eek!) I've got a coolermaster copper heatsink with heatpipe...
  14. weevilofdoom

    Doubly Linked List class - InsertAfter method

    well, I've got this generic doubly linked list written, all except for the InsertAfter method, this seems to be giving me some trouble. Anyways, I think I'll share what I've got, and if anybody has any input, please please please help. What I'm doing here is inserting a node after the node...

Part and Inventory Search

Back
Top