converting a integer to a long

  • Thread starter Thread starter Brad
  • Start date Start date
B

Brad

is there a way to convert an integer to a long. I want to
use FindFirst to find a matching record ID(which is a
long) to a Number(which is an integer) or do i need to do
something else?
 
Brad said:
is there a way to convert an integer to a long. I want to
use FindFirst to find a matching record ID(which is a
long) to a Number(which is an integer) or do i need to do
something else?

You need nothing.

rs.findfirst "recordID=" & yourIntegerVariable

will do fine
 
Back
Top