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 glennpd

  1. glennpd

    Finding mysterious FoxUser resource file

    Hi Rick, Because VFP is so persistent to convert the FPW/DOS foxuser files that it locates, I would feed it an empty version specific one of it's own yet still specify "resource=off" in the config file. That is I would include a foxuser file in the setup but not actually use it, thereby...
  2. glennpd

    VFP9.0 Beta new Newobject syntax use

    According to the VFP9.0 Beta documentation the syntax for the NewObject function is as follows: " NEWOBJECT( ) Creates Objects without Raising Initialization Code To mimic the behavior of a class opened in the Class Designer or Form Designer, pass 0 to the cInApplication parameter. This...
  3. glennpd

    can 2.6 tables be buffered in VFP6?

    afaik buffering works well with FP2x tables as long as you remember to set multilocks on. eg. SET MULTILOCKS ON USE FP26TABLE *-- vfp 9.0 FUNCTION cast() REPLACE (FIELD(1)) WITH (CAST('123',TYPE(FIELD(1))) ? GETFLDSTATE(-1) Glenn
  4. glennpd

    VFP9.0 Beta new Newobject syntax use

    VFP 9.0 allows creating an object but without INIT. using the following syntax: Lo = Newobject('MyClass','MyClasslib',0) Can this technique be used simulate a designer and facilitate the WriteMethod method? If not, does anyone have any "good" proctical uses for this new feature? Thanks Glenn
  5. glennpd

    Entering numbers into text boxes...

    A simpler solution is to set SelectOnEntry to true and then in the click event add: this.setfocus() Works great! Glenn

Part and Inventory Search

Back
Top