-
Notifications
You must be signed in to change notification settings - Fork 18
Memowidth problems when searching #19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
CarlosYohn
wants to merge
308
commits into
mattslay:master
Choose a base branch
from
VFPX:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Merge solution to Problem with Filter form
Merge solution to Problem with Filter settings file from filter form
Merge solution to Problem with Filter form
Problem with backup on replace
|
Commenting here isn't a good idea: Matt has passed away so the main location for GoFish is now https://github.com/VFPX/GoFish. |
Author
I have complained that certain people in the community are disrespectful and rude. Glad to see I'm not the only one. |
added GF_ to some procedures, see issue #45
added GF_ to some procedures, see issue #45 - Merge branch 'master' into master_ext
Merge request, Unique procedure names
Options Dialog Desktop checkbox crashes on InteractiveChange code fixed issue #47
Desktop setting
Merge Version 6.0.0
asserts removed
Version 6.0.1
debug info disabled spell check
Version 6.0.2
create a backup before migrating to version 6. closing issue #53
Backup on migrate
Circumvent a problem where files get copied multiple times and VFP brings up a dialouge.
Temporary fix
Minor issue with copy
Try to get some help with the duplicate problem issue #53
Help with duplicate problem
Version 7.1.28 - 2024-10-04
Version 7.1.29 - 2024-10-11
- Drop-down for search combo box now shows original case instead of converting to lower case (#306)
Version 7.1.30 - 2024-11-01
- Fixed "illegal value error" bug occurring when shrinking the form width (#308)
Version 7.1.31 - 2024-11-04
Bug fixes: - "Set scope to Active Project" in Options form was not being saved (#310) - For some users, when * was used in a wildcard search along with either a left or right parenthesis, no matches were being found (an apparent problem with grep.exe).
Version 7.1.32 - 2024-11-09
New feature: - "Include Files" option added to Advanced screen, to allow searching additional files not part of the normal scope (project or directory). See also the right-click context menu on the "Advanced" button. (#314) Bug fix: - Scope option "Projects in CurDir()" did not always include all projects.
New feature: - "Include Files" option added to Advanced screen, to allow searching additional files not part of the normal scope (project or directory). See also the right-click context menu on the "Advanced" button. (#314) Bug fix: - Scope option "Projects in CurDir()" did not always include all projects.
Version 7.1.33 - 2024-11-19
New feature: - Menu item "Look Up Reference" in the context menu for a code window can be modified to use GoFish instead of Code References. To do so, use the Thor configuration screen to mark Thor Tool "Replace code window context menu items" as "Run at startup".  Bug fix: - Scope option "Projects in CurDir()" failed if there were no open projects.
Version 7.1.34 - 2024-11-21
Bug fixes: - Using "Filter by this Method" in grid context menu included erroneous records. - When restoring saved searches (new, related to recently added option for "Include Files")
Version 7.1.35 - 2024-11-30
Bug fixes: - Field "Cleanup" in MNXs was not being searched (#321)
Version 7.1.36 - 2024-12-05
Version 7.1.37 - 2024-12-12
Extended definitions for project-related Scope settings when no projects satisfy the Scope criterion:
- "All Open Projects"
- Searches all open projects, if any
- Else projects in the current directory, if any
- Else files in the current directory.
- "Active Project"
- Searches the active project, if any
- Else projects in the current directory, if any
- Else files in the current directory.
- "Projects in current directory"
- Searches projects in the current directory, if any
- Else files in the current directory.
Version 7.1.38 - 2024-12-24
Extended definitions for project-related Scope settings when no projects satisfy the Scope criterion:
- "All Open Projects"
- Searches all open projects, if any
- Else projects in the current directory, if any
- Else files in the current directory.
- "Active Project"
- Searches the active project, if any
- Else projects in the current directory, if any
- Else files in the current directory.
- "Projects in current directory"
- Searches projects in the current directory, if any
- Else files in the current directory.
Version 7.1.39 - 2024-12-27
- Restores Scope setting 'Files in current Results' when loading history - Restores count of matches (upper right corner) and files with matches when loading history - Updates count of matches and files with matches when filtering the grid.
Bug fix: - Problem with "class not found" error, caused by problems with "Set Procedure" adventures (#324) Minor UI changes: - When loading history - Restores Scope setting 'Files in current Results' - Restores count of matches (upper right corner) and files with matches - Correctly updates count of matches and files with matches when filtering the grid.
Version 7.1.40 - 2025-01-07
Bug fix in 7.1.40 when using filter form (and possibly other forms)
Version 7.1.41 - 2025-01-12
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
You should add
SET MEMOWIDTH TO 8192 && or any high value
Suposse you are looking for forms that uses 'legaliza.dbc' database in dataenviro; and one form's cursor has this line on his properties:
Database = ..........\datosvfp\legaliza\datos_zar\legaliza.dbc
Having memowidth setting of 50 (default), gofish wouldn't find it because line will be divided in this way:
line 1 = "..........\datosvfp\legaliza\datos_zar\legaliz"
line 2 = "a.dbc"
So atcline returns 0