Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. seducedbycodes

    Overflow error

    so is there any solution?
  2. seducedbycodes

    Overflow error

    eeeek...so am i supposed to make things such as Me.Detail.Height a long data type, how is this done... Changed the difference var to long, but that wasn't the problem
  3. seducedbycodes

    Overflow error

    heheheh....dammit i'm silly thanks a million :)
  4. seducedbycodes

    Overflow error

    about 40000? This is just a guess, i have these values printed on the form except they do not update when the error occurs,
  5. seducedbycodes

    Overflow error

    Me.Detail.Height = Me.Detail.Height + Difference is highlighted where Difference = Me.QuoteParts.Height + Me.QuoteParts.Top i don't do any division anywhere within the code?? it's puzzling
  6. seducedbycodes

    Add new record from a form

    Thankyou for your suggestion and i tried this option but ran into a difficulty... I'm having trouble entering data into the subform in datasheet view. As soon as i change this forms data entry property to yes the subform becomes empty and there are no rows to enter or change any existing data...
  7. seducedbycodes

    Overflow error

    Hi, I'm having trouble with an overflow error with one of my forms. I am resizing a subform depending on how many records it holds each time the user goes to a new record, the size of the subform updates. I resize the Me.Detail depending on how big the subform is. I think this is where the...
  8. seducedbycodes

    Add new record from a form

    Hi, Trying to add new records (containing differing info) to two separate tables from one form containing text boxes and a datasheet. Was trying to implement this using SQL INSERT INTO within VB code, but cannot get it to work. This is for an invoice, i want to send all of the customer details...
  9. seducedbycodes

    Cycling through records in a form.

    Hi, I need to resize a subform each time the user cycles through the records in the main form, what is the event that occurs when the user presses the arrows at the bottom of the form to go to next record? Thanks in advance Bec
  10. seducedbycodes

    Keep form from opening if no data?

    Hi, I just tried to implement the code given above in cmdOK_Click() but get Run-time error '2001': You canceled the previous operation on my DCount line: If DCount("Name", "QUOTE") = 0 Then
  11. seducedbycodes

    Stop form displaying all records for subforms

    I don't quite understand what you mean by joining the header table to the item table. I only want one quote displayed for every quote number, at the moment it displays multiple quotes for a quote number (which are all the same) as there are different part records for the quote number in the...
  12. seducedbycodes

    Query to find statistical informtion

    Hi, just wondering what would be the best way to find statistical information about a customer (ie the number of quotes for that company and the total cost quoted by the company) There is a table which contains company info and quote info but the number of quotes for a particular company, and...
  13. seducedbycodes

    confused about displaying a form for a specific record

    Ok now only the header is displayed and i get error# 2455 saying that You entered an expression that has an invalid reference to a property Form/Report Thanks a lot for your help Appreciated Muchly
  14. seducedbycodes

    confused about displaying a form for a specific record

    it's still only displaying the first record. Must be a silly mistake i'm overlooking. Could it be anything to do with the relationships i've set up
  15. seducedbycodes

    Stop form displaying all records for subforms

    Just another quick query, i was wondering if it is possible to stop a form displaying a record for (that is the same in the main form) for each record in the sub form. For example If i have a main form key of 1 and subform elements of 1 2 and 3 then the main form will display 3 records each...
  16. seducedbycodes

    confused about displaying a form for a specific record

    QuoteNumber is an autonumber and i am not getting anything on the main form either, only the header. I have Private Sub GetQuoteNo2_Enter() Dim stDocName As String Dim stLinkCriteria As String stDocName = "HUNZA Quotes" stLinkCriteria = "
  17. seducedbycodes

    confused about displaying a form for a specific record

    I'm not quite getting it to work, the problem i think is that the form has a subform whose elements are also referenced by quote number, this is not putting any records in the subform (records are needed in the subform for another part of my code)
  18. seducedbycodes

    Getting the number of records displayed in a continuous subform.

    Thankyou very much for that help. Worked Perfectly. Cheers
  19. seducedbycodes

    confused about displaying a form for a specific record

    I am putting this combobox on a separate form that contains several different types of searching the records. So onEnter i will have to make it open the required form with the record i searched for

Part and Inventory Search

Back
Top