Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: dkean4
  • Content: Threads
  • Order by date
  1. dkean4

    PROTECTED hDevice, channel / What does the statement PROTECTED provide

    I built this program about 15 to 20 years ago and I completely forgot what this keyword "PROTECTED" provides. If you need to see it in context here is a snippet of the code... VFP sees it as part of its language code by Highlighting it and uppercasing it as you type it in. I guess I got old...
  2. dkean4

    The globality of FOXUSER.DBF.

    I have been hesitating concerning how the FOXUSER.DBF file should be used. Should each Project have a FOXUSER.DBF file set in its own directory, or can we use the FOXUSER.DBF file within its Installation directory like: From the Environment Manager I notice that you can choose any location...
  3. dkean4

    What causes the highlighting of coded code text to reverse the highlighting?

    Messing with the former problem, (with Resources), I now suddenly have this strange effect. If anyone has seen and cured this problem, please let me know... The Click, MouseDown, and RightClick have code are they are not highlighted. The events that have no code, however, are highlighted...
  4. dkean4

    Pinning down the Data Session, Command, Call Stack, Locals, and Debug Output windows

    I have a 55" monitor on a 4K monitor and it is great for VFP. Absolutely love it. But there is an irritating problem on the bottom line, where I keep the staple following little utility windows. From left to right on the BOTTOM GROUP, I like to have them sit as follows: Bottom-Left I...
  5. dkean4

    How to interrupt a running VFP app without having VFP interrogating an outside file, device or other

    I know how to use a timer to trigger an occasional interrupt like... "Is there a file named 'xxx.txt' in some subdirectory". But now I need some "shell" or another way to flag a running VFP app so that the user can use his/her app without interruption. Can 2 independent apps be running...
  6. dkean4

    How to send text messages to my phone with VFP

    Hi guys, Does anyone have some code for sending text messages directly to a phone, like my own phone, to start with... Dennis Kean Dennis Kean Simplicity is the extreme degree of sophistication. Leonardo da Vinci
  7. dkean4

    Detecting the directory of a VFP Form

    I have been away for too long and I forgot how to detect the directory of a form that is being edited in VFP. As an example, I have some assets sitting in a directory of a form, and I need to access, from a program running in a different drive. The target form is open for editing in VFP. I...
  8. dkean4

    Question about DDE, ... Iis it used any more?

    Simple question. Is DDE used to exchange data between dissimilar applications these days? Dennis Kean Dennis Kean Simplicity is the extreme degree of sophistication. Leonardo da Vinci
  9. dkean4

    DoScroll() in a Grid does not work if the application is in a screen left of the Main screen

    Hello VFP Warriors, I have a peculiar problem today. on my development station, I use a 4K screen with two other 1K screens on the left side. When I drag my VFP application into the left screens, the scrolling inside of a VFP Grid is disabled... not responsive. The MouseScroll() no longer...
  10. dkean4

    Moving shortcuts on desktop with VFP9

    Does anyone have a sample code of how to move Shortcuts on the Desktop? I found this code for creating new Shortcuts, WSHShell = CreateObject("WScript.Shell") * Read desktop path using WshSpecialFolders object loDesktopPath= WSHShell.SpecialFolders("Desktop") * Create a shortcut object...
  11. dkean4

    After waking from sleep vfp error "...pushjump / popjump call"

    Lately, I get this error if I allow my current project to stay open and go to get a cup coffee. I wake up the PC and log back in and VFP has crashed giving me a warning about "...pushjump / popjump call". I looked for that error on the WEB and no cheese. Has anyone encountered this problem...
  12. dkean4

    OPEN DATABASE asks "Index does not match the table. Delete index file and recreate the index&qu

    I can deal with this when I know which table's Index is blown. But here I have close to 60 tables in a DATABASE and I have no clue if it is complaining about a table index or the DATABASE index. REINDEX DATABASE seems to take a few seconds and does not complain when it is done. So, it must be...
  13. dkean4

    Listing all the activated SET PROCEDURE files

    I am making use of SET PROCEDURE files a lot and I need, at times, to know is one particular "SET PROCEDURE" file has been SET already. Alternatively, what are the implications of reloading SET PROCEDURE with the ADDITIVE option on top of an loaded or SET file? Consider this: SET PROCEDURE TO...
  14. dkean4

    How to get rid of the peskey Double Arrows for Tabs and Dots for Spaces

    I don't know how I triggered it, but On some of my code pages am seeing Double Arrows for Tabs and Dots for spaces in the code. I guess some people like that or some tormentor invented them to drive me crazy! I was messing with so many settings today and this came up. Does anyone know how to...
  15. dkean4

    Manipulating the Tools>>Editor>>Syntax color settings in compiled programs

    I have created a VFP program which allows me to code VFP as if I was in the VFP IDE. The principal feature lies in the use of the command: MODIFY COMMAND file.prg This command is most likely connected to the resource file foxuser.dbf, where in one of the records the color code from...
  16. dkean4

    Copying Emails into a VFP table from Outlook

    Is there some simple way to copy Emails from Outlook (Multiple accounts)? I need to parse the Email content and be able to delete Emails via VFP... Dennis Kean Simplicity is the extreme degree of sophistication. Leonardo da Vinci
  17. dkean4

    Binding Events to DEFINEd WINDOWs

    I use DEFINE WINDOW and MODIFY COMMAND to create an Editing window for VFP code, for on the fly changes while running a VFP app. The code resides in a Memo field, but MODIFY MEMO does not invoke the VFP Code Editor with all the bells and whistles. Here is the code for the process: SELECT...
  18. dkean4

    How to enumerate active windows in Win7 with VFP 9.0

    I seem to have some problems getting a list of active windows in Windows 7.0, (not forms in vfp). I used to do it in XP and, (using my old method), I am now only getting a reference to the Task switching window, because of the way I was doing it in Windows XP, from VFP. I need to get the...
  19. dkean4

    Unicode CSV file fails to reveal data with FILETOSTR() Help

    Hi guys... I am getting unicode CSV files from an application and the FILETOSTR() function takes a 13 meg file to 3 characters _cliptext = FILETOSTR("F:\VFP Projects\FUN\.UK100CashM15.csv") How can I convert unicode files to ANSI whatever format will work in VFP? TIA Dennis Kean...
  20. dkean4

    How to invoke the VFP Help outside of the VFP IDE

    For some abstruse reason, I need to be able to invoke the VFP Help screen and do a search on an expression of choice from outside of the VFP IDE? Dennis Kean Simplicity is the extreme degree of sophistication. Leonardo da Vinci

Part and Inventory Search

Back
Top