Search results

  1. P

    Form record loop not picking up textboxs

    Hi, Recordset worked like a charm. Thanks a lot. If possible can you tell me the difference between the two if it's not to much trouble. Thanks again Peter
  2. P

    Form record loop not picking up textboxs

    Hi, Thanks for the reply. Dim rs As DAO.Recordset Set rs = Me.RecordsetClone rs.MoveLast rs.MoveFirst Dim idx As Integer For idx = 1 To rs.RecordCount aa = Me!Text6 ' textbox a1 = rs!ID ' record ID MsgBox aa & " " & a1 rs.MoveNext nn = nn + 1 Next idx...
  3. P

    Form record loop not picking up textboxs

    Hi, I have I think a strange loop problem. I have a loop that runs though the records on my form and is working correctly for any data fields but it will only pickup the first textbox field and not change for the following records. For example if I display (msgbox) the first record with the...
  4. P

    Question Ms Access 2007 Graph 2 fields

    Hi, Thanks for your help. I figured it out this morning. Edited the properties and added the extra field to the Query. Thanks again Peter
  5. P

    Question Ms Access 2007 Graph 2 fields

    Hi, I think the answer will be very simple but I can only seem to graph one field using the Graph wizard. I have a table that have running totals: Date-----Sales ---- Budget 1/8/2013 0 2000 2/8/2013 2500 4000 3/8/2013 2500 6000 4/8/2013 4000 8000...
  6. P

    VB Loop thu record ansd loop thu table

    Hi, I need to check each field in a record for data as I loop thu a table. (recordset) For example Record looks like: Field1 Field2 Field3 Field4 etc - Field names G Smith 23 Blackburn H Jones 13 Riverside J Black...
  7. P

    Question Document Control

    Hi, Our work 'losses' documents (doc,xls,pdf etc) all over our server, I would like to start a document control within ms assess. I was thinking that I enter the path to the document. When I click on the path the document will display. That's my idea but am open to any suggestion. Thnaks Peter
  8. P

    Barcode scanning Example

    Hi, Thanks pbaldy, could I push my luck a little and ask how I would code below Scan barcode Add new record to a table empty field Scan next bar code ... ... Then I would press enter to finish Thanks Peter
  9. P

    Barcode scanning Example

    Hi, I maybe pushing my luck but does someone have a simple example MS Access database that reads a barcode reader and loads the barcode into a table. Hoping you can help Regards peter
  10. P

    Create VB line in a loop

    HI, Hope you can help. I would like to create a loop where I change the VB line with the loop number. IE rs2.AddNew rs2![SDPhone] = Val(stext) rs2![SDQty] = rs1![P1Qry] rs2![SDName] = rs1![P1Name] rs2![SDSKU] = rs1![P1SKU] rs2![SDPID] = rs1![PID] I would like to change the P1...
  11. P

    VB change Outlook accounts

    Hi, Can someone help. I have an Access 2007 file I need to loop though to send out emails in Outlook.'My issue is that I need to change the Outlook account depending on the record. I currently use docmd sendobject but I cannot find how I can change the Outlook Account. Thanks for any help. Peter
  12. P

    Read Text field line by line

    Hi, Thanks to you all Regards Peter
  13. P

    Convert Text and Numeric in query

    Hi, I have a query the appends an access database from an excel spreadsheet (via a link in Access) taken from another program. My problem is that one of the excel columns contains both text and numeric data and I keep getting a 'data mismatch'. I would like to convert both to text I have tried...
  14. P

    Read Text field line by line

    Hi, I have a text field that looks like John Smith 34 Black Street Liverpool Queensland I need some VBA to read the text, line by line, as I have to insert each line into other fields. Appreciate any help Peter
  15. P

    Question QR Codes

    Hi, Can anyone help me add QR Codes to my reports. I want to produce sticky labels with individual QR Codes with contact details on each label. Can anyone help. Regards Peter
Back
Top Bottom