Is it possible to put the current DATE in to the (Windows) clipboard ? If so: I can do it in TB, PB or QB.
(I now it is possible in VB but the .exe file will then be very large... )
Printable View
Is it possible to put the current DATE in to the (Windows) clipboard ? If so: I can do it in TB, PB or QB.
(I now it is possible in VB but the .exe file will then be very large... )
Why would the EXE be large because of this?Code:Clipboard.SetText Format(Now, "dd/MM/yy")
Wossname,
When I compile this to an EXE it will be a small program, but then it still needs the vb-library (> 1 mB) ?
Kars
Any program you make with VB, if it does anything, will need those libraries. If all you want is a program to do just this you'd be better off looking into something like C. Having said that, if people are using other VB programs then they'll have those libraries anyway.Quote:
Originally posted by Kars Lensen
Wossname,
When I compile this to an EXE it will be a small program, but then it still needs the vb-library (> 1 mB) ?