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

  • Users: dds82
  • Content: Threads
  • Order by date
  1. 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...
  2. 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.
  3. 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...
  4. 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...
  5. 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.
  6. 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...
  7. 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.
  8. dds82

    Where am I?

    Does anybody know how to get the absolute path to the current directory using ASP? Thanks.
  9. dds82

    enum or const int: which is better?

    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...
  10. dds82

    Min/Max query

    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.
  11. dds82

    Default parameter acting weird

    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...
  12. dds82

    Mapped drives

    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.
  13. dds82

    Window caption height

    How can I find out how many pixels the title bar of a window takes up? Thanks.
  14. dds82

    Union Query Help

    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...
  15. dds82

    Detect if a menu is open

    Does anybody know how to detect if my window's menu is currently dropped down? Thanks.
  16. dds82

    Works in debug, crashes in release...?

    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.
  17. dds82

    Modeless wizards?

    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.
  18. dds82

    Get rid of taskbar entry

    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.
  19. dds82

    ADO/Excel question

    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 *...
  20. dds82

    Printing--how many lines on a page?

    I'm trying to print something. How do I calculate the number of lines that fit on a page? Thanks.

Part and Inventory Search

Back
Top