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

    How to be back end RDBMS agnostic?

    I would think to be truly agnostic of the back end you would have to design the FE to consume XML. John [lightsaber]
  2. hoosier121

    I solve problem with use COM object on another computer

    Mike Are VFP com dlls similar to VB com dlls, in that, the dll itself is single threaded. Putting into MTS and using MultiUse is what provides the multi-threaded capabilities. John [lightsaber]
  3. hoosier121

    HOW TO PASS PARAMETER TO SUB REPORT

    remsor, From within crystal reports you could pass the variable from the main report to the sub-report. Use a field object and declare the variables in each field object like the following WhilePrintingRecords; Shared CurrencyVar TheVariable; John [lightsaber]
  4. hoosier121

    Rereshing grid on Interactive Change

    CSR Are you using buffering? I think that without buffering used you would have to explicitly move the record pointer through the records for them to be written. I could be mistaken though. John [lightsaber]
  5. hoosier121

    Messagebox Question

    gmattox You could use Yes/No buttons and make the No button the default. John
  6. hoosier121

    Intellisense when using With... EndWith structure ?

    IRABYY, I would recommend to use Macros (macrocommand) recorder/editor. That is a good tip to keep in mind. But what I had in mind was more like the following. With ThisForm .<<After a &quot;.&quot; I would like to see the Members List>> EndWith John
  7. hoosier121

    Intellisense when using With... EndWith structure ?

    Hi, Is there a way, using VFP 7, to configure Intellisense to work while using a With.. EndWith structure? John
  8. hoosier121

    Crystal from VFP

    Hi DanNorris2000, Creating the report object this way is the old way, since you have 8.5 you could use the RDC. oCRAPP = createobject(&quot;crystal.crpe.application&quot;) Here is an FAQ on the subject... faq184-3039 John [pc] Everything I needed to know I learned from Yoda.
  9. hoosier121

    How to integrate Crystal Reports 8.5 (RDC)

    The following is a strategy for integrating Crystal Reports 8.5 (using the Report Designer Component (RDC)) with FoxPro 7.0. The concept is to create a ôReport Viewingö form that is called from a menu or a button on another form. I use one æReport ViewerÆ form and pass the report name and...
  10. hoosier121

    How to make selected cell different from selected row color

    Thanks guys, My distinct color is working great now. John [pc] Everything I needed to know I learned from Yoda.
  11. hoosier121

    How to make selected cell different from selected row color

    Hi all, With the help of the great experts here I have been able to make a distinct row color for the selected row of a grid. What I want to do now is make the selected cell different than even the row color. I have been able to make it white, but when I try another RGB I get funky results...
  12. hoosier121

    Releasing Multiple forms ?

    ChrisRChamberlain Thanks for the input, but I still get the same symptom. One thing though, when i run the clienttree form by itself (i.e. not called from main.scx activate event), everything works as it should. I am wondering if the treeview needs to be in the main (toplevel) form. I think...
  13. hoosier121

    Releasing Multiple forms ?

    Hi, I have a main form as toplevel that calls my &quot;treeview&quot; form from the activate event, so that is is loaded when the program is first run. The treeview form has a treeview control on the left side and client info on the right side. I use the treeview as navigation to open other...
  14. hoosier121

    setall columns sparse to .F.

    Thanks fluteplr, I was trying to use the setall with the .column prefix in front of sparse and it wouldn't work for me. I was also able to figure out how to do this with a loop construct but I like your approach better, it's less code. WITH This i = 0 FOR EACH oColumn IN .COLUMNS i =...
  15. hoosier121

    setall columns sparse to .F.

    Hi all, Instead of doing this: This.column1.Sparse = .F. This.column2.Sparse = .F. This.column3.Sparse = .F. This.column4.Sparse = .F. This.column5.Sparse = .F. Is it possible to set all of these to .F. with either the setall command or a loop? If so, Tips would be appreciated. John...
  16. hoosier121

    Monitor is blank

    I have a flat screen monitor that is a couple of years old. I'm not sure of the brand, (generic something or other). Anyhow, a few days ago it started showing no display except for ever 3 or 4 seconds it would blink and show the display for a very brief moment. Other monitors work on the...
  17. hoosier121

    Treeview as navigtion to display forms

    Thanks Rick, When I opened up that solution.scx form and looked at the code under the hood it had everything I was looking for. Now I can go have fun with it. John [pc] Everything I needed to know I learned from Yoda.
  18. hoosier121

    Treeview as navigtion to display forms

    Can the treeview control be used to run other forms when one of the nodes are clicked? I'm hoping for example, ( if node 2 is clicked do form whatever). If this is possible could someone point me in a direction to explore or supply example code? Thanks in advance [pc] Everything I needed to...
  19. hoosier121

    How to include import and export wizard?

    doh! Thanks for the info guys. That's what I was afraid of. At least I now know I have to &quot;roll my own&quot; now. I am using vfp7 and I will check out &quot;wzimport.app&quot; though. [pc] Oh Tartar Sauce.
  20. hoosier121

    How to include import and export wizard?

    Hi all, I am wanting to include the import and export wizards with my exe. I have built a menu and it sits on my main form ( I am not using _Screen). I have the options included with _mfi_export and _mfi_import. They are available when the main form is called when I am in Foxpro. But when...

Part and Inventory Search

Back
Top