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.
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...
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...
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...
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...
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.
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?
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...
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;
}
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...
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...
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...
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.
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...
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.
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.
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.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.