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 Chriss Miller 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: mydocpro
  • Content: Threads
  • Order by date
  1. mydocpro

    Send Mouse Clicks to IE (... Like oWSH.SendKeys() sends keys)?

    ... I would like to open a drop down list which seems to require a mouse click ... oWSH = CREATEOBJECT("wscript.shell") oWSH.AppActivate("Google Chrome") && assumes Google Chrome is running oWSH.SendKeys('{TAB}') && tab to a dropdown list ... but to drop it down seems to require a mouse click...
  2. mydocpro

    Using Shell to Open Windows Explorer: iPhone Path for Photos

    This fails to open explorer to see iphone photos: Declare Integer ShellExecute In shell32.Dll Integer hndWin,String cAction, String cFileName,String cParams, String cDir, Integer nShowWin cFileName = "explorer" cAction = "open" cPath = "iPhone\Internal Storage\DCIM\108APPLE"...
  3. mydocpro

    How to See Who’s Connected to Your Wi-Fi Network with VFP9 ?

    Typing "Net View" in Command Prompt... ... (leads to): But, might there be a way to 'capture' this in 'myVFP9.app'? ... To obtain the list of computers connected to your WIFI Network ("\\INSPIRON","\\XPS15", etc.) ... unto a table-cursor or something? The ultimate goals are: (1)...
  4. mydocpro

    Show Desktop Windows Side by Side Programatically

    ... i.e., without right-clicking the task-bar clock (of windows desktop). All too oft: We'd like to arrange VFP-App side by side with Internet-Explorer or Windows-Explorer. (Note: The VFP WebBrowser Class seemed ideal, but that is 'script'-limited for some URL-sites (like BCBS sites) and...
  5. mydocpro

    VFP to Google Calendar or Such

    'Looking for a way to export VFP data (single record at least) to my Google Calendar. (I searched for about an hour and am stumped) Any thoughts? Utmost thanks and blessings, Philip
  6. mydocpro

    Automate Windows Explorer Behind Foxpro (VFP9)?

    DECLARE INTEGER ShellExecute IN shell32.dll INTEGER hndWin,STRING cAction,STRING cFileName,STRING cParams,STRING cDir,INTEGER nShowWin ShellExecute(0,"open","notepad",null,"",4) && works OK to send Notepad 'behind' (non-active window) ShellExecute(0,"open","explorer","C:\","",4) && fails to...
  7. mydocpro

    Converting VB Code to VFP to Increase File Icon Size in Windows

    Greetings! I've been trying to resize (jpg) "Medium Icons" in Windows Explorer (programmatically) ... and found the VB code below. Do any of you know if VFP-9 can accomplish this, else vb-script or java-script or other idea. I've searched for hours. Utmost thanks/blessings for any thoughts...

Part and Inventory Search

Back
Top