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

  1. SytzedeBoer

    Video capture

    Mike, I really appreciate your response. Here is my code Local oForm oForm = Createobject("Tform") oForm.Show(1) * end of main Define Class Tform As Form #Define WM_CAP_START 0x0400 #Define WM_CAP_DRIVER_CONNECT (WM_CAP_START+10) #Define WM_CAP_DRIVER_DISCONNECT (WM_CAP_START+11)...
  2. SytzedeBoer

    Video capture

    I have a small application that needs to capture a photo. I've seen reference to this on this forum, especially Mike Lewis, but I'll be darned if I can get it to work to my satisfaction. Most references involve AVICAP32.DLL On my Lenovo X1 Carbon laptop it is 100% satisfactory and works a...
  3. SytzedeBoer

    IP Address using VFP instead of manually heading to whatismyip.com

    This is what I do loExplorer = Createobject("InternetExplorer.Application") loExplorer.Navigate2("www.whatismyip.com") Do While loExplorer.readystate <> 4 ENDDO loDoc = loExplorer.Document MyPublicIp =UPPER(loDoc.Body.Innertext) m.lcReturnYourIP = "UNKNOWN" If ATCLINE("YOUR IP",MyPublicIp) >...
  4. SytzedeBoer

    How to extract Group name from windows active directory?

    Mike, this would be really good if it could include a column for how many files each has open. Can that be done ?
  5. SytzedeBoer

    FoxInCloud

    VJ, I assume you're still interested in some views regarding your original question. I do not use foxincloud at the moment. If I ever wanted or needed to place one of my applications "on the cloud", i WOULD choose FoxinCloud I base that on some very simple reasons 1 Minimal re-coding 2...
  6. SytzedeBoer

    VFP Data access to desktop and web clients

    I have a client who needed 10 of his clients to access their information in a specific format. I created a small application just for these 10 clients. That was step 1, and very simple Then I set up a simple Win 7 pc at my client's place (second hand) and installed TSPLUS My client's clients...
  7. SytzedeBoer

    Momentary index corruption, will turning off SMB2 fix this (on Windows 7 and Windows 2008 R2)?

    Apart from SMB2, also check the AntiVirus system What happens if you exclude your App folder
  8. SytzedeBoer

    Emailing

    Error pops up as follows With Yahoo I get Error 1429 Line 62 Message: OLE IDispatch exception code 0 from ? The message could not be sent to the SMTP server. The transport error code was 0x80040217. The server response was not available. With Outlook.com I get Error 1429 Line 62 Message...
  9. SytzedeBoer

    Emailing

    I am a software developer, so I do indeed have an account with Gamail and Outlook, and I have access/details to a client's Yahoo account for testing purposes Hence the reason for multiple servers. And, no, the message is not related to Relays
  10. SytzedeBoer

    Emailing

    Can anyone help me with a real problem I have I will post the code below. This is working fine for me if the smtp is smtp.gmail.com I need this to also work with Yahoo and Outlook.com With these two I get all kinds of spurious errors loMail = NEWOBJECT("Cdo2000", "Cdo2000.fxp") GO TOP IN...
  11. SytzedeBoer

    Downloading Files from FTP

    I'm not arguing with any suggestions made in this thread, but I found ISTOOL invaluable. It is part of Inno setup, and even I could work it out............
  12. SytzedeBoer

    Memo field in browse

    I do this all the time but I reserve an area below the grid for the memo details, in an EDIT box In the afterrowcolchange I issue a refresh
  13. SytzedeBoer

    Printing to specific printer

    I have found a workaround by using FoxyPreviwer. I had avoided using that thinking it was too many clicks/keystrokes, but really, I should have used it from the beginning. It still beats me why the routine didn't work with the "set print to name (name)"
  14. SytzedeBoer

    Printing to specific printer

    Client has a small app to capture client purchase orders This capture can happen in a large building with multiple pc's and phones. When he/she captures the order, the order is printed on a specific choice of printer So my system goes trcask122='' trcask123='' trcask124=1 mypr=APRINTERS(gaPrn)...
  15. SytzedeBoer

    How to Rename an external Windows file with a VFP6 string from ttoc(date) string

    Perhaps this is what you're trying to do? Example, you have created a backup Zip file, and its called BACKUP.ZIP You now say newfile=ttoc(date())+".zip" Now you can rename the file as suggested by others. (Sytze)

Part and Inventory Search

Back
Top