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

  1. jerry1117

    Using VFP WithYahoo Maps Geocoding API

    Thanks so much for the Google geocoding sample. I used it and it worked great.
  2. jerry1117

    Using VFP WithYahoo Maps Geocoding API

    Does anyone have a sample of VFP code used to access Yahoo maps Geocoding API to get latitude and longitude for addresses?
  3. jerry1117

    How do you add a shortcut to the start menu

    Thanks Mike. I was close. I tried cDeskPath = oWsh.SpecialFolders("Start Menu") Should have dug a little deeper.
  4. jerry1117

    How do you add a shortcut to the start menu

    How do you add a shortcut to the start menu using a program instead of manually doing it.
  5. jerry1117

    How Do You Exit Brwose With Double Click

    Dave, You did, indeed, give me the help I needed. I actually did this. Start up: PUBLIC tns_DblClkSecs tns_DblClkSecs = SECONDS() . . PROCEDURE a_MouseHandler IF SECONDS() < tns_DblClkSecs KEYBOARD("{ENTER}") ELSE STORE SECONDS()+_DBLCLICK TO tns_DblClkSecs ENDIF Before doing browse...
  6. jerry1117

    Alias Not Found

    Borislav, and Mike, Thanks for all your input. The tip you have given me will, indeed, get rid of the error I was getting when I selected 'rpt', and it was not available. What really bothers me, though, is why is 'rpt' not available? If you don't mind, look at the code I submitted above. I...
  7. jerry1117

    How Do You Exit Brwose With Double Click

    I routinely use a browse window to show a grid format of records in the active cursor. Like this. PUSH KEY CLEAR BROWSE POP KEY You can page up, page down, arrow up, arrow down, click, or double click to select a record. But, you have to press enter, escape, or click the X at the upper...
  8. jerry1117

    Alias Not Found

    Mike, I put the fix in the program. I will cut it over tonight, and see how it goes. Since the problem does not occur every time, I will wait a few days before reporting the results back. Thanks, Jerry
  9. jerry1117

    Alias Not Found

    Thanks again for the input, but there is no grid object on the form. Just some command buttons, and a checkbox. Jerry
  10. jerry1117

    Alias Not Found

    Thanks for the input, but I am doing all this in a single method. Here is the code. ********************************************************* WAIT WINDOW "Building report data; please wait..." NOWAIT SELECT tempamerge_adults.*,; tempamerge_adults.p01fname as adult_name...
  11. jerry1117

    Alias Not Found

    I am using VFP 7.0 and running a VFP SELECT statement to build a cursor (rpt) for a report. When I SELECT the cursor (SELECT rpt), I occasionally get an alias not found error. Sometimes I don't get the error. The SELECT statement to build the cursor runs correctly (i.e. the program does not...
  12. jerry1117

    Alias Not Found

    Thanks, I thought I did that, but I see I was wrong. Jerry
  13. jerry1117

    Alias Not Found

    I am using VFP 7.0 and running a VFP SELECT statement to build a cursor (rpt) for a report. When I SELECT the cursor (SELECT rpt), I occasionally get an alias not found error. Sometimes I don't get the error. The SELECT statement to build the cursor runs correctly (i.e. the program does not...
  14. jerry1117

    How do you register VFP classes

    Thanks Mike, but I am not using an OCX class. I am using a VCX Visual FoxPro class. Jerry
  15. jerry1117

    How do you register VFP classes

    I am using the _olecalendar class in the _datetime.vcx VFP class library in my application to provide a pop up calendar. I got the coding example from the samples. I have deployed the compiled app as an EXE to various locations. The problem I have is on some workstations I get a class not...
  16. jerry1117

    Not Logging Out When Application Exits

    The Registry key solved the problem. Thanks.
  17. jerry1117

    Putting An Internet Shortcut On The Desktop

    I need to put an Internet shortcut on the desktop from VFP code. I have seen the threads regarding how to do this for a standard shortcut using the wscript.shell object. Does this object have methods for creating internet shortcuts too? If not, does anyone know how to do it? Thanks, Jerry1117
  18. jerry1117

    Not Logging Out When Application Exits

    I starting a custom FoxPro application on Citrix. When the application does its normal processing and exits. The Citrix session is logged out. If I run the Acrobat reader from the software, and then close the reader, the Citrix session is not logged out when I exit the application. I have...
  19. jerry1117

    Converting a PDF file to text with Acobat OLE objects

    I am trying to convert a PDF file to text format under program control. I am using the acroexch.pddoc object. I can open the pdf file with the open method, and save it to a new location with the save method. But, I can't see a way to save it as a text format file. Does anyone know a way to...
  20. jerry1117

    variable in report designer

    It should be either: IIF(cvl>0,&quot;VL: &quot;+alltrim(str(cvl)),0) or IIF(cvl>0,&quot;VL: &quot;+ltrim(str(cvl)),0). I would also code it this way with a string 0. IIF(cvl>0,&quot;VL: &quot;+alltrim(str(cvl)),&quot;0&quot;) Trim only removes trailing blanks. What was actually returned by...

Part and Inventory Search

Back
Top