Search results

  1. ___

    I thought it was simple(subformStuff) but Maybe Im just stupid.

    Why do you need to store calculated values in the table? The calculations can be done in a query, on a form or in a report. HTH
  2. ___

    Animated GIF's On Forms?

    There is another way.... Unzip the attached .dll to your Windows System Folder. Register it by typing, C:\Windows\System\Regsvr32.exe C:\Windows\System\Gif89.dll in the Start >>> Run box. Register it in Access, Tools >>> ActiveX Controls, Click Register and change file type from .ocx to .dll...
  3. ___

    Undo all changes

    Me.Undo HTH
  4. ___

    Search From A Textbox?

    Have a look here
  5. ___

    I need to have a save dialog window

    This should be what you need.
  6. ___

    Close Command File

    I'm not sure it's possible.
  7. ___

    Should be simple

    Why not just put the calculation in the control source of the two text boxes? WeightDiff control source..... =[Weigh1]-[Weigh2] PerWeightLoss control source..... =[WeightDiff]/[Weigh1]
  8. ___

    Should be simple

    In which event are you firing the code?
  9. ___

    *!help Please With Opening A File!*

    Please don't double post.
  10. ___

    Calculation Problems

    =[YourSubform]![YourTotalsTextbox] On your main form
  11. ___

    Calculation Problems

    Place the grand total textbox in the detail section and reference it in a new textbox in the footer section.
  12. ___

    Print a report to a specific printer from VBA

    The easiest way would be to select the printer from the reports page setup. Goto file >> page setup, select the page tab and check 'use specific printer'. Select the required printer. HTH
  13. ___

    Print a Hard Copy of Form

    Why not use a report?
  14. ___

    Alarm Clock

    http://access-programmers.co.uk/forums/showthread.php?t=63825
  15. ___

    Decimal to Fraction

    Code by CyberCow Public Function myGetFrac(nVal) ' nVal = Decimal number to be converted ' Test in debug window: ?myGetFrac(32.956) ' The result will be 32 61/64" Dim i As Integer Dim lVal, fVal Dim nmr, dnmr i = InStr(nVal, ".") lVal = Left(nVal, i - 1) fVal =...
  16. ___

    Oops disappeared

    Goto tools >> options and select the view tab. Tick the hidden objects check box then ok. Right click on your form and left click properties. Un-check hidden. HTH
  17. ___

    Compact and Repair Problem

    It may have just corrupted. Sometimes, most times, impossible to tell what has caused it.
  18. ___

    Compact and Repair Problem

    Try importing all tables, queries, forms etc. into a new blank db, then run the compact/repair. HTH PS. I think you'd have been better to post this in the General section ;)
  19. ___

    The Silly Links Thread

    Things Ive pushed through toast. :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused:
  20. ___

    The Silly Links Thread

    :eek: ...............
Back
Top Bottom