| FAQ #2225, published on 2002-10-15 |
|
| I have begun a project WinDev 7 or more recent on HF55 format files. HReadSeek doesn't find anything. What can I do? |
You are using data completed with spaces (default mode of WinDev 5.5). WinDev 7 leaves data as they are by default. In your case you can configure WinDev 7 to treat the data as for WinDev 5.5. Simply add the two following lines to the initialization of the project:
WithSpace(True) FieldNoSpace(True)
In this context, HReadSeek() will be used as in WinDev 5.5, notably by completing the search value with spaces. |
|
|
|
|
|