Recent content by Scottyk537

  1. S

    Preventing users from viewing design view

    Good to know, Thanks Bob. I guess I haven't used 2000 for a while.
  2. S

    Preventing users from viewing design view

    If you are using 2003 or higher you can create a MDE file for users. Tools | Create MDE File
  3. S

    Database Help Please

    Yes, If your in the same query, it's only going to count rows where columnA equals 2 AND columnB equals -1. If you need to count multiple fields separatly, create different queries. Then you can create a 'master' query that looks at your other queries.
  4. S

    Database Help Please

    Open the query, right click on a field below and select 'totals'. A new row appears called 'totals'. In the [option A] column, totals should be 'count' and criteria should be 'like -1'
  5. S

    total amount calculation in access 03

    Why would you want to store a calculation in the table? Run the calculation on the form or in a query at runtime. There is no reason the store this value in a table! No wonder your driving yourself crazy. You can store this value using VB coding, but I do not recomend it.
  6. S

    Database Help Please

    Not enough info.......... Based on what you said, I would setup the table and a bunch of yes/no(boolean) values. Then whan you run a query, count how many [Option A]'s = -1
  7. S

    total amount calculation in access 03

    In the control source of [line total] write, =[quantity]*[price] if those are the names of the textboxes. To get a grand total, use a form footer. Create a new text box with its control source =sum([line total]) If still not working, you'll have to post your DB.
  8. S

    X Y Plane Dynamic Form

    First of all....... Why would you need a table tblAssignment? It seems like this is just duplicating data. Link the two tables and create a query that will display info like tblAssignment would do. Put another field in your tblMeasures that links to the ItemID in your tblPurchases. You will...
  9. S

    Header Visible on Every Page

    There are two header/footers on a form. Page Headers/footers Form Headers/footers Form headers will show once every form, and page headers will be shown every page.... Hope this helps...........
  10. S

    iif Statement in Default Value

    I don't think you can do this because an IIF statement is not a value. I have done this before by adding code to the OnLoad event of the form. Try adding your code there....... except you woulg write it like If Me!Hours = 0 then me!OUTPUT = "YES" Else me!OUTPUT = "NO" End if
  11. S

    Max and Min of unbound text boxes

    I do not understand you question...... Please explain
  12. S

    Max and Min of unbound text boxes

    I'm sorry............this code works........... Function RMin(ParamArray avValues() As Variant) As Variant Dim vThisItem As Variant, vThisElement As Variant On Error Resume Next For Each vThisItem In avValues If IsArray(vThisItem) Then For Each vThisElement...
  13. S

    Max and Min of unbound text boxes

    I got it................. I threw this code in a module, and I'm able to run this from the form level. Hope this helps someone else out there!!! Function Min(ParamArray avValues() As Variant) As Variant Dim vThisItem As Variant, vThisElement As Variant On Error Resume Next For...
  14. S

    Max and Min of unbound text boxes

    I have a form with about 100 unbound text boxes. How do I get the Max and Min values of these boxes? I spilt these boxes into groups of 10 and I need to find the Max and Min values of each group of 10? I was hoping not to have this calculation run in VB because there is alot of other code...
  15. S

    Exploding Continuous Subform

    Why not use a command button? Anyways, I have acomplished this in the past by: In my continuous form, I add all the fields I want to display in my details form and hide them. Visible=false I then create a new form that is not linked to any other form and with no recordsource. Add some unbound...
Back
Top Bottom