varible in shell
-
how can i use a varible in a shell command; so the shell executes net send dell (my input)? dim message as string message = txtMsg.text Shell ("net send dell" message) HELP
Something like this maybe?
Dim sendString As String
Dim varData As String
varData = "Hello world!"
sendString = "net send dell" & varData
Shell(sendString)
Paul Watson wrote: "At the end of the day it is what you produce that counts, not how many doctorates you have on the wall." George Carlin wrote: "Don't sweat the petty things, and don't pet the sweaty things." Jörgen Sigvardsson wrote: If the physicists find a universal theory describing the laws of universe, I'm sure the asshole constant will be an integral part of that theory.
-
Something like this maybe?
Dim sendString As String
Dim varData As String
varData = "Hello world!"
sendString = "net send dell" & varData
Shell(sendString)
Paul Watson wrote: "At the end of the day it is what you produce that counts, not how many doctorates you have on the wall." George Carlin wrote: "Don't sweat the petty things, and don't pet the sweaty things." Jörgen Sigvardsson wrote: If the physicists find a universal theory describing the laws of universe, I'm sure the asshole constant will be an integral part of that theory.
Ray Cassick wrote: sendString = "net send dell" & varData You need to specify a space here :) "dell " Your friendly neighbourhood typo police! Notorious SMC
The difference between the almost-right word & the right word is a really large matter - it's the difference between the lightning bug and the Lightning Mark Twain
Get your facts first, and then you can distort them as much as you please Mark Twain