Hello, I am trying to find a loan calculator / amortization schedule tool. I need to look at a loan with interest compounded daily, where the principal is paid before the interest. This does not fit the standard home/auto loan calculators floating around the web. Anyone know of any tools floating around to do this? TIA!!! NCW
nw60312
Posts
-
Loan Calculator -
ATX CasesLooks big to be standard ATX motherboard, are you sure it's not EATX?
-
HTML parsing...Hello - I need to do some HTML parsing in a service. Does anyone know if the WebBrowser control is safe for this, i.e. doesn't throw up any dialogs? I interested in the DOM methods for parsing the HTML structure out. Anyone have some alternate suggestions for doing this? Thanks! Nate
-
ATL Server include issue....Hello, Here is the problem I have run into. I have an Atl Server Web App that is structured like the following: \bin (dll's) \include (common srf that get included) \secure (srf pages that need to be under SSL, also needs access to inlcudes) *.srf general srf pages that need access to the includes Here is the problem, when one of the general srf files uses an include the path for the include internal handler is \bin\something.dll. The path used for the include is relative to the file that included it, not the include itself. Now when one of the secure pages includes the same file the handler path to the dll is wrong, it tries to load the library from ...secure\bin\something.dll. This causes an issue, if the handler paths were relative to the actual file being rendered all would be well. Has anybody run accross this before and have any suggestions? Seems like the alternative is assign SSL access on a file by file basis? Other than this issue ATL server seems like a slick framework! Thanks for any suggestions!
-
How do I print a MsChart control ?I did this awhile back. I tried the grab the DC approach and had limited success. I ended up using the clipboard approach, the control copies a WMF image to the clipboard. I really disliked this approach but it seemed to be the prescribed approach. If you want send me an e-mail to nwilhelmi@attbi.com and I can send you some code when I get home. The app was done with WTL so it will be WIN32api based and not MFC based. NW
-
Stupid Task List....Does anybody know of how to completely turn off the task list thing in VC++.NET? I thought I had set all the VC 6 compatibility, but everytime I hit F4 in the output window it opens the task list. :( TIA!
-
Redefining ATLASSERTThanks! However, I have been using debug builds and switching between a GUI app so I can step through code and the ASP pages. I missed redefining if after the header, I was trying to do it before the include. That redifined the macro however I am still getting assertion dialogs somewhere. Do you guys know off the top of you head any other assert macros that would get called from the ATL internals? Thanks again!
-
Redefining ATLASSERTI am working on some ATL objects that are called from an ASP page. Is there anyway to redefine ATLASSERT to do something else or nothing so it doesn't hang the server when it throws the dialog box? TIA!
-
Printing metafileI need to print a metafile to a specified rectangle on the printer DC. I am using the PlayEnhMetaFile(...) function to paint the metafile to the DC. This works except the RECT passed into the API call is in logical units (I believe) and the printer DC is something else. How do I get one or the other into the same coordinate system? TIA!