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 IamaSherpa 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: dds82
  • Order by date
  1. dds82

    Error on shutdown, startup

    I have solved the first 2 problems. However, I still have trouble with #3. Does anybody know if apache -k shutdown still works when Apache runs in console mode, or is the documentation incorrect? Thanks.
  2. dds82

    Error on shutdown, startup

    Hi, I have a few problems with Apache 2.0.47: 1) When I shut it down, sometimes I get a message box that says "Apache.exe has generated errors and will be closed by Windows. You will need to restart the program. An error log is being created." However, it shuts down properly. Why...
  3. dds82

    Upgrade to Tomcat 4.1.24?

    We are considering upgrading from Tomcat 3.3 to 4.1.24. Does anybody know if this would be worthwhile? Thanks.
  4. dds82

    Collapsible Regions

    The demo available at http://www.reportingengines.com/demos/espreaddemo.jsp?ArticleId=3705 shows a spreadsheet that has ranges that can be expanded and collapsed by the user. Unfortunately, they don't tell you how to do that. Does anybody know how I can design a spreadsheet template that...
  5. dds82

    Weird problem with showDocument()

    I specifically don't want to use frames. According to the JavaDocs, the target attribute should use and reuse top-level windows if no frame with the supplied name exists. It doesn't seem to be doing that, though...
  6. dds82

    Weird problem with showDocument()

    I have the following code that runs when the user clicks a button in my Java 2 applet: AppletContext context=getAppletContext(); URL url=new URL("http",hostname,-1,"/path-to/Some.Servlet"); context.showDocument(url,"_summarywindow"); I am trying to get the...
  7. dds82

    "Open" missing from context menu?

    When I right-click on shortcuts, some of them show the "Open" option and some don't. However, they all open what they're supposed to open. Does anybody know what's gone wrong and how I can get my context menus working again? Thanks.
  8. dds82

    Dialog box problme in MFC please help me

    My problem is similar: I have a CFormView-derived view with a tree view on the left and empty space on the right for another CFormView-derived form. How do I display the second form on the right side?
  9. dds82

    Dialog box problme in MFC please help me

    Rick, Would you be able to explain that a little more? Thanks.
  10. dds82

    PCChips motherboards

    Well, after seeing how happy everyone is with Jetway, I've ordered the V266B and an Athlon XP 1700. I'm only going to be running PC100 SDRAM, but this is a low-cost repair job for a P3 450 that blew out 2 weeks ago. The only new components are going to be the board and processor; everything...
  11. dds82

    MFC Message Reflection

    Never mind, found the answer. Override the OnChildNotify function to call the base class's implementation, and then return 0: BOOL CMyEdit::OnChildNotify(UINT message, WPARAM wParam, LPARAM lParam, LRESULT* pLResult) { CEdit::OnChildNotify(message, wParam, lParam, pLResult); return 0; }
  12. dds82

    MFC Message Reflection

    I have a class derived from CEdit that processes its own EN_CHANGE notification. The problem is that this doesn't allow the parent window to receive the EN_CHANGE notification. I need to be able to process this notification both inside the control and inside its parent window. Is there any...
  13. dds82

    Creat DLL File

    You should also remember to export your functions from the DLL and import them into the program that uses the DLL. Generally, this is done using preprocessor definitions in the header file: ---------------------- #ifdef MYDLL_PROJECT // this symbol is defined inside the DLL's project, it...
  14. dds82

    PCChips motherboards

    One last question for paparazi (or anyone else who's worked with the Jetway V266B)... Which Athlon XP processors does it support? Thanks.
  15. dds82

    PCChips motherboards

    Since I need SDRAM support, and ECS/PCChips boards give trouble with that, I'm going to go with paparazi's Jetway/AMD idea (unless anybody can give me a good reason not to... :-]). On that note, is there anything I need to know about AMD processors and power supplies? I've never worked with...
  16. dds82

    PCChips motherboards

    On that note, has anybody worked with ECS boards before? And for gargouille, what do you mean by "Not exactly trouble-free"? Finally, I shouldn't have any trouble using the power supply that powered my P3 system to power an Athlon XP system, should I? Thanks.
  17. dds82

    PCChips motherboards

    I don't need much. I had a P3 450 until about a week ago, when the CPU blew out. The board is so old that for the price of replacing the CPU, I can get a new board/CPU combo. Can anybody recommend some inexpensive solutions? The only requirement is that the board must have 2 SDRAM slots...
  18. dds82

    PCChips motherboards

    Does anybody know anything about motherboards made by PCChips? I found a motherboard/CPU combo really cheap and want to know if the company is reliable before I buy it. Any information is helpful. Thanks.
  19. dds82

    Need Help deleting a binary search tree class

    At the beginning of DeleteTree, you might want to try the line if (Node==NULL) return; This way, the first node that is deleted will trigger the destruction of the entire tree, and subsequent calls made by the destruction of the child nodes will not cause a crash.
  20. dds82

    Accidentally deleted an IDD_DIALOG, how to restore it?

    You don't. You make it again from scratch. However, if you wrote code that powers the dialog, as long as you give the dialog and its controls the same IDs as they had before, the code should still work.

Part and Inventory Search

Back
Top