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 SkipVought 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: Toman
  • Order by date
  1. Toman

    No forms, no controls?

    At this moment you are perfectly right Mike. I can also see it in the right-hand column. But what I saw today at about 12 a clock is different and you can see it on a screenshot here There is no Microsoft: Visual FoxPro Forum there. This was the reason for my panic behavior. Probably pages...
  2. Toman

    No forms, no controls?

    Hi Has someone noticed, that a reader of Tek-Tips without having our lovely page Microsoft: Visual FoxPro Forum in "My Threadminder" is unable to see it, unless he knows exact location http://www.tek-tips.com/threadminder.cfm?pid=184. In other words: Home > Forums > Programmers > DBMS Packages...
  3. Toman

    IE Automation help if possible..

    Hi Ali, in similar situations helps me sometimes command element.click() like: oWeb.document.getElementById("loginForm").getElementsByTagName("input")[7].click() where control on a web page must be a type SUBMIT ("input")[7].type="submit" and 7 was an index in one particular case. Even if...
  4. Toman

    how to prevent OLE error by pressing many times a hyperlink

    Bart, my code snippet was meant like that * open your page with map IE = CreateObject("InternetExplorer.Application") IE.Navigate ("http://YourGoogleAddress.com") IE.visible = .T. * request for loading page into new explorer window was given here * DISABLE any other possibilities...
  5. Toman

    how to prevent OLE error by pressing many times a hyperlink

    What about a BUSY property of Explorer object. Something like: IE = CreateObject("InternetExplorer.Application") IE.Navigate ("http://YourGoogleAddress.com") IE.visible = .T. DO While IE.Busy DOEVENTS ENDDO Bye, Tom
  6. Toman

    How to detect Click + [Shift, Ctrl, Alt]

    Gentlemen Thank you very much for your valuable information and tips and for giving so much of your time to other people from VFP community. Tom
  7. Toman

    How to detect Click + [Shift, Ctrl, Alt]

    Mike and Olaf Thanks to your help and inspiration I see now a suitable solution. I'm sending Shift-Ctrl-Alt state as a numeric parameter to form's method MyClick from both MouseDown and KeyPress and I even need not to have temporary storage to these values. So I have only *** in KeyPress method...
  8. Toman

    How to detect Click + [Shift, Ctrl, Alt]

    What if a client will "click" on a control (with focus) by means of ENTER or SPACE on a keyboard, which is completely legal in Windows. I thought that additional calling MouseDown() from somewhere will fix the problem, but it will not, because no parameters are received by MouseDown procedure...
  9. Toman

    Debugging with _SCREEN.Print

    Ooh shure, DEBUGOUT, this is the right way. And much more better then SCREEN.Print. I need not to send LineFeeds, take care about variable type and output list can be endless and can be copied or saved easily. Thank you Tamar very much. Tom
  10. Toman

    Debugging with _SCREEN.Print

    For debugging I occasionally use commands like _SCREEN.Print(cMyVar + CHR(13)) I think it has some advantages over WAIT WINDOW, MESSAGEBOX. Unpleasant is, that this way I can use only some area of the screen to show results. I have a suspicion, that this part has the same height as the form...
  11. Toman

    Mouse pointer disappearing

    I have found a reason for shuting my VFP down during testing. It has absolutely nothing to do with recommended _screen command. My previous post was written poorly, it was not clear whether I am thanking Mike for knocking down my VFP, or for his tip. Of course I'm thanking him for excellent...
  12. Toman

    Mouse pointer disappearing

    Very interesting thing. It looks like some side effect. _screen.MousePointer = 13 should change mouse pointer if cursor is over a screen, But it works my way. Cursor over a form disappears and comes back after mouse action as I need. Resolving the problem where to return "screen" mouse pointer...
  13. Toman

    SY() help..

    For older VFP version without JUSTPATH lcPath = LEFT(SYS(16),RAT('\',SYS(16))) Tom.
  14. Toman

    Mouse pointer disappearing

    After pressing a key in Textbox or so, mouse pointer disappears and comes back after almost any mouse action. True for Windows and VFP too. Is it possible to simulate this state (mouse pointer disappearing) programmatically? In fact, I can avoid situation when disappearing would be helpful...
  15. Toman

    Getting next record number

    Keith, have a look at thread184-1587483 Tom.
  16. Toman

    SELECT SQL without switching area

    Ilya, not a bad idea in cases I had on mind. Current work area remains the some. Pointers remain the some. Easy to read code, something like SELECT MAX(MyField) FROM MyTable … INTO ARRAY aMyMaximum IF _TALLY > 0 * all followings are acceptable ? aMyMaximum(1,1) ? aMyMaximum(1) ...
  17. Toman

    SELECT SQL without switching area

    Mike, Behind my question was exactly my whish to eliminate lnSave = SELECT() / SELECT (lnSave) construct. If you suggest this, I understand, that there is no other way to force VFP not to switch to work area where new cursor resides. Thank you, Tom
  18. Toman

    SELECT SQL without switching area

    Hi, Is it possible to generate SELECT SQL command without automatic switching to a work area with query results? I've finished my experiments with SELECT * FROM table TO SCREEN NOCONSOLE which is perfect, no switching, just results are neither visible nor accessible. Thank you, Tom.
  19. Toman

    Which event after Ctrl + [PLUS]

    Good tip, thank you Alan. Tom
  20. Toman

    Which event after Ctrl + [PLUS]

    It’s a pity that we can’t use Ctrl combinations like the others. To Mike: I can’t use Shift, because I’ve used it already. My task was to increase / decrease a date in textbox. With [PLUS] / [MINUS] by a day, with Shift+[PLUS] / Shift+[MINUS] by a month and with Ctrl+[PLUS] / Ctrl+[MINUS] by an...

Part and Inventory Search

Back
Top