• WSPeterNRoth

    WSPeterNRoth

    @wspeternroth

    Viewing 15 replies - 46 through 60 (of 456 total)
    Author
    Replies
    • in reply to: ASP to calculate sum of records #678875

      AHA! clapping

      Changing the “Group By” to “Expression” in my In Access “query builder” saves 2 steps in my 3-step process!

      Thanks Marks – you both taught me something! I can throw even MORE code away smile

    • in reply to: Test for empty field (AXP (2002) SP-1) #678871

      hunh! I would’ve expected you [of all people!] to have an Access solution to this “problem” grin

    • in reply to: Test for empty field (AXP (2002) SP-1) #678765

      FWIW, i’ve found Excel useful as a tool to develop complex queries. Expression 1 in column C, expression 2 in D, etc. Then I combine them such that I have one stmt that gives the same answer as the series of simpler stmts. Unfortunately, I havent found a way to adequately document what winds up in the app…

    • in reply to: ASP to calculate sum of records #678761

      Hey MarkJ ~ I tried the “more direct” method, using ID, Year, and Month as Select fields (because there are criteria on them), with SumOF the other fields, and i always wind up with distinct records for each year and month. I’ll go back and look at my SQL again, perhaps I can simplify what I’m doing…

    • in reply to: ASP to calculate sum of records #678441

      What I’ve been doing is a three-step process:
      1. Use a Make Table Query to create a table with the appropriate fields
      2. Query the table using the SQL aggregate functions (Sum, Avg, etc)
      3. After all the data are presented, I run a Drop Table query.

    • in reply to: Visual SourceSafe w/ FP? (all) #675490

      Gaak! check this out ~ it makes VSS useless IMO. [indent]


      All Visual SourceSafe operations are performed by FrontPage Server Extensions on the Web server itself, not client machines.


      [/indent] Thanks, Jefferson!

    • in reply to: Visual SourceSafe w/ FP? (all) #675408

      I appreciate the fact that I am not alone smile Here’s a quote from the FP “help” [indent]


      For information about how to integrate Visual SourceSafe with FrontPage, see the Microsoft Office XP Resource Kit.


      [/indent] The RK is a book+CD for sale by MS. I checked the contents online, no reference to this “problem”. shrug

    • in reply to: Save As ASP – getting the file name (2002) #673917

      After some trial and error, something that sorta works…

              Dim name as String
              For Each myPageWindow In ActiveWebWindow.PageWindows
                  myPageWindow.Activate
                  If myPageWindow.IsDirty Then
                      name = myPageWindow.Document.Title & ".asp"
                      myPageWindow.SaveAs name
                  End If
              Next
      
    • in reply to: Bubble-sort on a single Recordset row #673281

      A few of advantages:
      * it’s already written and works (probably the major advantage)
      * you can get a specific row by specifying the start
      * you can specify how many rows to get.

    • in reply to: Bubble-sort on a single Recordset row #673179

      Why not use the Recordset.GetRows method?

      No looping required.

    • in reply to: Hosting suggestions? #673177

      my host is parcom.net, reasonably priced and extremely conservative. I use their win2k servers and ASP.

    • in reply to: Modifying CSS files crashes FP (FP 2000 service pack 3) #664917

      MS has always been extremely helpful when I’ve had disk/CD/password problems, and I have no reason to believe that policy has changed.

    • in reply to: Modifying CSS files crashes FP (FP 2000 service pack 3) #664615

      Jim – while those of us in the Lounge ponder your situation, I suggest you surf to the MS site and simultaneously look for a description of your problem in the MSDN Knowledge Base.

    • in reply to: Phantom scheduled app? #663452

      Thanks Preston ~ I’ll have her check in that direction

    • in reply to: Bloated Front Page Code (2000) #660218

      Hi Kate ~

      Would you be so kind as to elaborate a bit about what unnecessary code is, and how it was so determined?

      E.g., i use a lot of “unnecessary” code in my *.ASPs to trace execution. I can turn execution of the code on and off. It’s like a parachute: “unnecessary” most of the time.

    Viewing 15 replies - 46 through 60 (of 456 total)