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

  • Users: wgcs
  • Order by date
  1. wgcs

    Q about sql syntax

    Here's another variation: create cursor joincursor (ID I) *insert user selection in that cursor. select name,street,pcd,place from myView; where myView.ID in (select ID from joincursor); into cursor myCur - Bill Get the best answers to your questions -- See FAQ481-4875.
  2. wgcs

    How do you strip the "Trademark" sign?

    So, is there no way to legally note that a word or phrase is trademarked in a plain 7-bit text file? - Bill Get the best answers to your questions -- See FAQ481-4875.
  3. wgcs

    Reg-Free-COM not quite working with TreeView and DatePicker

    Hi Dilettante, Thanks for looking at it... I don't consider it an ancient thread, particularly since no one ever posted any ideas! I eventually gave up on .MANIFEST files as "broken" (that is, as requiring the special magic that happens within Visual Studio for creating them... alot of help to...
  4. wgcs

    Reg-Free COM for VB6 Projects

    I'm hoping that those experts who posted in this thread might take a look at the problem I'm having that I described in thread708-1491444 ... Please help... I'm tearing my hair out!! (I've researched this alot... here's all the references I've found: http://del.icio.us/wsteinford/reg-free-com...
  5. wgcs

    Reg-Free-COM not quite working with TreeView and DatePicker

    I have tried using MMM and Visual Studio 2008 to generate a .MANIFEST file to "reg-free-com"-consume the MSCOMCTL.OCX and MSCOMCT2.OCX activex libraries. Specifically, I'm using the TreeView and DateTimePicker controls. On Vista, it almost works correctly: The tree populates via code and...
  6. wgcs

    Reg-Free-COM not working with TreeView and DatePicker

    To avoid problems with registering MSCOMCTL.OCX and MSCOMCT2.OCX, I want to use "Reg Free COM" to deploy these files. ( My notes on Reg-Free-COM: http://delicious.com/wsteinford/reg-free-com ) I have created the proper .MANIFEST file, and embedded it in my .EXE It seems to work correctly: 1)...
  7. wgcs

    Adding a thermometer to a form

    Just be sure, if you're going to use the ActiveX control, that you distribute the proper OCX file with your application. - Bill Get the best answers to your questions -- See FAQ481-4875.
  8. wgcs

    Background Printing

    Some links that may be useful: Technical details on Multi-Threaded VFP DLLs: http://msdn2.microsoft.com/en-us/library/ezck9bk3(VS.80).aspx More discussion: http://fox.wikis.com/wc.dll?Wiki~VFPMTDLLisMultithreaded~VFP http://fox.wikis.com/wc.dll?Wiki~MultiThreadedVFP~VFP A helper COM object...
  9. wgcs

    Background Printing

    I have only experimented a little with this in the past, so I don't have any evidence of which approach definitely works, or which works better. Since the VFP UI is not multi-threaded, you need to create a separate process if you want to get any VFP action to happen in the background while...
  10. wgcs

    So what are we supposed to use for web services?

    I'm pretty sure the quote above, "Microsoft SOAP Toolkit is deprecated by the .NET Framework", does not say that SOAP is deprecated, or that the .NET framework doesn't use SOAP. It's saying that the "Microsoft SOAP Toolkit" is no longer supported, and the the .NET Framework includes the SOAP...
  11. wgcs

    Help with SendSmtpEmail Function

    What is the error that you're getting on that line? It looks like there is a space between "Sub" and "Str" in your posted code... the function "SUBSTR" has no space in it, so you should be alright if you make that little change. (It seems that the Foxwiki is throwing that space in there...
  12. wgcs

    GetsysColor() parameter for hot tracking

    I'm not sure if it applies here, but one caution is that VFP uses RGB colors, and windows sometimes uses BGR colors, so you may have to reverse the byte order to get the intended color. - Bill Get the best answers to your questions -- See FAQ481-4875.
  13. wgcs

    Word automation

    >> Marcia's right. If the document name includes spaces, you will need the macro expansion after all (sorry, I should have remembered that). Why? The variable is being passed as a parameter, so macro expansion shouldn't be involved. It's possible that Word prefers to have quotes around the...
  14. wgcs

    Problem Trapping Keyboard or Mouse Event in a Rich Text Box

    Here you go: http://www.codepedia.com/1/Win32ApiVirtualKeysTable http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/WinUI/WindowsUserInterface/UserInput/VirtualKeyCodes.asp - Bill Get the best answers to your questions -- See FAQ481-4875.
  15. wgcs

    VFP change date-time stamp of files

    For a way that doesn't require distributing FoxTools, see http://fox.wikis.com/wc.dll?Wiki~UdfTouch~VFP - Bill Get the best answers to your questions -- See FAQ481-4875.
  16. wgcs

    Using an external exe in a form

    One caution is that if the System admin creates a policy prohibiting use of WSH, the WSCRIPT.EXE file will still be there, but the Createobject() calls will fail. Likely, my IsActiveXReg would also return .T., and wouldn't give a complete solution. Same problem if the user executes...
  17. wgcs

    Using an external exe in a form

    For a more long-winded way, see the IsActiveXReg function here: http://fox.wikis.com/wc.dll?Wiki~ComRegUnReg - Bill Get the best answers to your questions -- See FAQ481-4875.
  18. wgcs

    Using an external exe in a form

    Try out the code here: http://fox.wikis.com/wc.dll?Wiki~ProcessExitCode if you don't want to require that Windows Script Host be installed (which it often isn't on users' computers). - Bill Get the best answers to your questions -- See FAQ481-4875.
  19. wgcs

    Install 2 versions of VFP?

    I've had v6 v7 and v8 on one machine at a time, and v6 v8 and v9 on a different machine, and never had any problems. So, yes, you can. - Bill Get the best answers to your questions -- See FAQ481-4875.
  20. wgcs

    Trap Ctrl+I in Rtf Control

    Absolutely Right Tamar! Thanks! - Bill Get the best answers to your questions -- See FAQ481-4875.

Part and Inventory Search

Back
Top