WinBatch Tech Support Home

Database Search

If you can't find the information using the categories below, post a question over in our WinBatch Tech Support Forum.

TechHome

Functions

Can't find the information you are looking for here? Then leave a message over on our WinBatch Tech Support Forum.

DropWild Functions

Keywords:   dropwild

Question:

For some reason, DropWild has never worked for me. The doucmentation says the following example SHOULD work:
	VarX="Test"
	VarY="Message"
	Message(VarX,VarY)
	DropWild(Var*)
If I read the documentation ANOTHER way (it seems to be ambiguous), the DROPWILD should really be Drop() with an asterisk inside the parenthesis.

No matter which method I use, I get a consistent error message:

	"3052: Uninitialized variable or undefined function"
Does this function really exist? If so, what is the correct syntax?

Answer:

It needs quotes ...as opposed to DROP which does not. Try..
	VarX="Test
	VarY="Message"
	Message(VarX,VarY)
	DropWild("Var*")

Article ID:   W14362
Filename:   DropWild Function.txt
File Created: 1999:10:28:11:46:06
Last Updated: 1999:10:28:11:46:06