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 tommolloy

  1. tommolloy

    How to check if LL file is open?

    wilfranz, George Tasker has written a function called is_run, that determines if a Windows application is already running by the known portion of the title bar. This function returns the window handle. This file(ID#9292) is available at universalthread.com.
  2. tommolloy

    Why year 1900 is not a leap year?

    The story I heard is that when Lotus developed 1-2-3, they did not realize that century years must be divisible by 400 to be leap years. Lotus 1-2-3 became the spreadsheet standard. In order to be compatible with Lotus, all the rival spearsheets had to conform to this error.
  3. tommolloy

    How do i get the computer name of a user?

    You may want to try this, when all you need is the user's name. SYS(0) will return the host name and the user name. *!* username.prg LOCAL lcUserName, lnLen, llRetVal DECLARE GetUserName IN WIN32API String@, Integer@ lcUserName = SPACE(20) lnLen = 20 llRetVal = GetUserName(@lcUserName, @lnLen)...
  4. tommolloy

    Enabling a Mouse Pointer

    Steve Sawyer published shpgridpick class in the December 1999 FoxPro Advisor that drops a transparent shape on top of the grid. When clicked, the position on the grid receives focus relative to the mouse location on the shape.
  5. tommolloy

    WSAD IDE - JSP Handling Problem

    When this happens to me on my Tomcat server, I move the old files that Java writes when the JSP is run to a temporary directory. On my machine there files are found in c:\Tomcat\work\Standalone\localhost\.... If your file is named page1.jsp, you will find page1_jsp.java and page1_jsp.class...
  6. tommolloy

    UDF in Browse Crashes Foxpro

    WHERE is not used with BROWSE. If you replace WHERE with FOR it should work.
  7. tommolloy

    Spreadsheet Program

    Take a look at JAVA E-NEWSLETTER for October 7, 2002 from Builder.com "CREATE EXCEL-FORMATTED DATA" is the subject.

Part and Inventory Search

Back
Top