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 Mike Lewis 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: simco
  • Order by date
  1. simco

    Crystal Reports and BO 6.5

    Hi Which version of Crystal Reports is working with Business Objects 6.5.? Can this version of Crystal work with a Universe as a data source? Thanks SS
  2. simco

    Crystal and BO 6.5.

    Hi All Which version of Crystal Reports is working with Business Objects 6.5.? Can this version of Crystal work with a Universe as a data source? Thanks SS
  3. simco

    6.5 and XI2 on the same server

    We are currently running BO 6.5. Is there a way to upgrade some of the licenses to XI and still keep the current 6.5. version for the rest? We need the XI for testing/demo purposes, to asses an upgrade. Any input is appreciated. Thanks. SS
  4. simco

    Using the result of aSELECT as criteria for another SELECT

    Is it possible to use a table type variable to store the result of the first select? If yes, how? thank you
  5. simco

    Using the result of aSELECT as criteria for another SELECT

    Oh yes, thank you. I considered this, but (I forgot to say, my mistake), I have a lot of Update (like more than 20) statements that use the same condition (where IF_Field in....). I would like to run the first select only once and then use it for each Update.
  6. simco

    Using the result of aSELECT as criteria for another SELECT

    Hi all, I want to do something like: SELECT ID_Field from STable where [here comes a long list of conditions that I need to build dynamicaly] Then I want to be able to say: Update DTable set Field='Value' where ID_Field in (here I want to put the result from the above select). (all the...
  7. simco

    How to add dynamic where clause

    What if the Select statement looks like: "SELECT field1 from table1 inner join table2 on table1.id=table2.id group by field1" and I need to restrict both table1 and table2 values. (adding it to the end is going to cause an error in this case) See, that's my problem, it has to work...
  8. simco

    How to add dynamic where clause

    Hi, I am trying to dynamically add a where clause to any existing SQL SELECT statement (any SELECT that comes from the user). The purpose is to allow them to select only the records flagged in a certain way. And, since the flag field is the same in all tables, I was thinking that a solution...
  9. simco

    Update remote data

    Thanks for reply. UPDATE would be a good solution. In the case presented above, I guess I was just trying to find out if FoxPro allows the use of CursorSetProp and TableUpdate to a cursor based on other cursors and not on the actual server tables. Thanks again P.S. I would paste the code...
  10. simco

    Update remote data

    Hi all, I retrieved data from a remote data source using SQLEXEC and I created 2 cursors. Now, at some point in my code I use these 2 cursors to create a third one. Than I want to make the third one updatable using CursorSetProp, but I get an error message: "Property is invalid for table...
  11. simco

    How to populate 2nd combo box from 1st combo box?

    You are on the right track. Let's say that your form is called Form1, and 1st combo box is Combo1. When you create the query in the query designer, just write in the Criteria (for the field that is going to be the displayed in the 2nd combo box) Form1!Combo1.value. Then save the query and use it...
  12. simco

    Remote views vs. SPT vs. CursorAdapter

    Thanks everybody!
  13. simco

    Remote views vs. SPT vs. CursorAdapter

    Nobody? Any tips will be appreciated! Thanks again!
  14. simco

    Remote views vs. SPT vs. CursorAdapter

    I am interested in any opinions you have regarding these 3 methods of retrieving data. Especially the new CursorAdapter from Visual FoxPro 8.0. Thanks a lot! :-)
  15. simco

    Memory optimization please help

    Did you compact your database? If no, do so (go to Tools/Database Utilities/Compact Database). :-)
  16. simco

    Access query works fine unless is executed from VB application

    What do you want to do with Like ('072*'). If you want all the phone numbers that start with 072, than this syntax is wrong (is looking for phone numbers equal to 072*).
  17. simco

    Connect to server

    I tried the views and they are too slow. That's why I need the SQLCONNECT.
  18. simco

    Connect to server

    I tried the view and they are too slow. That's why I need the SQLCONNECT.
  19. simco

    Connect to server

    I want to use Visual FoxPro as a front end for my application. I know about SQLCONNECT(), but I don't know where to write it. I want to create a lot of forms and I want to be able to select only the table in the Data Environment, not having to write a SQLCONNECT for every form. Do I make sense...
  20. simco

    Two unrelated continuous forms on one form?

    Create a form for each table and them includ them both as subforms in a third form (with no recordsource) (used as a container only). :-)

Part and Inventory Search

Back
Top