Search found 4 matches

by techno-slut
05 Sep 2011 06:17
Forum: DOS Batch Forum
Topic: List Directories as Menu Options
Replies: 5
Views: 5859

Re: List Directories as Menu Options

:oops: Guess i need to triple check my typing

Thanks though :-)
by techno-slut
05 Sep 2011 05:13
Forum: DOS Batch Forum
Topic: List Directories as Menu Options
Replies: 5
Views: 5859

Re: List Directories as Menu Options

OK so i spent a bit more time on this and am at a loss again I have the directories displayed as menu options. Great I then prompt for the user to make a choice and attempt to determine which directory this relates to. The trouble im having is the line: IF [%CHOICE%]==[!armbusOption!] (SET armbusVer...
by techno-slut
05 Sep 2011 03:33
Forum: DOS Batch Forum
Topic: List Directories as Menu Options
Replies: 5
Views: 5859

Re: List Directories as Menu Options

Thanks for that Ed.

Works a treat :D
by techno-slut
05 Sep 2011 02:31
Forum: DOS Batch Forum
Topic: List Directories as Menu Options
Replies: 5
Views: 5859

List Directories as Menu Options

Morning All, Im currently trying to list the subdirectories as menu options within a batch file. Ive gotten so far but unable to get menu choices displayed. What i have so far is: SET option=1 ECHO. for /d %%X in (C:\BusNet\Code\armbus\*) do ( SET /a option+=1 ECHO. %option% %%X ) PAUSE How ever the...