Search results

  1. U

    Error 2447 problem

    Hi, Guess I'll start looking out for a guy who has very little hair.:D Anyway, there many places go, I suggest you start by looking for brochures or counters when you arrived at the airport. Any other places, try to PM me here.
  2. U

    Can anyone help before I pull out my hair???

    Yes, pulling out his hair shouldn't be an option.:)
  3. U

    [Screen].[Activeform]![txtcontrol] in Criteria

    Hi, You cannot use the ActiveForm method to open a QBE query, because the ActiveForm is no longer Active. You'll have to create a Function on a standard module and pass the Active Form Name and actual control, to loop thru the actual form behind the current active query. Create a Function...
  4. U

    Error 2447 problem

    Hi, If you are trying to multiply an Integer with a decimal or fraction, you can't. Dim the variable to Single or Double.
  5. U

    Insertion, deletion, updation through bounded form

    Create a bound form, the record can be edited. Then, on the form create a button from the wizard, just follow the instruction. And it's the same for both "Delete" and "Insert" button.
  6. U

    DoCmd.OutputTo destroys DAO.Recordset

    Hi Bill, Glad to hear from you. Yes, if you have parameters in your query within a query.
  7. U

    Put string into Form field

    Hi, Where is this code located, Form's module or a Standard module?
  8. U

    Two Functions one event....

    Hi Curtis, Looking at the Form’s control and AuditTrail, my thoughts were the control’s old value might be the problem there. Did the changes work for you?
  9. U

    "Set objOL = New Outlook.Application" cannot find the application

    Hi Tim, There are many possible cause of this problem. For Example, corrupted files or the file in memory and being in use. (Have you installed any “.Net” applications lately?) And (You sure that “MSO.DLL” is the correct file? Should it be “MSO12.DLL” or "MSOUTL12.OLB"? I don’t have Access...
  10. U

    Get Current Control on Mouse over

    Hi, There is a sample in the Sample Forum. Do a search for "ToolTip Control - No OCX - c/w example".
  11. U

    Select Random Numbers with Limit 50

    Hi Dana, If you want to select all records at random... SELECT Rnd([ID]) AS Q1 FROM tblQuestions ORDER BY Rnd([ID]);
  12. U

    "Set objOL = New Outlook.Application" cannot find the application

    Hi Tim, Maybe you need to re-register the "dll" or "ocx" again. Click "Start", "Run", in the field... Regsvr32.exe "C:\SomewhereFolderofDLL\YourDLL.dll"
  13. U

    Draw Box or Line programmatically

    Hi mithani, Not an easy task, but here's a start from Help. CreateControl, CreateReportControl Methods Example The following example first creates a new form based on an Orders table. It then uses the CreateControl method to create a text box control and an attached label control on the form...
  14. U

    DoCmd.OutputTo destroys DAO.Recordset

    Hi Bill, Not sure about this, but if the Report Record Source is using the same query as in the code, the report will close the query. This might be your problem? An alternative is to open a recordset using SQL syntax. Dim l_Database as DAO.Database Dim l_Query as DAO.Querydef Dim lr_Data as...
  15. U

    DoCmd.OutputTo destroys DAO.Recordset

    Hi Bill, Just a guess, is your report "rptMemberProfile" and "qryRptDuesExpireLetter" share the same query source or table? (or something similar?) Sometimes, sharing opened tables or queries can cause the recordset to close.
  16. U

    DoCmd.OutputTo destroys DAO.Recordset

    Hi Bill, Try removing the "DoEvents" and see if it works. I suspect there might be more than just your code.
  17. U

    "Set objOL = New Outlook.Application" cannot find the application

    Hi Tim, You sure that the referances is correct? Look at it again, does it the word "Missing" just after the check box? You might have to get a copy of that file from another working PC and put it into the correct folder.
  18. U

    Undo not Available

    Brian, The original code from OP was DoCmd.Undo That does not work at all. The correct code is, DoCmd.RunCommand AcCmdUndo Sometimes DoCmd has problems understanding which record or what to “Undo”. Worst cases are usually changing of the form’s properties in an event control. The code...
  19. U

    Undo not Available

    RG, The "stLinkCriteria" should be on top of the "DoCmd", else the criteria is blank.
  20. U

    Dlookup returns WRONG entries

    Hi, One missing "&" ampersand from the Dlookup. = DLookup("[SupDoc]", "[tbl SupDoc]", "KeyId = " & Me!keyID & " AND " & "Var = 'A'")
Back
Top Bottom