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 TouchToneTommy 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: Juris
  • Order by date
  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...
  16. Juris

    determining image file types

    The first, that comes to - try to read file header by VFP file low level functions, for example: lnHandle = FOPEN("disk_letter:\some_directory\some_file_without_extension") lcString= FREAD(nHandle,3) && gif-file have leftmost 3 symbols = "GIF" ? lcString =FCLOSE(lnHandle) BMP leftmost 2...
  17. Juris

    How to Merge two different layout Databases

    Hi! Try to use GetWordCount() and GetWordNum(). First of all You need to select records which ID in table 2 cannot be found in table 1 and then by using mentioned functions fill table 1. Juri Shutenko Municipality of Maardu, Estonia http://kodu.neti.ee/~juri4 http://www.hot.ee/jurisfox
  18. Juris

    Does a Form's Data Environment supercede SET DATABASE TO?

    Hi, Olaf! I think this is some kind of mystifying DE. The from table stores a relative path and Form designer convert it to full path. DE of the form (I don't mean here s DE class) allows me work with databases located in different folders by switching databases on the fly. Juri Shutenko...
  19. Juris

    Searching for a Number in a text string

    Exactly! Juri Shutenko Municipality of Maardu, Estonia http://kodu.neti.ee/~juri4 http://www.hot.ee/jurisfox
  20. Juris

    What am I doing wrong? Program halts before loading form

    What is type of form? Juri Shutenko Municipality of Maardu, Estonia http://kodu.neti.ee/~juri4 http://www.hot.ee/jurisfox

Part and Inventory Search

Back
Top