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

    Menu bar color

    Can I change or set color of menu bar ( _screen.something = )?
  2. JanyMoon

    Folder write to CD from VFP

    Hy! Can I write folder to CD drive from VFP. I like to make some easy task for users. Click on menu and all data from specific folder goes to CD.
  3. JanyMoon

    RUN mimized and wait

    mistake in VFP7, this is better: do while file( "Test.Txt" ) && wait to end of bat file inkey(2) enddo
  4. JanyMoon

    RUN mimized and wait

    For now i found this solution in Test.Bat: ----------------------------------------- @echo off cls echo Test > Test.Txt rem do some stuff, eg. pack data with zip program .... Del Test.Txt in VFP7: ----------------------------------------- Run /N7 Test.Bat inkey(2) && wait 2 second just in...
  5. JanyMoon

    RUN mimized and wait

    I try to use RUN from VFP7 and make it minized and with wait parameter. eg. RUN test.bat works ok but in window RUN /N test.bat work ok but no wait
  6. JanyMoon

    function vs object

    I wonder is any benefit to use object with functions or just standard prg file with function? for example: i have 3 functions a() b() c() I can put this functions in one x.prg file and make set procedure to x.prg and then use this functions from application or make custom object and put...
  7. JanyMoon

    InternetReadFile and bytes

    Hi! I use InternetReadFile() function to read bytes from FTP server. But I not sure about number of bytes to read in one time. Have any idea what is the best number? For now I use 4096 and works fine. eg. lnBytes=4096 InternetReadFile( lhFile, @lcBuffer, lnBytes, @lnBytesRead )
  8. JanyMoon

    Write and read from windows register part 2

    Thanks! I wil try to use registry with some not so important parameters first! I will make key HKEY_LOCAL_MACHINE\Software\CompanyName and then put values and data to this key and make some tests on Win98 and Win XP machines.
  9. JanyMoon

    Write and read from windows register part 2

    I try to write and read register. Works fine. But I am afraid to use it. Is normal way to write and read parameters from program to register. I use old "ini" files now. My program on start read some paramters and at the end ( close ) write some parameters to "ini" or "register"? so, every time i...
  10. JanyMoon

    Write and read from windows register

    Is some simple way to write and read from windows register.
  11. JanyMoon

    Physical Memory

    Is there no function like sys(nSomething) or API ?
  12. JanyMoon

    Physical Memory

    How to find out amount of physical memory with VPF?

Part and Inventory Search

Back
Top