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 strongm 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. Joe Crescenzi

    Send E-Mail

    My perspective on VFP is a bit more optimistic. I feel the language itself still has potential beyond VFP9, but clearly not from Microsoft. Even if nobody successfully creates a new platform that can run my old code, I'm fine with that because I've come to appreciate the fact that it's stable...
  2. Joe Crescenzi

    Send E-Mail

    Although I don't use West Wind, your error suggest that you do, and Rick Strahl's support forum points to two potential causes, either the library is not in the path, or that it's not using the .Net components as the documentation says it should. The wildcard here is whether it's not compatible...
  3. Joe Crescenzi

    Visual FreePro Update

    I neglected to address this. I love to express my Christian faith in my projects by placing Easter Eggs here and there that display messages about my faith and to express my gratitude. I keep putting two of my Christian passion projects on hold. One was called FindingFaith.Com, the other was...
  4. Joe Crescenzi

    Visual FreePro Update

    My transition from 2.6 to Visual FoxPro was relatively painless. Initially, it was the exact same code, with a few extra lines at the top to change the default font for the screen to something that would let my old code fit properly with a fixed width font that gave me at least 80 columns and 25...
  5. Joe Crescenzi

    Visual FreePro Update

    I'm 59, and I definitely lack the concentration I used to have, but I still code every morning, which is when my brain works best. I completely understand how you feel about this. I've got more than a few passion projects I keep plugging away at that I want to exist long after I retire and...
  6. Joe Crescenzi

    ComboBox not accepting a pre-recorded date

    I replied recently to a similar question and most likely this has a similar cause. Datatype mismatches can only mean one thing, something you are storing in a control is trying to be placed in a field that does not match it. You can assign any value to a variable or a control and it will never...
  7. Joe Crescenzi

    Visual FreePro Update

    For what it's worth, if you manage to build something that can run exiting code I wouldn't expect it to be free and many of us would gladly support it by paying for it. I've seen some people write about the potential of copyright issues, but just remember, the xBase language is not copyrighted...
  8. Joe Crescenzi

    Visual FreePro Update

    Ditto for C# or VB variants, but I wouldn't be able to use them for a huge percentage of my projects unless there was a way to migrate code, screens, libraries and reports. What I'd really love is simply a new platform that is still as close to VFP as possible, including PRGs, report files and...
  9. Joe Crescenzi

    ComboBox not showing recorded item

    As a rule of thumb, the dropdown will only select something if the value in the table matches one exact value in the list. If it doesn't match anything exactly, nothing will be selected. Technically, there can be more than one match, but it will use the first one it finds. If you can select...
  10. Joe Crescenzi

    Data type mismatch

    That one sentence explains it perfectly. There is no other cause possible. The table has a type. The textbox does not have a type until you either set an initial value in the designer, or programatically via Textbox.value = (something) before the form becomes active, where whatever you put...
  11. Joe Crescenzi

    Poll #4: What (proposed) successors of FoxPro have you tried, plan to use/learn about?

    I love the concept of FoxInCloud, but I've always worried about the logistics of where and how to host it, and that it essentially runs on top of the same FoxPro runtimes, which I love and hate the idea of. I did some fun experiments by installing just the FoxPro OLE drivers, then creating a...
  12. Joe Crescenzi

    FoxPro button status

    That's exactly right. Believe it or not, I still have some legacy code that uses @ SAY / GETs in sections and the approach I used there was to clear the screen, create an endless loop with DO WHILE .T. that paints the screen with all sorts of conditional variations and continues to loop after...
  13. Joe Crescenzi

    FoxPro button status

    I didn't notice the version. Since 2.6 lacks properties, methods, and events, you will only be abled to do what you're asking if you create your own environment where you track the status in a variable, then generate the screens on the fly in some sort of loop. For example, if you paint the...
  14. Joe Crescenzi

    Poll #4: What (proposed) successors of FoxPro have you tried, plan to use/learn about?

    Microsoft has frustrated me for decades as they keep pushing developers to entirely different paradigms, then drop support a few years later. I jumped on COM and .ASP as soon as it came out, only to abandon boatloads of code when ASP.NET / ASPX replaced it. Then I focused on ASPX with VB. I...
  15. Joe Crescenzi

    Poll #4: What (proposed) successors of FoxPro have you tried, plan to use/learn about?

    I think VFPA is using newer C++ Runtimes too, and it's basically identical to the last official release, with some bug fixes. The developer also got rid of the 2GB file limit, but that's not a concern for me. I still won't use it in production, if at some point Microsoft discontinues support...
  16. Joe Crescenzi

    Data type mismatch

    Two things: 1. To know for sure what is going on there... put this in front of the line that is failing: MESSAGEBOX("thisform.iznos2.value is type: " +VARTYPE(thisform.iznos2.value)) I created this to illustrate what it will look like when I don't assign a value before using it... it's C...
  17. Joe Crescenzi

    Data type mismatch

    When debugging complex forms with lots of controls and fields, one approach is to isolate just one control that doesn't seem to work onto a test form so you eliminate any chain reactions that come from the complex forms with a lot of controls. It's when you have a simple form with a single...
  18. Joe Crescenzi

    FoxPro button status

    I'm sorry, I was trying to simplify by using essentially Pseudo code, since I don't know the name of your button, or where it is. If the button is on the top of a form, it would read: If Thisform.MyButton.Enabled If it's someplace inside another control such as a container or in a page within...
  19. Joe Crescenzi

    FoxPro button status

    PS... In my response, I was assuming the OP was not intending to put code like this in the same button that is being clicked, otherwise there would be no need to check the status of the button, and it definitely couldn't be reversed by clicking the same button. For what it's worth, I like using...
  20. Joe Crescenzi

    FoxPro button status

    I agree. I just wanted the easiest way to illustrate reading the value and setting the value, so I opted for simple independent IF and = lines to make it easy to read.

Part and Inventory Search

Back
Top