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!

Recent content by amw1

  1. amw1

    New to PHP - Installation questions

    Hi, New to PHP and would like to learn. Not sure where to start - so much on the PHP website. Looking for download and one website talks about clicking on the "mirror" closest. Can anyone explain? Any info, even if it is only info or lesson learned (e.g. understand installation can be a...
  2. amw1

    RunCode Fails

    Hi, I've inherited an MS access DB (access 2000/SR1) which has a custom toolbar which uses runCode. I'm an Access newbie but very familiar with Excel VBA. Custom toolbar contains: File View Options In design mode, I can look at Macros and I see a FileSelect macro for which the action...
  3. amw1

    End-Statement

    Thanks. That is much clearer. I always use Unload Me and then clean up in the unload event. I didn't even realize you could use End that way and thought maybe I was missing something. I guess I was, but at least I've been doing things correctly. Thanks
  4. amw1

    End-Statement

    I've been searching the internet for a solution to a particular VB problem. Came across a few somewhat heated discussions about use of the "end" statement. Can someone please elaborate?
  5. amw1

    Links from edit menu --> links

    Does your workbook contains charts that might link to external data that has been removed ?
  6. amw1

    Links from edit menu --> links

    I've had this happen in my usually large workbooks. My first step is to look at my defined named range. Go to Insert->Name->Define. Check through those to see if there is a link problem. Shareware tools do exist to remove it if you can't find it. I haven't had the need but you can try...
  7. amw1

    Null Reference

    I'm compiling in .net and I am new to this environment. Though familiar with C++, I would call myself only a small step or 2 above a newbie. Can someone please shine the light on what should be so obvious here? What am I doing wrong? BTW, all the cout is necessary because I am not yet able to...
  8. amw1

    Passing Template as Parameter

    The template is contained within the .h file.
  9. amw1

    Passing Template as Parameter

    Strangely enough, if I move "transpose" to be the first function in the template, I don't get this error. However, I am also getting the same error on: matrix_transposed.setAllElements(0); If I make setAllElements the first element in the class, I don't get this error but I do get the one on...
  10. amw1

    Passing Template as Parameter

    I've got a templated matrix class Matrix< Type, Row, Col> I've got a method void class::perform_calculation( Matrix<int, 5, 4> & matrix ) { Matrix<int, 4, 5> matrix_transposed = matrix.transpose(); ... do other stuff ... } I get a compiler error telling me that transpose is not a...
  11. amw1

    VBA and Clearquest

    This is an an Excel 2000 vba module on an NT machine Dim sessionObj as object set SessionObj = CreateObject("ClearQuest.Session") I get run-time error 429 - activeX error. Anyone have any experience with this?
  12. amw1

    Looking for formula help

    I've got a column of values, primarily sorted but not guarenteed. Column length not static. 165 164 163 163.5 164 I need a formula to find the average difference. I prefer to not do this through vba but will if it is my only option Thanks in advance

Part and Inventory Search

Back
Top