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.

SysParamInfo Usage

Keywords: 	  sysparaminfo

Question:

It's unclear to me how SysParamInfo with the FILTERKEYS format string works. If I want to specify the length of time, in milliseconds, that a user must hold down a key before it is accepted by the computer, say 20 milliseconds, would the function be structured:
   SysParamInfo(50, 3|20,0)

Answer:

It would be something like:
  filterkeys = SysParamInfo(50, "", 0)
  newval = 20
  filterkeys = ItemReplace(newval, 3, filterkeys, @TAB)
  SysParamInfo(51, filterkeys, 3)

Article ID:   W15504
File Created: 2003:05:13:11:28:24
Last Updated: 2003:05:13:11:28:24