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: MichaelHawksworth
  • Order by date
  1. MichaelHawksworth

    Update-SQL subquery problem

    Thanks guys, I used scan..endscan instead in the end. The code works fine in Informix and Update should allow sub-queries... 'should' is always to be taken with a pinch of salt tho! Regards Michael Hawksworth
  2. MichaelHawksworth

    Update-SQL subquery problem

    Hi Folks The following code produces a "Function Name is missing )" error when run. I am setting ctd_sPostCode from the postcode field from the curUpdate cursor where the account codes match. UPDATE vw_contactdetails ; SET...
  3. MichaelHawksworth

    Office Automation using OLE etc

    For those of you going steadily up the wall trying to automate mailmerges etc. (particularly with Office XP) here is a good place to start. Also includes lots of examples for VC++ etc...
  4. MichaelHawksworth

    Listbox disabled items in multi-column listbox in VFP 8 SP1

    Thanks, much better. To sumarise, you need to prefix all the columns with '\' not just the first one. (P.S. Thats why the post said Multi-Column ;) ) Regards Michael Hawksworth
  5. MichaelHawksworth

    Listbox disabled items in multi-column listbox in VFP 8 SP1

    I have tried that. If it has only one column it is fine if it has two or more it doesn't work. Regards Regards Michael Hawksworth
  6. MichaelHawksworth

    Listbox disabled items in multi-column listbox in VFP 8 SP1

    Nah that doesn't work, completely ignores it. Regards Regards Michael Hawksworth
  7. MichaelHawksworth

    Listbox disabled items in multi-column listbox in VFP 8 SP1

    While prefixing an item with "\" disables the item (cant select it with mouse) it does not change the item to the disabled colours. Makes it a little difficult for the users. At least as far as I can tell! Regards Regards Michael Hawksworth
  8. MichaelHawksworth

    Re: Possible VFP 8 Bug Involving Collections (For Each)

    This is an artical posted by Randy Pearson that pretty much details the above. While I haven't tried it I would guess that adding your own 'get' methods would work as well. http://www.west-wind.com/wwthreads/ShowMsg.wwt?MsgId=0Y40USMEN Regards Regards Michael Hawksworth
  9. MichaelHawksworth

    covariant return value

    My nice token factory code has gone belly up following a move to .net (2003). I get a message saying covariants aren't allowed in .net. Q240862 says this is fixed in .NET! Does anyone know if this will work or if there is a patch? Ta Regards Michael Hawksworth
  10. MichaelHawksworth

    Autmating 'groupwise' emails

    To expand on Mikes work a little for anyone interested. This is with GW 6.5. The line: objMessage = objMessages.Add("GW.MESSAGE.MAIL", "Draft") can be shortened to objMessage = objMessages.Add("GW.MESSAGE.MAIL") as the draft option is the default. However, if...
  11. MichaelHawksworth

    Autmating 'groupwise' emails

    Jim If you are simply sending emails SMTP and MAPI are OK but if you want to use GroupWise's tasks, document links etc you need to do it direct. Regards Regards Michael Hawksworth
  12. MichaelHawksworth

    Autmating 'groupwise' emails

    Excellent work Mike. Saved me lots of wasted effort! Cheers. Regards Michael Hawksworth
  13. MichaelHawksworth

    define class as form(release)

    I have just come across this on a form myself. They fail to close if you have any public variables created in LOAD or INIT. It also seems to only effect variables pointing to objects not base types. If you release your variables first it should work. e.g. RELEASE oCRApp...
  14. MichaelHawksworth

    Combo Box

    For those interested, its a bug in VFP8 as well! Michael. Regards Michael Hawksworth
  15. MichaelHawksworth

    VC++.net 2003 Debuger hangs

    If I compile and run a program without the debugger I have no problems. If I use the debugger the program hangs my machine (XP Pro) before it reaches the first breakpoint (even if this is on the first line in main). I can find the odd reference to others with this problem but not fix etc. Any...
  16. MichaelHawksworth

    VFP8 Upsizing wizard

    The errors have to do with the database and you have to just narrow them down. If you ignore the errors you get a faily full but unhelpful list of errors from the wizard in a table. Things I have worked out so far are: (1) Rebuild all files. (2) Validate and recover the database as this gets...
  17. MichaelHawksworth

    One Computer on the Network can not log on

    I have just transfered 40 machines(XP and win 98) from Netware to 2000 server. If you cant connect to the domain I found it is usually that the DNS entry in the network TCP/IP properties is not set to the server holding the DNS with your 2000 style domain reference. The machine then cant find...
  18. MichaelHawksworth

    8.0 Problems with builders

    The builder was runing the FVP 7 builder ::mutters about inheriting projects::. Thanks for the help folks.
  19. MichaelHawksworth

    VFP8 Upsizing wizard

    I am getting a bulkinsert error using this. Is this the same problem that was fixed in 7 and they have re-introduced it? Regards
  20. MichaelHawksworth

    VFP 8 Group By invalid

    Check out the whats new in VFP 8 section of help as you are likely to find a few of these, my particular pet hate is the select distinct variant. The more common one of these is because of memo fields which you can at least cast into strings (although you have to pick a length to get). The...

Part and Inventory Search

Back
Top