我尝试使用带有 vb .net 的 gnokii 短信库(http://gnokii.org/)发送短信,我创建了一个单独的 bat 文件并从我的 vb.net 代码中调用该 bat 文件
这是我的VB代码
Dim process As New System.Diagnostics.Process
Dim startInfo As New ProcessStartInfo(AppDomain.CurrentDomain.BaseDirectory & "sms.bat")
process.StartInfo = startInfo
process.StartInfo.Arguments = txtBody.Text'text typed in text box
这是我的bat文件
@echo off
echo Begin Transaction
echo "message body" | c:\sms\gnokii.exe --sendsms 0771234567 'this is mobile no
pause
我的问题是我想将两个参数传递给消息正文和移动没有硬编码它们
消息正文由空格和多行组成,移动没有 cosistend 只有单行没有空格
我怎样才能在bat文件中实现
请帮忙