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 Mike Lewis 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: *

  1. TedMcCoin

    TABLEUPDATE() Headache

    Steve, you could try to change your buffering settings eg: =CURSORSETPROP("BUFFERING",2) TABLEUPDATE also provides an ErrorArray, syntax TABLEUPDATE([nRows [, lForce]] [, cTableAlias | nWorkArea][, cErrorArray]) have you tried that ? Ted
  2. TedMcCoin

    How to programmatically find out the complete Position of any object ?

    Thanks Mike, yes, what you suggest above would certainly do what I was looking for :-) Since I still work on VFP version 6.0 I can't check it out yet, however the VFP 8.0 box is already on my desk, almost ready to be checkéd out. Thanks again, Ted
  3. TedMcCoin

    How to programmatically find out the complete Position of any object ?

    Jim, thanks a lot! That was exactly what I was looking for ! Marcia, thanks for the interesting OBJTOCLIENT() but that's not what I am looking for. So, to clarify the 2nd part: Is it possible to programmatically lookup a large form for the existance of a given object, eg myCommandButton and if...
  4. TedMcCoin

    How to programmatically find out the complete Position of any object ?

    this is a general Question of Programming. eg: there are 2 CommandButtons with the same name on 2 different locations of a given large form: myFormSTART.PageFrame1.page1.PageFrame1.page1.CommandButton1 myFormSTART.PageFrame1.page1.CommandButton1 THIS.NAME returns just "CommandButton1" rather...
  5. TedMcCoin

    Wait command with no output.

    @rgbean Rick thanks, you are right, I did't consider the window environment with other applications. Erik
  6. TedMcCoin

    Wait command with no output.

    ***this is an old piece of code, but should work too waitsecs=10 DO WHILE waitsecs>1 holdon=substr(time(),8,1) do while .t. testtime=substr(time(),8,1) if testtime<>holdon holdon=substr(time(),8,1) exit endif enddo waitsecs=waitsecs-1...
  7. TedMcCoin

    Strange Behaviour of MouseDown in Pageframe.Page

    Hi Craig, yes, you can take that just as an example. To know how to change the caption of the page would be helpful enough. Later I want a supervisor to enable or disable specific pages just by right/left click for certain users. This would work fine when you click on the page after it is...
  8. TedMcCoin

    Strange Behaviour of MouseDown in Pageframe.Page

    Jim, thanks for your quick answer, the problem is, that the active.page is the one I am leaving, not the one I want to go to and change. Any Idea ? thanks, Erik
  9. TedMcCoin

    Strange Behaviour of MouseDown in Pageframe.Page

    Has anyone discovered this situation on pageframes ? I wanted to code different behaviour on RIGHTCLICK or LEFTCLICK on a Page of a Pageframe and so I got some code under MouseDown of a given Page. Lets assume I want to do this: LEFTCLICK this.caption="Hello Page Caption Left" RightCLICK...
  10. TedMcCoin

    How to mark TEXT in textfield by Commandbutton

    Jim, that was exactly I was looking for !!!! Great, thank you !!!! Erik
  11. TedMcCoin

    How to mark TEXT in textfield by Commandbutton

    Jim thank you for your fast reply, that works fine, just I wanted also the field visible marked as you see it with CTRL-A. Any ideas ? Thanks, Erik
  12. TedMcCoin

    How to mark TEXT in textfield by Commandbutton

    Hi, I am looking for a piece of code to mark a complete texfield like CTRL-V and then Copy into clipboard like CTRL-C by means of a commandbutton. I am using VFP 6.0 Its a simple idea, but I have no clue how to establish that, any ideas are appreciated. thanks, Erik
  13. TedMcCoin

    File DateTime

    [thumbsup2] That was exactly what i was looking for ! thanks a lot for your help, erik [thumbsup2]
  14. TedMcCoin

    File DateTime

    How to find out the modification date and time of any file ? What piece of code would do that ? Any idea would be very appreciated, thanks, erik

Part and Inventory Search

Back
Top