Search the web
Sign In
New User? Sign Up
batchworld · Batch World
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3186 - 3215 of 8119   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3186
Hello everyone. I am new to this list and need some help. I have been doing some research regarding interactivity options with Batch files. I am looking for...
veganman23
Offline Send Email
Jun 1, 2003
8:41 pm
3187
... I think Windows scripting host can do what you want. -- Regards, Michael...
Michael Marquart
foxidrive
Offline Send Email
Jun 2, 2003
3:45 am
3188
Hello, Assuming you are working in Windows NT/2000, I would go with this: ******************** @echo off REM This will render all possible combinations of...
Sam Wallace
guillaumedep
Offline Send Email
Jun 2, 2003
2:49 pm
3189
Mick is right, the Windows scripting host will do what you want. Here is an example of how I pop up script independent info windows: ================= dim...
kcmjr@...
kcmjr
Online Now Send Email
Jun 2, 2003
4:13 pm
3190
Ken - would the example you mention below allow for user input to the questions asked? Also, forgive my ignorance, but what is the "Windows scripting host"? ...
veganman23
Offline Send Email
Jun 2, 2003
4:55 pm
3191
On Mon, 02 Jun 2003 14:49:12 -0000, Sam Wallace wrote: Hi Sam, ... [snip] I was interested to see your code, and coz I couldn't figure out how it worked by...
Michael Marquart
foxidrive
Offline Send Email
Jun 2, 2003
5:30 pm
3192
I optimised it a little for speed. Takes a 450 MHz pc ~1 minute. ... @echo off if exist input?.txt del input?.txt set var=1 2 3 4 5 6 FOR %%a IN (%var%) DO...
Michael Marquart
foxidrive
Offline Send Email
Jun 2, 2003
5:55 pm
3193
Yes you could do that, it's just a Visual Basic script. I'm not a VB programmer, that example was shown to me and I've been using it a lot. WSH or Windows...
kcmjr@...
kcmjr
Online Now Send Email
Jun 2, 2003
6:45 pm
3194
this stuff is really cool! Thanks for posting a simple example and how to run it. So many times folks can never get startted in someting new because we have...
Jolly Green Giant
hurricanedavid
Offline Send Email
Jun 2, 2003
8:58 pm
3195
Speaking of all this action script stuff, does anyone know how to use vbscript (run via cscript) to copy a string (like "Hello World" to the windows clipboard?...
Jolly Green Giant
hurricanedavid
Offline Send Email
Jun 2, 2003
9:20 pm
3196
OK guys. I really apologize for my ignorance about VB. That is why I am trying to stick with DOS if possible. Therefore, is there any way to have ...
veganman
veganman23
Offline Send Email
Jun 2, 2003
11:13 pm
3197
I have tried both of your suggestions from the Command prompt and get either a "syntax" error for Jolly's or a "Unterminated String Constant" from Ken's. Any...
veganman
veganman23
Offline Send Email
Jun 2, 2003
11:48 pm
3198
Hi. Don't let it word-wrap. The script below is only 3 lines of text. Gerry Pareja (Vancouver, Canada)...
G. J. Pareja
gjpareja
Offline Send Email
Jun 2, 2003
11:57 pm
3199
Try this...save it to a text file with .vbs as the extension. At a command prompt, run: cscript scriptname.vbs '--- BEGIN SCRIPT --- Dim input input =...
Josh Fitzgerald
aphoric
Offline Send Email
Jun 3, 2003
1:23 am
3200
No need to apologize. NO ONE can be an expert on everything about the computer. I know, I started on them back in 1964!!! And I still learn sometning new ...
Rob Hoover
bobthetechie
Offline Send Email
Jun 3, 2003
1:28 am
3201
Josh, that looks great. Unfortunately, this gets me back to VB, which I know very little about. Is it safe to say I would need to understand quite a bit ...
veganman
veganman23
Offline Send Email
Jun 3, 2003
1:33 am
3202
Hi Michael, I looked at what he said and the examples and came up with a way of producing unique combinations of entries in a text file. So a result of...
Sam Wallace
guillaumedep
Offline Send Email
Jun 3, 2003
1:35 am
3203
Actually, it's just VBScript which is a subset of VB and doesn't require a compiler. It is fairly simple to learn, at least the basics, no pun intended....
Josh Fitzgerald
aphoric
Offline Send Email
Jun 3, 2003
1:47 am
3204
... I'm keen to get a toe-hold into VBscript but I prefer local documentation rather than web based. After a quick search I found "msdn's 32-bit VBScript...
Michael Marquart
foxidrive
Offline Send Email
Jun 3, 2003
4:11 am
3205
... I just tried this code and have two questions: 1) How would I go about formatting the code so it doesn't exceed 75 characters 2) how does one break out of...
Michael Marquart
foxidrive
Offline Send Email
Jun 3, 2003
4:24 am
3206
... Syntax error generally means that you made a typing blunder and Gerry has already mentioned the other one - which does indicate, by default, that you do...
Michael Marquart
foxidrive
Offline Send Email
Jun 3, 2003
4:35 am
3207
You will have to go with KIX32 or similar program. This is a 'rich' DOS add on. There are others but you will not be disappointed in spending the time to...
Mr Chris Padilla
chrispyflakes
Offline Send Email
Jun 3, 2003
5:20 am
3208
Here is a link for the downloadable version of the documentation. It includes the docs for: - VBScript - JScript - Windows Script Host - Windows Script...
Josh Fitzgerald
aphoric
Offline Send Email
Jun 3, 2003
12:27 pm
3209
1) You can replace Chr(10) & Chr(13) with vbCrLf which is an internal constant to VBScript. You could also use the line continuation character to break the...
Josh Fitzgerald
aphoric
Offline Send Email
Jun 3, 2003
1:21 pm
3210
... That's useful. Thanks. ... You stratigically omitted a closing parenthesis, to see if I was paying attention! :) In 2) I was referring to a method of...
Michael Marquart
foxidrive
Offline Send Email
Jun 3, 2003
3:12 pm
3211
... Oops! Good catch! ... If you run your script with CSCRIPT, then I believe Ctrl+C will break out. If you run with WSCRIPT, you'll have to kill it from...
Josh Fitzgerald
aphoric
Offline Send Email
Jun 3, 2003
3:23 pm
3212
I want to get the output from one batch file to be the input for a second, which is proving difficult. So far I've got in the first one : dir c:\%1.class/s/b...
transportcontrol
transportcon...
Offline Send Email
Jun 4, 2003
1:55 pm
3213
Hi all, I need a way to have my batch file wait or pause for a certain amount of time and then resume execution of its commands. I don't want any user input....
Kevin Bachelder
krbachelder
Offline Send Email
Jun 4, 2003
2:16 pm
3214
Use sleep.exe from the resource kit. Usage: sleep time-to-sleep-in-seconds Lamar ... From: Kevin Bachelder [mailto:kbachelder@...] Sent: Wednesday,...
Lamar Morris
lamarmorrist...
Offline Send Email
Jun 4, 2003
2:23 pm
3215
... Describe your OS and 2nd batch file. I have a feeling one batch file will serve the purpose. -- Regards, Michael...
Michael Marquart
foxidrive
Offline Send Email
Jun 4, 2003
2:44 pm
Messages 3186 - 3215 of 8119   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help