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

    using Run command with variable

    Solution: abcd = "run /n explorer c:\program files\" &abcd doesn't satisfy me. I have plenty of files to use it with. Actually, I often don't even know names of these files - this is why I wrote about passing names as variables. I tried to modify the second case, but after doing .prg I...
  2. sfetr

    using Run command with variable

    Hi, I have already made an OLE document tree, but I would like to add another interesting thing - make the program run Windows's Explorer with the directory of selected file. I tried to use "Run" command, but I guess, that I have problem with passing the variable: abcd = "c:\program files\"...
  3. sfetr

    Programatically changing value of checkbox in OO

    Hi, Thanks, Brian - your advise almost working. :-) I've solved the problem. The function is: function zmienbox(nazwa,wart) form1 = this.doc.getDrawPage().forms().getByIndex(0) nazwa= m.form1.getByName(m.nazwa) nazwa.state = wart endfunc I've also changed the line in .dat file...
  4. sfetr

    Programatically changing value of checkbox in OO

    I tried to do, as you advised with changing rsa to string (zmienBox("rsa",1) && rsa is a string) and the result was, that I've achieved error: "File zmienbox.prg does not exist" (although I compile the VFP project with this function in one of .prg files). I am sure, that code form1 =...
  5. sfetr

    Programatically changing value of checkbox in OO

    Hi, I am trying to create Writer document (.sxw) based on DBF by Office Automation in VFP. I have prepared function to change value of chceckbox in one of .prg files: Code: FUNCTION zmienBox(nazwa,wart) form1 = this.doc.getDrawPage().forms().getByIndex(0) nazwa=...

Part and Inventory Search

Back
Top