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: lordhawkins
  • Order by date
  1. lordhawkins

    unique file problem

    Why don't you use a cursor in both of forms? Create it using an SQL command with READWRITE parameter (VFP7 and up), then index the resulting cursor. In the event of data change, use UPDATES.
  2. lordhawkins

    Is it possible to limit the range of records in a grid ?

    It's better to use cursors to display data on grids. If then you want to "filter" the data just issue a new SQL command. I usually use this routine when reloading data to the cursor. thisform.grid1.recordsource="" select data1,data2,data3 from mytable order by data2 into cursor mycursor...
  3. lordhawkins

    List of Activex controls for VFP

    BTW I've already searched the Internet, and only have encountered partial lists...
  4. lordhawkins

    List of Activex controls for VFP

    Think I did my request unclear What I asked for was an internet address where someone has compiled a list of the Activex that ship with VFP. I have the idea to try to compile it (with the aid of people around the net) but, I don't know if its been done!!! I'd like to construct a kind of synoptic...
  5. lordhawkins

    List of Activex controls for VFP

    Someone could point me to the list of Activex controls (and its functionality) that ship with VFP? I'd also appreciate to know the parameters and other special features they may have. Thanks in advance
  6. lordhawkins

    Using Hierarchical Flexgrid

    I will try the solution in FAQ184-433. Thanks again
  7. lordhawkins

    Using Hierarchical Flexgrid

    First thing first. Thanks for the advice. The solution works...!!! [2thumbsup] What I want to do is (simply stated): 1-Load the cursor/recordset that contains: Invoice,Barcode,Color,Shipment, plus an empty column for the Code. 2-Select the color code from another list. 3-Select a range of cells...
  8. lordhawkins

    MS Tree Control - How To use

    Thanks...!!! I'm reading the content now...
  9. lordhawkins

    Using Hierarchical Flexgrid

    But I'm using the data directly from a VFP's DBC. Could I use the cursor as the recordset? Could I use an object created from the data from a query?
  10. lordhawkins

    MS Tree Control - How To use

    Could you provide a link? It's what i need at the moment [sadeyes]
  11. lordhawkins

    Using Hierarchical Flexgrid

    I need to use a Hierarchical Flexgrid (the ActiveX that comes with VFP7) because i need to be able to select multiple cell for fill them with data. How can I populate the grid? I've tried: SELECT * from rollos WHERE procesado=1 INTO CURSOR gaga thisform.Grid1.r.Recordset = "gaga" but got the...
  12. lordhawkins

    How to setup my desktop as a server?

    I'm new at administering SQL Server. I'm using the 2000 version, that I recently installed in my system. The central server is running SQL nad it works fine. I can query and connect to their database. The server runs the core apps normally. As a developer I need to run a database copy locally...
  13. lordhawkins

    Adding color to one section of a grid

    Using the dynamicbackcolor property. Consult the VFP help file that shows an example, and extrapolate from there.
  14. lordhawkins

    VFP Form combo error

    Ever when working with combos (and grids) that change its content interactively issue a Recordsource command BEFORE recreating the cursor that populates the combo/grid. Thisform.combo1.recordsource="" <SQL Statement> into cursor mycursor Thisform.combo1.recordsource="mycursor" Note that...
  15. lordhawkins

    Using Farpoint Spread 7.0

    Where is the advertisement? I've searched the vendor's website and can't find it. Could you point me to it?
  16. lordhawkins

    Using Farpoint Spread 7.0

    Spread is an ActiveX control (especifically for VB an VC+) that has spreadsheet functionalities. It has a lot of interesting uses, but I'm not sure if it can be worked inside VFP. My question comes in that I've used Flexgrid (a control also made for VB) and it functions with VFP.
  17. lordhawkins

    Class Source Code Protection

    alvechurchdata: How could I create a DLL?
  18. lordhawkins

    Using Farpoint Spread 7.0

    It's possible to use the control Farpoint Spread inside VFP7 or VFP8? If this is so How is the right way to create/embed a control an send parameters to it? Could I issue commands like thisform.spread1.AnyProperty (where spread is the name of the object) or is it more complex than this ? Or...
  19. lordhawkins

    Connecting to Server denied but NOT sending queries

    No idea... I've started in this job a month and half ago. If that may be an issue, I'll program a "reindexing" for tonight.
  20. lordhawkins

    Connecting to Server denied but NOT sending queries

    I've fixed it using a Tools\Options\Advanced Timeout 6 seconds instead of 4 Do you know what was the problem?

Part and Inventory Search

Back
Top