• WSAbraxus

    WSAbraxus

    @wsabraxus

    Viewing 15 replies - 16 through 30 (of 171 total)
    Author
    Replies
    • in reply to: Form Problem (2003) #1143412

      Hmmm…I ALMOST have it, but I’m not quite there.

      The query I’ve created works as the Record Source for the subForm, but it is not updatable. The form reflects the query correctly, including the Option Group, but I can’t click on another option.

      I must be missing something…

      Also, my main form is not bound. What differences will that make?

    • in reply to: List – Find As You Type (2003) #1139075

      Thanks Hans!

      I had tried code in the Change event, but t was the .text that made the difference.

      I was under the impression that .text was the default and it would work. Thanks for showing me the way!

    • in reply to: Duplicating records (2003) #1126128

      Hans, thanks for the code.

      It worked for me, but only AFTER I removed this piece:
      ‘If rst.Fields(i).Attributes And dbAutoIncrField = 0 Then

      With that check, it always skipped the
      rst.Fields(i).Value = arrValues(i)
      so I ended up with an empty record.

    • in reply to: Continuouse Form Issues (2003) #1117545

      Thank you!

      I had to change the Total Due to =[txtsubtotal]+[txttax]-[txttotaldiscount]

      It was not excluding the tax otherwise.

      Thanks so much for the help!

    • in reply to: Continuouse Form Issues (2003) #1117434

      Ok, I made the text box for the tax for each record use this:
      =IIf([Taxable]=True,[txtTaxRate]*[Quantity]*([Price]-([Price]*[Discount]/100)),0)

      and I made the footer tax box this:
      =Sum(IIf([Taxable]=True,[txtTaxRate]*[Quantity]*([Price]-([Price]*[Discount]/100)),0))

      I still get #ERROR

      I’m attaching the database so you can see what I am doing. If you test it out, you can use 1 as the ISBN and it will pull the price for you.

    • in reply to: Continuouse Form Issues (2003) #1117381

      Those formulas worked great, thanks.

      One thing that I need to include, however, is that each line may or may not be taxable. If I uncheck the Taxable checkbox, tax should not be calculated for that item.

      I added a text box for each record that calculates the tax for the item =IIf([chkTaxable]=True,[txtTaxRate]*[Quantity]*([Price]-([Price]*[Discount]/100)),0) and I hoped to have G be the sum of that text box, but all I get is #ERROR in all the Order Total boxes.

      Is there a way to make each item toggle the tax-ability?

    • in reply to: Multiple Outlook `From` addresses (2003) #1115976

      Hmmm…

      When I do this I get:

      “You already have a Microsoft Exchange Server account set up. Outlook only supports on Exchange Server at a time.”

    • in reply to: Total of field on continuous forms (2000) #1115906

      I actually found the problem.

      The source for txtExtended should have been:
      =[Quantity]*([Price]-([Price]*[Discount]/100))

      I needed to reference the fields, not the text box names.

    • in reply to: More continuous form issues. (2000) #1115902

      SteveH’s suggestion did not work for me. 🙁

      I ended up writing some code to fill in the fields on the bottom of the form.

      Also, it is not a sub form, just a regular form.

    • in reply to: Total of field on continuous forms (2000) #1115900

      The formula for txtExtended is:
      =[txtQuantity]*([txtPrice]-([txtPrice]*[txtDiscount]/100))

      When I put a text box in the footer, I made the formula:
      =Sum([txtQuantity]*([txtPrice]-([txtPrice]*[txtDiscount]/100)))

      Unfortunately, it shows me #Error

    • in reply to: Continuous forms (2000) #1115818

      Option 1 worked perfectly, thanks!

    • in reply to: Application.FileSearch (2003) #1114909

      Worked perfectly, thank you!!

    • in reply to: Select Excel Tab (2003) #1114504

      Worked well, thank you!

    • in reply to: Select Excel Tab (2003) #1114474

      Hmmm…it was moved from the Access forum.

      I will be selecting the tab FROM Access, not from Excel.

      Not sure if it makes much difference…

    • in reply to: Getting data from multiple Excel books (2003) #1113500

      No, but it works great if this line

      curToReturn = curToReturn + .Activecall.Value

      reads

      curToReturn = curToReturn + .ActiveCell.Value

      like is was supposed to.

      Activecall != ActiveCell.

      Crazy typos!

    Viewing 15 replies - 16 through 30 (of 171 total)