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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Juris

  1. Juris

    Removing menu

    Try set sysmenu off Juri Shutenko Municipality of Maardu, Estonia http://kodu.neti.ee/~juri4 http://www.hot.ee/jurisfox
  2. Juris

    Parsing out spaces

    and if You need all characters in string in the lowercase use lower() on result Juri Shutenko Municipality of Maardu, Estonia http://kodu.neti.ee/~juri4 http://www.hot.ee/jurisfox
  3. Juris

    Parsing out spaces

    CHRTRAN(myvar," ","") Juri Shutenko Municipality of Maardu, Estonia http://kodu.neti.ee/~juri4 http://www.hot.ee/jurisfox
  4. Juris

    1024 fields (just for discussion in another forum)

    Thank You! It's quite enough! Somebody wants to have more than 1024 fields in the ordinary table! The reference to this thread fulfilled its purpose. Juri Shutenko Municipality of Maardu, Estonia http://kodu.neti.ee/~juri4 http://www.hot.ee/jurisfox
  5. Juris

    1024 fields (just for discussion in another forum)

    Hi, All! Does anybody use all 1024 fields in one table? -OR- The max number of fields you are using in tables? Juri Shutenko Municipality of Maardu, Estonia http://kodu.neti.ee/~juri4 http://www.hot.ee/jurisfox
  6. Juris

    How to embed a map an a VFP form

    2FatSlug www.multimap.com shows very old data; the some places are shown unchanged from 2000. Juri Shutenko Municipality of Maardu, Estonia http://kodu.neti.ee/~juri4 http://www.hot.ee/jurisfox
  7. Juris

    onClick event within a DIV tag

    Why not? response.write("<DIV onClick='javascript:function_name()' STYLE ...") Juri Shutenko Municipality of Maardu, Estonia http://kodu.neti.ee/~juri4 http://www.hot.ee/jurisfox
  8. Juris

    Defining Date Format in XSD Not Working!

    Hi! Restrictions are used to control acceptable values for XML elements or attributes - not for transformation! Juri Shutenko Municipality of Maardu, Estonia http://kodu.neti.ee/~juri4 http://www.hot.ee/jurisfox
  9. Juris

    get the usage of the cpu?

    VFP 6.0 can not use monikers. Below the working code for VFP 6.0 LOCAL lcRemoteComputer, lcAdminUserName, lcAdminPassword, ; loSWbemLocator, loSWbemServices *lcAdminUserName="sysadmin_name" *lcAdminPassword="password_sysadmina" lcAdminUserName="" lcAdminPassword="" *lcRemoteComputer =...
  10. Juris

    xmltocursor with flags 8912

    XMLTOCURSOR(test,"testcur",8912) Flag must be 8192. Check it! All works fine Juri Shutenko Municipality of Maardu, Estonia http://kodu.neti.ee/~juri4 http://www.hot.ee/jurisfox
  11. Juris

    FILER.DLL

    From VFP documentation: Note that the Filer ignores System folders. Use Scripting.FileSystemObject instead. Juri Shutenko Municipality of Maardu, Estonia http://kodu.neti.ee/~juri4 http://www.hot.ee/jurisfox
  12. Juris

    vfp6: inverse of the week() function?

    Hi, Mike! It's a good point! (The code has been typed in a hurry...) :-) Juri Shutenko Municipality of Maardu, Estonia http://kodu.neti.ee/~juri4 http://www.hot.ee/jurisfox
  13. Juris

    vfp6: inverse of the week() function?

    lnWeek = 28 lnYear = 2005 * Calculation ldFDY = CTOD("01.01"+STR(lnYear)) lnDOW4FDY = DOW(ldFDY,2) lnFDY = VAL(SYS(11,ldFDY)) lnSDOW4QW = lnFDY+(lnWeek-1)*7 lnSDateQW = lnFDY+(lnWeek-1)*7-(lnDOW4FDY-1) ldSDateQW = SYS(10, lnSDateQW) ldLDateQW = SYS(10, lnSDateQW+6) * Result ...
  14. Juris

    Changing Language in Windows VIA VFP

    Try code below [code] #DEFINE KEYBOARD_GERMAN_ST 0x0407 && Deutch (Standard) #DEFINE KEYBOARD_ENGLISH_US 0x0409 && English (United States) #DEFINE KEYBOARD_FRENCH_ST 0x040c && French (Standard) #DEFINE KEYBOARD_RUSSIAN 0x0419 && Russian * Select layout that we need...
  15. Juris

    Is VFP9 Autocomplete table multi-user-shareable?

    Hi! I try to run two form right now (one of them with Default DataSession) and another with Private DataSession. In second I set AutoCompleteTable for text box and it's work. (I don't have network at this moment - I'm at Prague Devcon). Inputs that has been made in one form are available in...

Part and Inventory Search

Back
Top