Hi all
I'm trying to convert a simple messaging program I created in Excel (using VBA) to VB so it can be used as a stand-alone program (i.e. without Excel being present).
The code is VBA is
where Range("B" & counter) is the name to send to and message1 is the message. The 0 at the end simply stops that annoying DOS shell tab appearing at the bottom of the screen.
I've tried to convert it to VB by substituting Range("B" & counter) for textbox1 and
message1 for textbox2 but can't seem to get it to work.
I feel I must warn you I am a complete novice at VB but do have some experience of VBA.
Anyone any ideas