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. DanaAnderson

    Copying tables from FoxPro into SQL Server 2000

    How are you copying the data? Try this: Export the data using the COPY TO command with the clause TYPE SDF. Then create a package that reads the SDF files into the SQL Server tables. The company I worked for a couple of years ago did this for on-site systems, sometimes with a couple hundred...
  2. DanaAnderson

    Name Parsing

    I tend to agree with the comment that it is a losing battle. As an argument: Carol Alt Carol O'Connor Which is male and which is female. You know because they are famous, but if you didn't know who they were, you wouldn't know that one is a female and one is a male. Dana Delaney Dana Carvey...
  3. DanaAnderson

    HOW TO ENABLE MY APPLICATION TO ACCESS AT THE NET

    If you are running on NT 4, maybe Windows Terminal Server can help. It allows you to run an application remotely through a browser. You'd need to set up a secure connection, a VPN is best. They did this on my last job, and people on the west coast used the application that sat on our server...
  4. DanaAnderson

    Copy To xxx.xls XL5 truncating to 16384 rows

    Assuming that you do not have more records than the version of Excel allows, you can simple do this: COPY TO Filename.xls type Fox2X. That way the file is assumed to be an Excel file by Windows, Explorer shows the Excel icon for the file, and the file is opened in Excel if you double click it...
  5. DanaAnderson

    Grid help?!

    When you place a grid on a form, the grid has a complete set of properties that allow you to define everything you are asking about. In the Layout tab of the properties sheet, find ColumnCount. Type 3 and press enter. You will see three columns. Then select each Column, and in the Data tab...
  6. DanaAnderson

    Microsoft Internet Controls & Createobject()

    In VFP 7 I think you're looking at the _internet.vcx class library. It is in the FFC folder. Dana
  7. DanaAnderson

    How to change exit message

    Use the ON SHUTDOWN [do SomeRoutine] command to specify what happens here. You can put up a wait window or whatever. Just remember that you should find out if the user wants to quit, no matter how you word it, and do something appropriate. You can also issue ON SHUTDOWN with nothing else to...
  8. DanaAnderson

    seek on two part key

    What is the exact value of [thisform.pageframe1.page1.cbo_rectype.displayvalue]? If it has a leading or trailing space it will cause the combined value with [thisform.pageframe1.page1.txt_rxqcode.value] to be incorrect. [thisform.pageframe1.page1.cbo_rectype.displayvalue] must be exactly one...
  9. DanaAnderson

    best connection

    Mike, That is not necessarily the case. YOu can have the EXE on the server only as a repository, and have a startup application check the version to see if it is newer than the workstation version, and if so, download it before running it. The server EXE is never run. We do that where I...
  10. DanaAnderson

    Complications between foxpro 8 and foxpro 2.6A

    If you have been using Stonefield AppMaker, or even just GenscrnX, it will be best to simply use the generated *.spr files as programs and work on replacing them with newly designed forms. If you try to convert the project, you may likely run out of disk space. I tried this a while back. I...

Part and Inventory Search

Back
Top