Search results

  1. T

    Variable not defined

    I am getting variable not defined, with this Form_Subform_Example1.txtbox2 = 3. I am trying point to a textbox on a subform from the main form. It highlights 3. What are some possible solutions or examples?
  2. T

    Calculated textbox not recalculating, refreshing, or updating

    The weird thing on my other access the code is exactly the same except for a different form, and it works perfectly. I have a calculated textbox on the mainform that shows the sum of the subform continuous form. I have tried various methods, and textbox is just not updating at all.
  3. T

    Textbox not updating after calculation

    I have a text box where you enter a value, and combo box where you select a value. Then I have another text box that show the calculated value for that row. Then below the calculated value, there is another text box that shows the sum of the calculated value per row. Say for example row 1 is 67...
  4. T

    Decimals are still showing after calculation

    I have set the field in the table to single, and 0 decimals. In the form I have applied general number and 0 decimals. What else may I be missing to not show decimals? I do not want the values to be rounded up for example 100/1.5+1 = 67.66666666666667, i just want the text box to show 67 in...
  5. T

    If Then Statement: Compile Error, Expected: =

    I am getting an Expected: = and it highlight the less than or greater than statement. What am I doing wrong? If Me.cboOption = "Plan 1" Or "Plan 2" Then Nz(Me.Example1, 0) < & Nz(Me.Example2, 0) Else Nz(Me.Example1, 0) > & Nz(Me.Example2, 0) End If Thank you
  6. T

    Order Continuous records in Report A to Z

    I have an continuous records in a report, and when I click print view in orders my list of inventory and random order. How do I order the list by A to Z?
  7. T

    Change Singe Corner Rounded to Left?

    I have a single corner rounded shape, but its only in the right side. How do I change the corner to the left?
  8. T

    Debugging step into F8 not working

    When I place my cursor into a procedure, I would like to debug and press F8. The Step Into does nothing, why is this?
  9. T

    How to set image for button hover

    I would to set a foreground image, for when the mouse hover the button it displays the alternate color image. How do you do this?
  10. T

    Syntax error in FROM clause

    Thx all, maybe someone has better eyes than I do. I am receiving a syntax error in FROM clause statements for this SQL statement, SELECT qry.SelectionRowID_FK, Sum(qry.QtyToSell) AS Qty, ItemsTABLE.StoreDepartment FROM (SELECT ProductInventoryTABLE.SelectionRowID_FK...
Top Bottom