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

  • Users: dgrewe
  • Order by date
  1. dgrewe

    Foxpro to/from web recommendations

    Have you looked into Active FoxPro http://fox.wikis.com/wc.dll?Wiki~ActiveFoxProPages David W. Grewe Dave
  2. dgrewe

    Replacing text in an HTML file

    Karen, If you want a Fast HTML editor, do a search for DHTMLEDIT.OCX. Microsoft built it into Internet Explorer but it is still available as a download. I created a OleControl, Put the Control on a form and added buttons from all the simple HTML edit items like Bold, Lists, Underline, Etc...
  3. dgrewe

    Record locking a VFP table from C#.NET

    Thanks Cetin David W. Grewe Dave
  4. dgrewe

    Record locking a VFP table from C#.NET

    I know this is more of a C#.NET question, but I'm a VFP programmer just learning C# and can not find the answer to this question anywhere. In C#.NET I have to access a VFP table (SYSKEY.DBF) in a VFP database using 2 fields (dbfname c(10), keyfield c(10)). The table has No Primary Index or No...
  5. dgrewe

    Coding EVENT at runtime

    What if you had a table with predetermined code that needed to be run in memo fields and in the lost focus you called that table. Table Stru would be something like this for a table named GRIDCONTROLDBF Integer = PriKey - Index Primary, Memo1, Memo2, memo3,memo4 in the lost focus you had...
  6. dgrewe

    C5 error in complex app

    Tamar, Sounds famaliar to a battle we just fought here. Turns out the different VFP programs were on different servers running different VFP runtime modules. Updated all the servers to the same VFP runtimes (VFP9 SP2) and the C5 errors went away. Also had to update one server running .net...
  7. dgrewe

    VFP9 ODBC connection errors (again)

    Just got an Application written VFP3 and they want many changes and it updated to VFP9. There are 2 database. The main VFP database with all the tables is on the Server. A second VFP database, holding nothing but views and connection string, is on the local computer running the application...
  8. dgrewe

    A basic coding syntax question.

    Mike, Send me a email at DWGREWE HOTMAIL COM and I'll be glad to forward you a word document of the written standards we have for our company. Warning, it is over 30 pages long and addresses everything from Naming standards to white spaces to defining memvar and procedure names to sectioning...
  9. dgrewe

    Field captions in a local view

    Do not know if this will help you but, Most large Applications need a System Dictionary for users. My method of creating the System Dictionary is to open the Database Container and Copy it to a free table. I then add a few columns and populate them and split the table into 3 tables...
  10. dgrewe

    Show only one record in duplicate search

    Try this code if it is not more then you wanted. Needless to say backup your table before running it, I did not test it. * * Save your delete setting lcSetDelete = SET("DELETED") SET DELETED OFF * * open your table and get rid of deleted record OPEN DATABASE vpricelist SET DATABASE TO...
  11. dgrewe

    Color Scheme and changing

    Aslo remember that all you Class Objects on the form will have to have the same change. So the Shapes, Textboxes, Listboxes, grids , .... will have to be changed also. David W. Grewe Dave
  12. dgrewe

    Color Scheme and changing

    Have you tried setting the Form.ColorSource = 0 instead of the default 4 0 = Object's Color Properties 4 = Windows Control Panel. David W. Grewe Dave
  13. dgrewe

    SQL: Subquery nesting is too deep.

    To help figure out the record that was but in last on the same day, Do the tables have a field for a sequence number or primary key that can be used to determine what order the records were entered ? David W. Grewe Dave
  14. dgrewe

    Resource file not valid message

    VFP maintains some user preferences in a file FOXUSER.DBF. (such as window placement on the screen and many other items.) The file format changed from version 6 to version 9. Delete the FOXUSER.* files on the users computer. When the app starts up the next time, VFP will just simple recreate...
  15. dgrewe

    To SP2 or not to SP2

    Craig, Your correct. I made a bad assumption. I Assumed the programmer would have vista on his computer if the app was to be installed on a vista computer. Should have said "If the app is to be run on Vista Install SP2." David W. Grewe Dave
  16. dgrewe

    To SP2 or not to SP2

    SP2 was basicly a Vista fix. So if you have Vista install SP2, if not install SP1. David W. Grewe Dave
  17. dgrewe

    Convert a text file to dbf

    After you open the file in Excel and alter it, When you save the file in Excel, Why don't you save it as a *.DBF. David W. Grewe Dave
  18. dgrewe

    show view window

    OK, for my Syntax error changed the Create Window browwind ........... to Define Window browwind......... Sorry, been awhile since I had to use 2.6 David W. Grewe Dave
  19. dgrewe

    show view window

    or try Create window Browwind ............... Browse in window browwind David W. Grewe Dave
  20. dgrewe

    VFP 7 Getfile() not working as expected

    is the semi colon in 'TABLES:DBF' correct or a typo for this question. it should be a period not : David W. Grewe Dave

Part and Inventory Search

Back
Top