Hello,
When working with Delphi, asm or any other language there's a macro called SizeOf. But what is the VB replacement for it ?
Thanks
Thomas
Printable View
Hello,
When working with Delphi, asm or any other language there's a macro called SizeOf. But what is the VB replacement for it ?
Thanks
Thomas
for the size of what, a structure(Len, or LenB), a file(FileLen)
I need it like this:
Type MyStruct
A as string
B as string
end type
SizeOf(MyStruct)
Thomas
Len(MyStruct)
I didn't think that would work, I thought I tried that once, but guess I didn't as it's working fine now :)
Thanks
Thomas