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 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.
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...
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.
If I have a number of variables that are not going to change, is it better to declare them like this
enum EnumName {
var1=1,
var2,
var3
};
or like this?
const int var1=1;
const int var2=2;
const int var3=3;
Are there any differences/optimizations that would make one...
I have a table whose only input is going to be dates. Is there a way to find out the earliest and latest dates in the entire table, not just in a single column?
Thanks.
I have a function that I declared like this in the header file:
CString func(const SomeClass &x, bool y=true);
and the compiler gives me error C2572 ("Redefinition of default parameter") on this line in the header file, not the C++ source file. However, when I change the line to...
If I have a complete path name to a network shared folder (like \\computer\folder), can I find out if the current user has that folder mapped to a drive?
Thanks.
I have six queries. I need to join their results into one query, which I did with a union query like this:
select * from query1
union all
select * from query2
union all
select * from query3
etc.
The union query works fine, but my problem is this:
The order of the records is important. What...
I have a program that works fine in the debug build, but crashes in the release build. Does anybody know common problems that would cause this?
Thanks.
I have a wizard that works fine when I call DoModal(). But when I try to use Create() instead, the cancel button does nothing and the finish button causes a crash. Is there anything special I need to handle in order to make a modeless wizard?
Thanks.
I have a program that creates a window. This window has a button on the taskbar (nothing unusual about that). How do I get rid of the window's taskbar button?
Thanks.
I'm using ADO objects to query an Excel spreadsheet. As part of this project, I need to get a list of all the column names except the first in a certain sheet. I do that by executing a "Select * from [the_worksheet$]" and the following code:
Set rs=myConn.Execute("Select *...
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.