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 TouchToneTommy 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: *

  1. foxmuldr3

    Visual FreePro Update

    Am working on Dori. My goal is to have the general framework completed and working by January 2025. Will have something to demo around then. Won't be a complete product, but will have enough functionality you'll see where I'm going. Let's target January 15. -- Rick C. Hodgin
  2. foxmuldr3

    Visual FreePro Update

    Agree completely. I've kind of resolved myself now to completing Dori in a developer form, meaning Dori will work basically like VFP9 does, just with the new abilities. I'll add the features as I'm able. Initially traditional XBASE, later SQL and other more complex coding requirement things...
  3. foxmuldr3

    Visual FreePro Update

    I just noticed it says next to my name "Jul 19, 2012." That was one week to the day after I started the Visual FreePro Project. In the next four years I wrote nearly 120K lines of code in my evening, weekend, holiday, and personal time hours. I came so close ... but was taken down by that...
  4. foxmuldr3

    Visual FreePro Update

    For me it was 1986. And I agree with you 100%. I'll need help to make it be complete enough to create a product for others to use. If anyone's interested in working on a Christian project, meaning one that has a literal cross on the splash screen and religious references at the top of every...
  5. foxmuldr3

    Visual FreePro Update

    In C# you can access standard exposed functions in DLLs. You'd be able to use the Dori API that way. However, the philosophy of Visual FreePro, Jr., and that of Dori, is that a developer should be looking to create stand-alone software / products. They do not require the cloud, a network...
  6. foxmuldr3

    Visual FreePro Update

    I had someone contact me recently asking about the status of Visual FreePro, Jr. I've gone through three iterations of different ways to apply the internal logic and design of Visual FreePro into a new product. I've currently settled on a 4th that I'm developing presently. I'm not sure I'll...
  7. foxmuldr3

    Dropdown won't select with mouse, only keyboard

    Chris, I think you and I would do well collaborating on projects together. Ever want to work on Visual FreePro? -- Rick C. Hodgin
  8. foxmuldr3

    Dropdown won't select with mouse, only keyboard

    I'm going to write an extension to a utility DLL I have that will hook into the WndProc() functions used for both windows, intercepting every message. I'm going to compare the messages sent from a system that's working (my PC), and the ones that aren't working, to see if I can see where there's...
  9. foxmuldr3

    Dropdown won't select with mouse, only keyboard

    Setting affinity did not work. Same issue as before. -- Rick C. Hodgin
  10. foxmuldr3

    Visual Studio Help Files / Visual FoxPro 6 (VFP 98) Help File (FOXHELP.CHM)

    Another option I've used successfully if you have a license for it, is to get older copies of Windows and run them in VMs when you need certain things. With VirtualBox you can use the seamless integration option to have windows from those VMs appear as top-level apps on your desktop. With...
  11. foxmuldr3

    Dropdown won't select with mouse, only keyboard

    Since the HWND of the popup is receiving mouse input, it has to send messages back to the parent HWND for VFP to identify the activity. I'm guessing the base number it's using is not being set properly for some reason, and the messages from the mouse are being sent back, but they're not being...
  12. foxmuldr3

    Dropdown won't select with mouse, only keyboard

    I wrote the C++ program below, and here are the results when I open a dropdown in Windows. It produced the following output when the dropdown opens up: * Dropdown is opened with mouse click: #1 -- New window for popup Add 002e0e88 <no title> X=56, Y=122, W=560, H=53 Class = vfp994000003...
  13. foxmuldr3

    Dropdown won't select with mouse, only keyboard

    My wife tells me I have special powers in that regard. LOL :-) I just think about things differently than other people do at times. I look at most things from a lower-level perspective. For the combobox dropdown part, for example, I recognize it as a separate window being drawn by Windows. I...
  14. foxmuldr3

    Dropdown won't select with mouse, only keyboard

    All of the comboboxes we have can be clicked on or use the keyboard to open, and they all work with the mouse ... except these three identical computers. I haven't had time to spend on the issue yet, so I'm pulling all of my details from memory. IIRC, the dropdown used a popup window similar...
  15. foxmuldr3

    Dropdown won't select with mouse, only keyboard

    Are you saying you cannot click on any time in the dropdown, and that it doesn't track with the mouse moving as it goes? And that you can only access it by keyboard? We have not been able to reproduce that condition, but that is what our client is seeing on three new 24-core Dell PCs. --...
  16. foxmuldr3

    Dropdown won't select with mouse, only keyboard

    I will write some code to correct either you or me when I get the chance. :-) If you want, try writing an app to test for top-level WS_CHILD or tool windows present in the system (all of them). Make it run continually and report changes. When the dropdown opens up you'll see a new entry, and...
  17. foxmuldr3

    Dropdown won't select with mouse, only keyboard

    MODIFY FORM c:\temp\test.scx * Add a single combobox. * Add this code for Load(): CREATE CURSOR c_data ; ( ; cItem c(120) ; ) INSERT INTO c_data VALUES ("Item 1 Item 1 Item 1 Item 1 Item 1 Item 1 Item 1 Item 1 Item 1 Item 1 Item 1") INSERT INTO c_data VALUES ("Item 2 Item 2 Item 2 Item...
  18. foxmuldr3

    Dropdown won't select with mouse, only keyboard

    The combobox dropdowns are the part that comes down (or goes up) once you click the down arrow on a combobox. That popup part uses a separate HWND that is its own window to Windows, and it's not drawn atop the existing form window. I believe the issue is there in the handler for that popup...
  19. foxmuldr3

    Dropdown won't select with mouse, only keyboard

    Haven't seen this before. We have a customer that purchased three new 24-CPU Dell machines with Windows 11. The FoxPro apps we have don't allow the combobox dropdowns to work without using the keyboard. You can click on the control to bring up the dropdown list, and then arrow up/down and...
  20. foxmuldr3

    RM/COBOL data extraction

    We have received full folders of their programs and data. I only see compiled COB files, but we do have access to a copy of their system and data. I should be able to begin accessing it starting this week. -- Rick C. Hodgin

Part and Inventory Search

Back
Top