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 Chriss Miller 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: Nosferatu
  • Content: Threads
  • Order by date
  1. Nosferatu

    Deadlock On Same Mutex

    Hello... I am using a mutex synch mechanism in an multi-threaded environmnet (apache). When I got several of the threads working - note that Apache choses the threads to be runned from a thread pool - the system gets into a deadlock and all the threads are waiting on the same mutex, without...
  2. Nosferatu

    Dissapearing bitmaps from CImageList

    Hello... I am having a bit of trouble with some dissapearing bitmaps in my GUI. Most of the controls in the application share the same image list, loaded from the resources as the application starts. At some point, when I do some stuff with a Database in a dialog, the icons start to dissapear...
  3. Nosferatu

    Shared memory using plain C in Windows

    Is there any way to make use of shared memory in Windows, using C functions? I am looking for some equivalents of the Unixes shm_xxxx functions... Thanks. Nosferatu We are what we eat... There's no such thing as free meal... once stated: methane@personal.ro
  4. Nosferatu

    No error, empty file sent to client

    Hello all... [Apache 2.0.43, winXP] I have a problem I can't solve for a couple of hours now. When trying to access a file in the document directory tree, I get always an empty file, with no content in my browser. The directory configuration is pristine: <Directory /> Allow from my_ip #(or...
  5. Nosferatu

    Fonts display and print size

    Hello... I know there is a very simple solution to this (did this before, on X-Windows), but I can't find it, so any help is greatly appreciated. I am doing a report display/print hierarchy and I am using some fixed sized fonts. The reports are drawn on a DC, be it a button or a printer...
  6. Nosferatu

    CDaoDatabase Huge Trouble

    Hello... First of all, I am not sure if this is not a FAQ, but even if it is, please bare with me. I have little experience with database code and I can't figure out why the database I am constructing is getting so darn huge. I use CDaoDatabase to manipulate the data and SQL queries to add...
  7. Nosferatu

    Twilight zone... if (s) same as if (!s)!!!???!!!???

    I am building a C library and I experience some awfully weird problems on the testing program... I have an if () test and the program gets through no matter what the condition is. below is the code: s = ExistElementInCollection(col,id); if (s) return false; Well, by stepping through the...
  8. Nosferatu

    Redundant if statements

    Hello all... I have this concern about redundant if statements. I am coding a highly modularized C project and, of course, I want to get the best performance around. As I know, the advantages of pipelining in processors are diminished by using an large number of conditional statements which...
  9. Nosferatu

    freeze to death...

    Hello... I have this mind boggling problem with my desktop... It just freezes... to death... nothing moves anymore... the mouse is stuck to the screen and the keyboard light-less. I have absolutely no idea what is causing this, as no new hardware has been added and the boot memory test (512...
  10. Nosferatu

    Timers with no-MFC classes

    Hello.... I'm in a weird situation here: I need a timer for a Non-MFC class and I am not sure how to handle it. The weirdness of the situation consists actually in the weirdness of the solution I developed so far, so I wonder if there is a better way to do it: I am declaring inside the non-mfc...
  11. Nosferatu

    ASSERT(ContinueModal())

    Hello... I wonder if anybody can help me on this one... I am creating a fancy tree control, like the one used in property pages in win2000 and XP - click on a tree leaf and a combo box displays, for example. First of all, I know I might be reinventing the wheel here, but I really can't tell...
  12. Nosferatu

    Hide restore box on MDI

    Hy! Is there a way to hide the restore box on a MDI window? I can disable the minimize button, but I want to prohibit the users from using the restore button. The MDI client is actually a CFormView which gets maximized on Display and I don't want to be restored to its original dimensions...
  13. Nosferatu

    Disabling XSLT default output

    Hello... I am desperately trying this for a few days now (in 2-3 hour reprises :-)) within my stylesheet there are several templates that take care of specific data. Since the structure of the XML is extremely complicated - recursive, 14 choices or so... I just want my templates to do their...
  14. Nosferatu

    Nesting Output

    Everybody... Do you know someone that knows someone :-)... that knows how to dynamically add indentation using XSLT, to obtain a nesting similar to the one in the XML view of explorer (without the + signs and stuff). Is there a function for retrieving the current depth of a node? Thanks...
  15. Nosferatu

    Headaches with large base 11 numbers

    Hey... Can anybody give me some clues on how to deal efficiently with extremely large numbers? I have to convert these huge base11 numbers (64 digits) to base36 numbers and my mind is starting to self-destruct. Does anybody have some ideas in this area? First of all, I don't know how to...
  16. Nosferatu

    Display attributes with XSL

    Hello... I really never got into XSLT until now and I am having some problems finding the right way to do this: what I need is to display for each element that has certain attributes its value, along with the attributes. For example, for <n1 attr1=&quot;at1&quot; attr2 = &quot;at2&quot;>...
  17. Nosferatu

    Stoping SMB server on NT/2000 server

    Are there any implications on doing so? We are planning to build our own SMB/CIFS server which should run on an NT/2000 server. What other services are going to be affected by that? Thanks. Nosferatu We are what we eat... There's no such thing as free meal... once stated: methane@personal.ro
  18. Nosferatu

    Disabling SMB

    Hello! I would like to know if there is a way to disable the SMB service on an NT/2000/XP server? What I want to do is to disable the service and use my own to implement some very basic file manipulations. Can anybody give me a clue on this? Also, another question is related to the HTTP and...
  19. Nosferatu

    HTTP and SMB

    First of all, I was not sure in which forum should I post this, so here I am. My question is related to the HTTP and SMB protocols and it is very simple: Do theSE protocols communicate? That is, do SMB shares are avaiable over the HTTP? If yes, how and at which level? Is a SMB share...
  20. Nosferatu

    HTTP and SMB

    First of all, I was not sure in which forum should I post this, so here I am. My question is related to the HTTP and SMB protocols and it is very simple: Do the protocols communicate? That is, do SMB shares are avaiable over the HTTP? If yes, how and at which level? Is a SMB share transformed...

Part and Inventory Search

Back
Top