Can you suggest tutorials or offer advice for working with databases (especially Access) via the code editor in Visual Basic 2010? I've found plenty of stuff on working via the designer, but the procedures covered seem similar to those used when working in the database directly, with which I'm already familiar. What I can't work out is how to manipulate data via the code editor.
My Access database has a a large table with numeric data, and I need to write code which will successively compare the value of a cell in 1 record with cells in the same column in each other record, and then delete those records where the difference returns particular values. eg if (1, 1) - (2, 1) = 1 or -1 or 6 or -6 Then delete row2 Next if (1, 1) - (3, 1) = 1 or -1 etc Then delete row3 etc (and so on through all rows and columns)
For example in the following grid Rows 2 & 4 would be deleted, while Row3 would be retained: Row1: 5, 3, 12, 8 Row2: 4, 8, 10, 7 Row3: 8, 7, 1, 6 Row4: 8, 9, 3, 2
Also - is it possible to import and manipulate tables from MS Word documents? Many thanks.