View gist:fdd46f8ee87f30944e3524d2d8181c36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace NumberConversions | |
{ | |
class NumericConversions | |
{ |
View Recover Access Table Records - VBA
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public Sub RecoverRecords() | |
On Error GoTo errHandler | |
'Example Code - Generic variable and field names have been used throughout. | |
Dim rstOld As DAO.Recordset 'Recordset to hold records from corrupt table. | |
Dim sqlComplete As Boolean | |
Dim counter As Long |