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 strongm 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: skoko
  • Order by date
  1. skoko

    VFP recognising DIRECTORY() and FILE()

    Do they have network access to those folders?
  2. skoko

    Terminal Server / Outlook 2003

    Got it! Adding: ns = myOlApp.GetNamespace("mapi") df = ns.GetDefaultFolder(9) Fixed the problem.
  3. skoko

    Terminal Server / Outlook 2003

    I'm trying to create new outlook 2003 calendar entry from VFP. Following code works fine: myOlApp = CREATEOBJECT("outlook.application") myItem = myOlApp.CreateItem(1) myItem.Subject=mySubject myItem.Body=myBody myItem.Start=mySTart myItem.Duration = 30 myItem.Save However, when running same...
  4. skoko

    Upgrade VFP6.0 to 9.0

    I'm working exclusively in 9.0 (full time) and report designer is crashing way to often.
  5. skoko

    'set near on' equivalent for listbox

    Why are you using listbox for several hundred records? I suggest using grid instead.
  6. skoko

    foxpro_ spaces in the begining of the chars

    try: ?ALLTRIM(" def ")
  7. skoko

    VFP 9 upgrade version - works on VFP 5 or later

    VFP 9 is best thing to happend for VFP programmers EVER. I LOVE IT!!!
  8. skoko

    id3 current track position information?

    ...and how is this related to VFP (Visual Fox Pro)? Wrong forum maybe?
  9. skoko

    Backspace causes a lose focus..

    How about this: In textbox keypress event: myKey=nKeyCode In textbox lostfocus event: IF myKey=127 NODEFAULT ENDIF
  10. skoko

    how to start

    To close: CLEAR EVENTS
  11. skoko

    how to start

    DO myForm READ EVENTS
  12. skoko

    VFP 6.0 SP5 takes almost 100% cpu resources on a terminalserver 2003

    Do you have anti virus application on?
  13. skoko

    How to exit the grid using the keyboard

    What you mean by exit?
  14. skoko

    How can I get Found() to return .T. on a SEEK

    You don't need ALLTRIM if near is set to ON. Also, no needs for FOUND() either. IF SEEK (this.TypedInValue) *do some processing ENDIF
  15. skoko

    You can select your Thermometer or Progress Bar Class

    Nice, another star.
  16. skoko

    special characters

    Sound like a codepage problem.
  17. skoko

    Apostrophe in a string

    instead of: UPDATE DISTRIBUTORS.DBO.DISTRIBUTORS SET MAILADDRESS1 = '1919 SOUTH B'BOB STREET' WHERE DIST_ID=1093 try: UPDATE DISTRIBUTORS.DBO.DISTRIBUTORS SET MAILADDRESS1 = "1919 SOUTH B'BOB STREET" WHERE DIST_ID=1093
  18. skoko

    Report preview form flashes

    Are you using private data session in your form?
  19. skoko

    Best Practice to Delete a Record

    I cant beleive I never used SET KEY TO dbMark, star from me.
  20. skoko

    help on datetime

    TTOD(myDateTime2)-TTOD(myDateTime1)

Part and Inventory Search

Back
Top