Search results

  1. P

    Changing a table

    Thanks one and all, especially spikepl. The Company is a small family run manufacturer with no IT department and no money to spend on external IT specialists (they tell me:)). The db was written by a previous product development manager who could see a need and knew a bit of Access and put it...
  2. P

    Changing a table

    The db is for a manufacturer and records all the salient details of a product and its major components. This gives the Company traceability of who, what and when. The tables are in a Back End db with no forms, queries reports etc. I have zipped the whole db as is, easier and quicker for me than...
  3. P

    Changing a table

    Thanks for your help, everyone. The Table, one of many, is allready normalised, if avoiding duplicate data in other tables, is what you mean. The only simplification that could be made is to split it, but one of the results of that would be 41 fields anyway so I am not sure it helps me with my...
  4. P

    Changing a table

    Silly question, how do I post the table design?
  5. P

    Changing a table

    I have been working on a copy of a database to introduce some new forms and data fields. The major data change is an increase of 10 more fields to one particular table. I now want to implement the change to this table, ie put the data from the live version of the table, which has more records...
  6. P

    Prevent moving to the next control

    Thanks everyone, that now works a treat!
  7. P

    If you are a gifted programmer, please assist!

    I am not gifted but this is how I would proceed. It should be fairly easy to calculate what % of goal has been achieved for the last 4 and 6 momths, working with the highest level downwards. When the sales 'level' has been determined than check the individuals current sales status which I would...
  8. P

    Prevent moving to the next control

    This is the code I am using: Private Sub ImpDate_BeforeUpdate(Cancel As Integer) Dim db As Database Dim rec As Recordset Dim answer As String Set db = CurrentDb() Set rec = db.OpenRecordset("SetupData") rec.FindFirst "param_current = -1" Me.DateLast = rec("param_inc_date") rec.Close If...
  9. P

    Prevent moving to the next control

    Thanks Dave, That however puts me in a loop I cannot break, not even to close the form, unless I provide a suitable date? pnb
  10. P

    Prevent moving to the next control

    Paul, thanks. The control has the value for the before update event but it will not accept the SetFocus command (back on its self as it were) pnb
  11. P

    Prevent moving to the next control

    I am testing the date entered in AfterUpdate of a control and want the user to re-enter it if conflicts with existing data. I have coded the testing and bring up a yes/no message box if it does not comply and want the focus to stay on the control if they answer No (7). I have tried using...
  12. P

    SubForm NOT moving to next record

    Thought I'd fixed this but it is still opening a new record even when NO is chosen. Can someone point out my mistake.........please. Private Sub goods_notes_Enter() L = 1 Debug.Print "Notes Entry", L, Me.Cycle End Sub Private Sub goods_notes_Exit(Cancel As Integer) On Error GoTo...
  13. P

    Import Data . .

    I would suggest you consider altering the ss layout so that row 1 has all the column headers. Make Column A 'Date' and put the date, presumeably of last update the sheet, in 2A. Access will table it with a wizard but make sure you choose the correct data types as it does.
  14. P

    Import Data . .

    Have you tried linking to the Excel spreadsheet? Then you can treat it as an Access table.
  15. P

    SubForm NOT moving to next record

    Thanks Bob, I knew there was a control in there somewhere! peter
  16. P

    SubForm NOT moving to next record

    I want to stop moving to the next record when leaving the last control on a subform. I plan to build a simple message box giving the choice between allowing the move or moving the focus to a control on the open record. Just setting the focus where I want it does not accomplish it, it still...
  17. P

    Opening and closing Recordsets

    It is the db I posted recently and the recordsets in question lookup some tables to obtain some connected data. Dim StrRst As Recordset Dim StrDb As Database Dim StrSql As String StrSql = "SELECT * FROM Equipment WHERE equip_index = " & Me.call_equip_sno Set StrDb = CurrentDb() Set StrRst =...
  18. P

    Opening and closing Recordsets

    Thanks, I will try that and see if it speeds up the code. peter
  19. P

    Opening and closing Recordsets

    Dave, I am getting data from a recordset in the subsubform for use in a calculation on the form. I am also doing the same thing for another table in the subform. At the moment I close the db and recordsets after getting the data. This means that stepping through the records of the main form I...
  20. P

    Opening and closing Recordsets

    In a Form, subform, subsubform situation is it acceptable to Set and Close the db and the recordsets on opening and closing the main form? It just seemed to me to be a faster than closing them each record, then opening them again for the next.
Back
Top Bottom