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 itc1

  1. itc1

    How to Distinguish Text in an Edit Box

    Thanks Bill, I will try the .SelStart and .SelEnd commands to find the first occurance, then I guess I will figure out a way to continue throughtout the text to find the other occurances.
  2. itc1

    How to Distinguish Text in an Edit Box

    I am trying to find a way to distinguish or highlight keywords in a section of text in an edit box. I locate for certain errors in a block of text such as double asteriks or double brackets. When it locates the double asteriks or bracktes, I need it to be distinguishable so I can readily find...
  3. itc1

    VFP Questions

    Thanks so much everyone for your help. I am looking at all the suggestions.
  4. itc1

    VFP Questions

    Currently we are running a VFP app (collection of forms) on a client machine which accesses the database using a mapped drive connection to a server. Because of this connectivity the app runs slow. Is there a way to speed the process on the client side. Does VFP have a way to use ODBC...
  5. itc1

    Index Key Error

    Olaf, our data environment includes one table which is the rpttable that you see contained in the SELECT statement. All of the fields of this table are selected as well. Cursor1 seems to error out indicating an index tag is needed. We don’t know where the index tag is needed. Thanks so much for...
  6. itc1

    Index Key Error

    thanks olaf but I am not sure what syntax I should be using. could you please write out what I need to write based on the this code. Thanks. SELECT Rpttable.id1, Rpttable.fname, Rpttable.lname, Rpttable.company,; Rpttable.expiredate, Rpttable.idz, Rpttable.pubname, Rpttable.effgroup; FROM...
  7. itc1

    Index Key Error

    Dave, here's the code we are using. We get index tag not found on cursor1: SELECT Rpttable.id1, Rpttable.fname, Rpttable.lname, Rpttable.company,; Rpttable.expiredate, Rpttable.idz, Rpttable.pubname, Rpttable.effgroup; FROM rpttable; INTO CURSOR cursor1 REPORT FORM rpttable.frx NOCONSOLE...
  8. itc1

    Index Key Error

    Getting an Index Key error when creating a VFP report. Why?
  9. itc1

    Referencing other forms within a .app

    We have built an .app and when we run the .app we are having trouble referencing the main form from another form within the project .app. The error we get is "object is unknown". Any ideas? Thanks.
  10. itc1

    VFP Progress Bar Problems

    Mike we will look into the progress bar problem. Here's my other problem. We have built .app and when we run the .app we are having trouble referencing the main form from another form within the project .app. The error we get is "object is unknown". Any ideas? Thanks.
  11. itc1

    VFP Progress Bar Problems

    Mike and Rick, we designed the prog bar and got the code from somewhere else. The .vcx error says "unable to find unknown cc_onformdestroy. The error is coming from the Visual Class Library for commcontrol.vcx. Thanks again.
  12. itc1

    VFP Progress Bar Problems

    Hi, I have a VFP problem. I have made our FoxPro databases where multiple users can access it at the same time by creating an application. Originally, only one person could access the database at a time. However, the prog bars are not working wben building the application. I am getting vcx...
  13. itc1

    Here is a typical statement on our

    Here is a typical statement on our website SELECT (title,summary,id) FROM alldata WHERE (MATCH (keywords1) AGAINST ('d4t')); keywords1 is a fulltext, indexed field. It was supposed to be faster than it has ended up being. The search runs really slow. Should I build one or more tables that...
  14. itc1

    How can I get the search feature on

    How can I get the search feature on our website to work faster. We use MySQL databases and indexes. Currently, when doing a query it takes a long time for the results. Thanks in advance.
  15. itc1

    ramani, we loaded the .prg file for

    ramani, we loaded the .prg file for doing generic queries and add requests from VFP to QuickBooks 2002. Is there any code to modify item list. We need the QBXML code to modify existing items in the items list in QuickBooks 2002. Thanks in advance

Part and Inventory Search

Back
Top