• WSrhconley

    WSrhconley

    @wsrhconley

    Viewing 15 replies - 31 through 45 (of 254 total)
    Author
    Replies
    • in reply to: Query Problem (A2K SR-1) #622926

      Thanks, Wendell.

    • in reply to: Query Problem (A2K SR-1) #622729

      Thanks to everyone that responded. It’s strange…the report that is populated by this query works fine, but I can’t execute the query outside of the report. That makes the situation acceptable.

      Is there a practical or theoretical limit to the ‘complexity’ of a query? This query, which I designed using the Query Design Grid, is supported by 35+ other queries (it’s a very complex report). I realize there are probably other, more efficient ways to do what I did, but I’m not there yet.

      Thanks.

    • in reply to: Opening a Form (A2K SR-1) #621709

      Steve,

      Thank you, it worked perfectly. I’m new to the module concept, but I’m beginning to like it already! Thanks again.

    • in reply to: Opening a Form (A2K SR-1) #621676

      I can’t get this to work. I know it’s a code problem:

      Function IsLoaded(ByVal frmSUBINFO As String) As Boolean
      Const conObjStateClosed = 0
      Const conDesignView = 0

      If SysCmd(acSysCmdGetObjectState, acForm, frmSUBINFO) conObjStateClosed Then
      DoCmd.Close ‘will close Company form to return to already open main data entry form (frmSUBINFO)
      Else
      DoCmd.Close ‘will close Company form to return to switchboard
      DoCmd.OpenForm “frmSWITCHBOARD”
      End If

      Exit_ExitAccess_Click:
      Exit Function

      Err_ExitAccess_Click:
      MsgBox Err.Description
      Resume Exit_ExitAccess_Click

      End Function

    • in reply to: Quantum HD Warranty #621143

      Quantum was purchased by Maxtor.

    • in reply to: Win XP SP-1 (Win XP Pro) #621140

      I upgraded my Win XP Home to SP-1 2 weeks ago. Machine is used 12 hours a day. Not a single problem. Slight performance improvement. Recommended.

    • in reply to: Hypothetical damaged motherboard question #620839

      Poor, poor Mr./Ms. Nobody! Cha-ching!

    • in reply to: Populating a Text Box (A2K SR-1) #620159

      That did it, Francois. Works perfectly. Many thanks.

    • in reply to: Populating a Text Box (A2K SR-1) #620149

      Here’s the code:

      Dim db As DAO.Database
      Dim rst As DAO.Recordset
      Dim strSQL As String
      Set db = CurrentDb
      strSQL = “SELECT tblDVCPERSONNEL.FirstName & Chr(32) & tblDVCPERSONNEL.LastName As FullName ” _
      & “FROM tblDVCPERSONNEL ” _
      & “WHERE ((tblDVCPERSONNEL.Initials)=[Forms]![frmSUBINFO2]![L4])”
      Set rst = db.OpenRecordSet(strSQL, dbOpenDynaset)
      If rst.RecordCount 0 Then
      Me!ShipContact = rst!FullName
      Else
      Me!ShipContact = “”
      End If
      Set rst = Nothing
      Set db = Nothing
      End Sub

      Now I’m getting ‘Run-time error: ‘3061’, Too few parameters. Expected 1.’ for the ‘Set rst=db.OpenRecordSet(strSQL,dbOpenDynaset) line.

    • in reply to: Populating a Text Box (A2K SR-1) #620144

      Francois,

      When running your code, I’m presented with an error message on the ‘Me!ShipContact = rst.FullName’ line that says ‘Compile Error: Method or data member not found’. I double-checked to ensure the code was typed correctly and I added the MS DAO 3.6 Object Library reference. Suggestions?

    • in reply to: Populating a Text Box (A2K SR-1) #620142

      Thank you, Francois. It’s great to hear from you again. I’ll give this a try.

    • in reply to: Windows Hangs #620140

      Many things come to mind, but have you tried:

      * Defragging the hard drive.
      * Running a spyware detection and cleaning program such as Ad-Aware (http://www.nusoft.com).
      * Running a registry repair/cleaning program such a WinDoctor included with Norton Utilities.
      * Running Microsoft RegClean, included with the free Microsoft Power Toys utilities package.

      If you surf the Internet frequently, I suspect running a spyware cleaning program will take care of a lot of your problem. It sounds like you have many background processes running, most likely the result of spyware intrusion. Go to http://www.nusoft.com (or do a Google search for Ad-Aware), install it, and run it. It’ll probably clean out a lot of unwanted stuff.

      Good luck!

    • in reply to: CD Writer recommendations #619434

      I highly recommend the Plextor 40/12/40a or, even better, Plextor’s newer 48/24/48a. I have the 40/12/40a…works exactly as advertised. Excellent. Regarding software, I’m using Roxio CD Creator, but full versions of either Nero Burning ROM or Roxio will take care of business.

    • in reply to: Money 2002 / IE Script Error (IE 6.0.2800) #619433

      To support what Mark said, I am using Money 2001 with IE6 XP SP1 update with no problems at all. You might want to re-install Money.

    • in reply to: How does Ad-aware interact with XP? (Professional) #618494

      Ad-Aware is a spyware removal program. It is first rate, free, and it works perfectly. Currently running it on Win XP with no problems whatsoever. Get it a lavasoft.com.

    Viewing 15 replies - 31 through 45 (of 254 total)