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 SkipVought 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. craigsboyd

    Craig Boyd's web site is back on line!

    Life, I think." - Olaf, you have given a more concise answer than I could come up with. The long answer... ain't nobody got time for that! I was surprised the site was missed as much as it was. Eventually I received a request from Rick Schummer that the site be put back online. To say that I...
  2. craigsboyd

    icon doesn't always show up

    For application logo icons you should provide multiple sizes (16x16-256x256) and color depth in your ico files... http://msdn.microsoft.com/en-us/library/aa511280.aspx ...this allows Windows to do it's thing and your ico will always look as good as it can since it won't have to scale it when...
  3. craigsboyd

    Contact Name Field to ContactLast and ContactFirst fields

    Automation of Outlook is another option when parsing names... faq184-5790 SweetPotato Software Website My Blog
  4. craigsboyd

    Anyone interested in a FAQ on creating a 'quick pdf' from a text file

    And... another. SweetPotato Software Website My Blog
  5. craigsboyd

    a read only amount changing in a grid!

    Simple reproduction of this phenomenon? Also, what version of VFP? SweetPotato Software Website My Blog
  6. craigsboyd

    Is there a way to export to a newer version of Excel?

    montypython1, CreateExcelTemplate is used to create the default (new, empty, or whatever you want to call it) Excel file. It is included so that I don't have to automate Excel to create a new excel doc. This even allows for export Excel docs when Excel isn't even installed (such as on a...
  7. craigsboyd

    How to force Outlook to send items from Outbox

    As TamarGranor has already said, this is a user-controlled Outlook setting. Without some sort of hack like the aforementioned sendnow, you probably aren't going to get around it. You can use Extended MAPI to get around the security message using the VFPExMAPI.fll from my blog... VFP Extended...
  8. craigsboyd

    How to get local host info?

    Another way to do this in Win2k and above is to use the GetIfTable() function in the iphlpapi.dll. Using it is much more complex than the other 2 suggestions in this thread, but the good news is that someone has already done the heavy lifting for you...
  9. craigsboyd

    VFP Twitter API

    Interesting... I've downloaded the release and am giving it a look through. I'll be back with thoughts and feedback. PS Can't help wishing you had submitted this for possible inclusion in VFPX out on codeplex. SweetPotato Software Website My Blog
  10. craigsboyd

    Creating Excel (2007) spread sheets using VFP

    You may find the following solution on my blog useful... Using Excel 2007 File Formats in VFP 9.0 ...it allows you to work with different versions of Excel files (including Excel 2007) and even create Excel files without Excel being present on the user's computer. It is also orders of...
  11. craigsboyd

    More efficient way than this?

    The REPLACE command, unlike an UPDATE statement, is actually performed in the order in which it is written. So to increase performance another 10-15% you could use the following (modified from the examples given in this thread)... REPLACE ALL UPCOLD WITH CHRTRAN(UPCOLD, "ABSL", ""), ; COLUMN5...
  12. craigsboyd

    encrypt visual foxpro v 6.00

    If you're willing to include an FLL and the MSVCR71.dll with your VFP 6.0 application, then you can use my vfpencryption71.fll which is available for download from my blog... http://www.sweetpotatosoftware.com/SPSBlog/PermaLink,guid,e1cd4af4-1eff-4ef8-9abd-4999813ec6dc.aspx SweetPotato...
  13. craigsboyd

    How to change backcolor of a header in the grid

    It's probably because your grid's Themes property is set to .T. Change Themes = .F. and see if that clears up the mystery for you. SweetPotato Software Website My Blog
  14. craigsboyd

    How to terminate other windows process

    Some code that I picked up somewhere that Doug Hennig wrote will do what you want... ******************************** FUNCTION KillProcess *============================================================================== * Program: KillProcess * Purpose: Terminate the specified application *...
  15. craigsboyd

    GOOGLE/MAPQUEST Question

    Erm... Thank you Brian. <g> SweetPotato Software Website My Blog
  16. craigsboyd

    Is there a Save event in word that VFP can trigger

    You can probably use VBA in the document to modify the field value in your dbf. That's the only way I can see this happening since the Word document could be edited outside of your application (started by the user manually instead of through automation). SweetPotato Software Website My Blog
  17. craigsboyd

    GOOGLE/MAPQUEST Question

    Nice example Mike! SweetPotato Software Website My Blog
  18. craigsboyd

    Set Fox 9 to output Fox 2 Compatible Tables

    Select 0 Use VFP9Tbl.dbf Copy To VFP2xTbl With Cdx Type Fox2x SweetPotato Software Website My Blog
  19. craigsboyd

    WindowState changes by itself ?!

    I'm confused. How could setting the focus to the VFP base class combobox cause such a thing? SweetPotato Software Website My Blog
  20. craigsboyd

    programming pocket pc application via VFP

    Well, I would have said that you should do this using Visual Studio and the .NET Compact Framework, but judging by your PS it appears that you don't want to do this. So, I would suggest hunkering down and learning a little embedded Visual C++ instead. Neither of these will feel like vfp to you...

Part and Inventory Search

Back
Top