Why don't you simply execute a single record INSERT INTO sql statement? Is the field RevisionID the primary Key on the table?
If you must use the appraoch that you have here, then make this simple change:
da = New SqlClient.SqlDataAdapter("SELECT * FROM tblFileUploads where RevisionID = " & Me.txtRevisionID.Text , SqlConn)
which will return an EMPTY dataadapter (and will do so VERY QUICKLY), and you can then add the new record (also very quickly).
AW