You can use bit shifting to change between types if you want the binary to stay in tact and just line up next to the other.
a as byte
b as byte
c as word
d as word
e as word
f as dword
a = 255
b = 255
d = 65535
e = 65535
temp1 as word
temp1 = a << 8
c = temp1 + b
temp2 as dword
temp2 = d << 16
f = temp2 + e
print "Binary of a(left) and b(right) bytes : ",right$(bin$(a),8)," ", right$(bin$(b),8)
print "Binary of c (word) of a + b : ",right$(bin$(c),16)
print "Binary of d(left) and e(right) words : ",right$(bin$(d),16)," ", right$(bin$(e),16)
print "Binary of f (dword) of a + b : ",right$(bin$(f),32)
wait key
[edit] Really need more info on how you are going to use this or more specifics on what you are trying to do. Try and give examples of what you want.