Search results

  1. C

    Security Warnings for Vista/Access 2003 & Beyond

    I had to borrow my son's computer to complete my 2 Access projects since mine is in the shop. I had Windows XP and he has Windows Vista. Access 2003 now requires a security level high,medium or low. It was set at medium and then I changed it to low. I noticed it took place in both database that...
  2. C

    Finding the correct USB memory stick drive

    I'm trying to figure out the code to determine what drive letter will be returned. I had it about the 3-4 years ago but have not found it. TIA --CW
  3. C

    Error: You have canceled previous operation.

    Does anybody know what this is. There is no help available.
  4. C

    Error: You have canceled previous operation.

    What is this error message? No help on it either.:confused:
  5. C

    Trouble linking a subform correctly.

    I been having trouble linking my data together. For the main form and subform: Master Field:RoomID Child Field:RoomID Table Linkage: TableNames:Accessories.AccessoriesID to AccessoriesLI.AccessoriesID TableNames:AccessoriesLI.AccessoriesLineItemID to...
  6. C

    How to pass codes in a menubar function

    I am trying to pass codes from a menubar to a password form. All of these forms need to be validated first by using a password protected form. I have the password form already built, but all the forms need to use it and then go off on the form each needs to go to. I just did not want to build a...
  7. C

    Form recordset not adjusting correctly

    I have some code for moving the form from one room to another. It is a proposal form with 4 subforms on it. On the main form I have the 2 buttons. Next Room and Previous Room. Previous Code: If Me.Recordset.BOF = True Then Me.Recordset.MoveFirst Me.Caption = Me.RoomName &...
  8. C

    Group Headers Not Working Right in Report

    I have a DB that contains Customers, Rooms and the Cabinets you want. One customer has many rooms and the cabinets from one room has many. Easy enough. But when I create a RoomID for a grouping for a report that has customer info in the report header, RoomID as a GroupHdr with all of the room...
  9. C

    Error #40036 now causing problems.

    This code is the latest to come up and causing problems with error #40036. Been there for a long time and then it quit working for me. Error Code: nRoomID = Me.RoomID sRoomName = Me.RoomName Forms("frmCabinetDescription").Caption = sRoomName & " Room Parameters"...
  10. C

    Access 2003 Error 2448 causing problems

    I been starting to getting the error 2448. Access Help offers nothing. Basically it is holding my applications up. Here is the code: Set Cab = New Cabinets Set Acc = New Accessories cCabAmount = Cab.GetRoomTotalCost(nRoomID) cAccAmount = Acc.GetRoomTotalCost(nRoomID)...
Top Bottom