Windows Mobile 6.5 上的 MWA 设置
我已经在 PC 中完成了 MWA 设置。工作得很好。我想在 Windows Mobile 6.5 版本中进行同样的设置。我们怎样才能做到这一点。我已经使用这个
http://apps2fusion.com/at/43-ss/225-mwa-setup-testing-error-logging-and-debugging
我已经这样做了 MYMWA.cmd 文件,
\Windows\CrEme\bin\CrEme.exe -Of -tiny -classpath \Windows\CrEme\lib\AWTclasses.zip;\XONTMWA\lib\j4205328.zip oracle.apps.mwa.awt.client.StartGUI
但是不支持.cmd/.bat 文件。
请有人告诉我是否可以安装在Windows Mobile 6.5 版本中?
I have done the MWA setup in the PC. It's workig fine. Same thing I want to setup in the Windows Mobile 6.5 version. How we can do this. I have done in computer(PC) using this
http://apps2fusion.com/at/43-ss/225-mwa-setup-testing-error-logging-and-debugging
I have done MYMWA.cmd file like this
\Windows\CrEme\bin\CrEme.exe -Of -tiny -classpath \Windows\CrEme\lib\AWTclasses.zip;\XONTMWA\lib\j4205328.zip oracle.apps.mwa.awt.client.StartGUI
but .cmd/.bat file not supported..
Please anybody tell me is it possible to install in the Windows Mobile 6.5 version?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Windows Mobile 不支持 cmd/bat 文件。您需要创建一个 lnk 文件(链接文件)。使用您最喜欢的 ASCII 编辑器(记事本也可以)并创建一个名为 mwa-start.lnk 的新文件。只放入一行(不要在该行后按 Enter 键):
同样,这一行没有行结束,文件必须以最后一个字符结束,而不是 CR/LF。
如果您在编辑此类 lnk 文件时遇到问题,请将其命名为 mwa-start.lnk.txt,然后删除“.txt”。
然后将此 lnk 文件复制到设备上的“\Windows\Start Menu\Programs”目录。
然后,您将在设备的“开始”菜单中看到新链接作为符号。
PS:可能您需要删除 -tiny 标志。
Windows Mobile does not support cmd/bat files. You need to create a lnk file (a link file). Use your favorite ASCII editor (notepad is fine) and create a new file named mwa-start.lnk. Put only ONE line (do NOT press enter after the line) inside:
Again, NO line end at this line, the file MUST end with the last char and not an CR/LF.
If you have problems editing such a lnk file, name it mwa-start.lnk.txt and later remove the ".txt".
Then copy this lnk file to "\Windows\Start Menu\Programs" dir on the device.
You will then see the new link as a symbol in Start menu of the device.
PS: possibly you need to remove the -tiny flag.