Recent content by CraigWarmy

  1. C

    Forms Master & child issue

    Have you ever thought of having a unique value in form #2 and then link it to the form #3 using the link master/link child form properties? Also do the linking in the relationship window. Might have to add some code also.
  2. 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...
  3. 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
  4. C

    Error: You have canceled previous operation.

    Yes I am already working on the replacement form. Fortunetely it does not have to much coding on it.
  5. C

    Error: You have canceled previous operation.

    yes. There is a bunch of code, but the one line of opening the pricing form get's the error.
  6. C

    Error: You have canceled previous operation.

    Just trying to open a form. Docmd.OpenForm "frmPricing",acNormal
  7. C

    Error: You have canceled previous operation.

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

    Error: You have canceled previous operation.

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

    Trouble linking a subform correctly.

    I think I have found a solution to the problem. Add a text box that hold the text of the combobox. Column(0) has the linking ID while the Column(1) data has the text value and assigns it to the invisible textbox. After making using the cbobox, make it invisible and make the textbox visible.
  10. C

    Difficult (solvable?) problem

    Sorry. Was just trying to help.
  11. C

    Difficult (solvable?) problem

    Make a reference to the Microsoft.Excel. Here's my spreadsheet code: Public Sub PrintToXLS(strQryName As String, strTitle As String, intDataStartCol As Integer, Optional intDataStartRow = 2) On Error GoTo err_trap Dim xls As Excel.Application Dim wb As Excel.Workbook Dim myRange As Excel.Range...
  12. 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...
  13. C

    Importing data - browsing for file

    What are you doing? That code that I gave you is the only thing that you need. Nothing else. Throw it away.:confused:
  14. C

    How to pass codes in a menubar function

    I figured out a different way to do it. Thanks!
  15. C

    Importing data - browsing for file

    Re: Importing data - browsing for file(New Easier Way) Add a reference to Microsoft 11.0 object code in the Tools,References. Here is the easy way to do it: Dim dlgOpen As FileDialog Dim sLogoPath As String 'Open a dialog box and get a filename for the data database. Set dlgOpen =...
Back
Top Bottom