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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by monkey666

  1. monkey666

    Using VFP-Skin?

    alex, I tried 2 top level forms, both skinned, with a table called "INPUT" used in form1. A command button then opened form2 and in the init I put both a "select input" & a sql select * from input . Both worked fine & the forms remained skinned. sorry have no idea why the...
  2. monkey666

    Using VFP-Skin?

    alex I'll try & duplicate the problem you're having & give some feedback monkey
  3. monkey666

    Importing data from MS Excel

    morning does the table you're trying to append into have a corresponding structure to the XLS file? use table1 in 0 APPEND FROM "c:\a.xls" TYPE XL8 SHEET "bm5_g3_2" It appended in OK - i got a share violation when i had the XLs file open when i tried to import it. If you...
  4. monkey666

    Graphical animated buttons

    morning Thanks for that - i was intending to use the web browser control but didn't realise you could set the filename directly to a gif file (hence i was going to create an html document with the gif as imgsource). I used the web browser control in VFP & VB with the gif as the filename and...
  5. monkey666

    Control Windows Media Play through VFP6+

    evening I know this probably may not be much help - but here's what we did when we needed to record phonecalls (call centre environment). The phone system used tapi and when a call was taken, tapi returned a value - we looked for that value and started our recording. The recording was done...
  6. monkey666

    Graphical animated buttons

    afternoon I need to create "fancy" buttons for a client GUI (heavy on the G), that have a rollover effect - like in flash, e.g on mouseenter a the button graphic rotates through 360 degrees. I've been considering a few options: 1 use Videoframe class from the VFP samples classes as...
  7. monkey666

    Control Windows Media Play through VFP6+

    after noon, Do you specifically want to run Media player (because shellex is the way) or play movies/music? monkey
  8. monkey666

    How Notto show Deleted Items In Grid Box

    afternoon you could set a filter on the table: set filter to !deleted() or use a another rowsource for the grid which doesn't contain deleted items, sql select for !deleted into a cursor monkey
  9. monkey666

    Finding files without filer - permission problem.

    afternoon thanks for the tips - got some places to start from. I guess i should re-named the header to "adir problems with NT User permissions" i'm thinking adding a 'fix' of if type("acurDirList")#"U" FOR nCopy = 1 TO ALEN(acurDirList,1)...
  10. monkey666

    Finding files without filer - permission problem.

    afternoon ref: faq184-140 been using this for a while (in a modified version - conversion to VCX - NO major changes to code). While performing the recursive directory search on a NT network drive the program using the class crashed - it couldn't open a folder to list the folders inside. I...
  11. monkey666

    Character test

    wow a star thanks a lot but i'm not sure alltrim() deserves a star thanks though monkey
  12. monkey666

    Character test

    sorry forgot to add the bit about after that. do case case nMylength=5 Thisform.Department = "Sport" case nMylength=8 Thisform.Department = "haberdashery" endcase etc monkey
  13. monkey666

    Character test

    afternoon not sure if i get you correctly but .. nMylength=len(alltrim(thisform.textbox1.value)) will give you the number of characters in a string. monkey
  14. monkey666

    CDO Email, stumbling with connection

    afternoon, thought of the same thing..you need the CDO files. found this on another forum group.. http://www.dotnet247.com/247reference/msgs/26/133958.aspx i've pasted the relevent post. -- my paste " Lion Shi [@online.microsoft.com] Hello Jonny, Based on the description of the...
  15. monkey666

    Stability problems

    afternoon never had that error but.. googled this link http://www.experts-exchange.com/Databases/FoxPro/Q_20255492.html monkey

Part and Inventory Search

Back
Top