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 Chriss Miller 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: craigsboyd
  • Content: Threads
  • Order by date
  1. craigsboyd

    VFP CTPs for SP2 and Sedna Released

    Download SP2 and Sedna CTPs from Microsoft Additional information regarding the CTPs... thoughts, problems encountered, and workarounds. SweetPotato Software Website My Blog
  2. craigsboyd

    Free VFP Compression Library

    I've created an FLL that allows VFP developers to easily work with and create zip files. You can get the free FLL and detailed documentation at the link below... VFPCompression.FLL Any feedback on it or ideas for improvements would be greatly appreciated. Thanks. SweetPotato Software Website...
  3. craigsboyd

    Google Earth Automation

    Well, I could have sworn there was a thread out on these forums about automating Google Earth that I answered yesterday, but I can't for the life of me find it now. In any event, here is some VFP code that shows a couple things you can do with Google Earth... First Example *!* Let's go look at...
  4. craigsboyd

    SednaX is Born!

    In the interests of adding value to Visual FoxPro and complementing the efforts of the MS Fox Team as they work their way towards the release of Sedna in 2007. I've created a community owned and operated project called SednaX out on the GotDotNet site. http://codegallery.gotdotnet.com/sednax...
  5. craigsboyd

    Hyperlinks to Virtual Directory don't work

    I have a blog that is set up as a virtual directory of my main site. http://www.sweetpotatosoftware.com/spsblog/ ...clickin on a hyperlink to the blog doesn't work, but if I take the exact same URL and paste it into the address bar and click Go, the site comes up. In the log the hyperlink hit...
  6. craigsboyd

    Visual FoxPro Encryption and Hashing

    I've created a free FLL that gives Visual FoxPro developers access to the following: Encryption Ciphers: Blowfish AES (Rijndael) Hash Functions: SHA1 SHA256 SHA384 SHA512 MD5 RIPEMD128 RIPEMD160 You can find out how to use the new functions and download the FLL from the following blog...
  7. craigsboyd

    Two New Visual FoxPro Functions

    BindEventEx and UnbindEventEx allows Visual FoxPro developers to access the power of the SetWindowsHookEx API function via an FLL. Download for the FLL and a couple of examples of its use at the following link. BindEvent on Steroids SweetPotato Software Website My Blog
  8. craigsboyd

    US Department of Commerce

    http://www.zdnet.com.au/news/security/0,2000061744,39200026,00.htm ...ethical reversal that's in our best interests given ICANN's behavior or “Nothing corrupts like Power, and, Absolute Power corrupts absolutely” Who would have thought that a single "." could become such a bone of contention...
  9. craigsboyd

    Occurences of char* in another char*

    Say I have the following... char *Phrase = "Hello World" char *Letter = "o" What's the best way to find the total number of occurrences of Letter in the Phrase? SweetPotato Software Website My Blog
  10. craigsboyd

    News From DevCon

    I monitor most of the feeds regarding VFP and David Stevenson appears to be the first one to post news from DevCon... http://talkingfox.blogspot.com/2005/06/devcon-keynote-shows-early-sedna-ideas.html www.sweetpotatosoftware.com
  11. craigsboyd

    Project Sedna to Enhance Visual Foxpro 9

    http://msdn.microsoft.com/vfoxpro/roadmap/ www.sweetpotatosoftware.com
  12. craigsboyd

    Netscape 8 'breaks' IE

    ZDNet Article: Netscape 8 'breaks' IE What are the perceived ethical responsibilities of Netscape and MS to their consumers? What are your thoughts about Netscape releasing a product that breaks IE and your thoughts regarding MS telling it's consumers to uninstall their competitors product...
  13. craigsboyd

    Obscure VFP Toolbar Class Bug

    This is perhaps a bug that you won't have occasion to run into. But I did, as I used to use toolbars as panels in my applications prior to VFP 9 (now we have dockable forms). Steps to reproduce Create a new toolbar class in the VFP IDE Put a container inside that toolbar Put a grid inside that...
  14. craigsboyd

    VFP 9 Report/Data Environment Bug

    Be careful in VFP 9 when writing code in the Reports DE events... there is a bug in VFP 9 that can cause the report designer window to stop responding and other things get messed up as well. Steps to Reproduce: Create a report Open the report's DE Open the Init event of the DE Type some...
  15. craigsboyd

    Multiple Detail Bands, Remote Views, DE Question

    Recently I had occasion to create some reports with multiple detail bands. I put 3 remote views in the Dataenvironment, set indexes and relationships between them through code in the init of the DE. On Detail band 2 and 3 I placed the respective names of the target aliases ("View2", "View3")...
  16. craigsboyd

    Possible to send all protocols through port 80?

    I've got a client application that utilizes ports 80, 21, 25, and 1433 on the server. Problem is that users can have any number of problems accessing the ports other than port 80... problems range from firewalls to routers to ISP restrictions to anything else that might block that traffic. So...
  17. craigsboyd

    _cryptapi foundation class, specifically CryptAcquireContext Errors

    Well, not remembering exactly why I had been staying away from it, I decided to try using the RSA encryption/decryption available via the _cryptapi foundation class. It's turned out to be completely unsuitable for distributed applications. On one computer it works, on another it doesn't, on...
  18. craigsboyd

    Image Limit of 9999 pixels

    There appears to be an undocumented limit on images displayed in the Image control of 9999 pixels. I was hoping this would be fixed in VFP 9, but alas it was not. For instance, try opening a tif file of 10000 pixels square in the image control, even if it is under 200 KB in size and VFP is not...
  19. craigsboyd

    Undockable Toolbar?

    I must be missing something. I have a toolbar that I do not want the user to be able to dock (for reasons beyond the scope of my question, it has to be a toolbar not a form). The best I can muster so far is to undock it after they have docked it. I thought that perhaps a well placed NODEFAULT...
  20. craigsboyd

    Get File Size via HTTP

    This is not foolproof, in that some (very few) webservers will not return the size to the HTTPQueryInfo call. Also, this does not check for the existence of the file you are looking for (see thread1253-904509), so what you may get back is the byte size of the error page the webserver returned...

Part and Inventory Search

Back
Top