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 bkrike 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 mensudb

  1. mensudb

    Performing ASCAN on two fields !?

    That is what I need. Thanks.
  2. mensudb

    Performing ASCAN on two fields !?

    Hi, I have an array with three fields. I would like to run ASCAN on two fields. Is that possible with this function? Thanks, Mensud
  3. mensudb

    GROUP BY problem

    Hello, I have a table with two columns: Code and Collection. The table looks like: Code Collection ------ ---------- 10A-35 ABIGAJL 10B-28 AVALON 15K-35 ANJALI 10A-35 WISTERIA 10A-35 CELESTE How to create a cursor which also have two columns, for code and collection, so that...
  4. mensudb

    Invalid seek offset

    I wish I could fire him, but maybe the best solution for me is to change the company. Nothing is worth of my nerves. Anyway, thanks for your help.
  5. mensudb

    Invalid seek offset

    Hi, I have one more "crazy" situation. Very often, network administrator closes some free tables, without noticing users or telling them to close applications. As a result,our application gives us an Invalid seek offset error, and the application crushes. Is there a way to check if indexes are...
  6. mensudb

    How to check if table is accessible

    I suspected that the problem is in hardware, but since our infrastructure is "pure" mess, I am trying to do what I can. Thanks a lot. Mensud
  7. mensudb

    How to check if table is accessible

    Hi, I am working with free tables which are on a server. Sometimes, when my program try to access any of tables, I get an warning screen telling me that alias for the table could not be found. Is there any way to check out if the table can be opened or accessed before I commit any changes in...
  8. mensudb

    Problem with MSFlexGrid

    I figured it out. The second form was modeless, and even when it was destroyed, I did not get the focus on grid. So, the form is now modal, and works quite well. Mensud
  9. mensudb

    Problem with MSFlexGrid

    Hi, I am using MSFlexGrid (6 I think) and when the grid is appeared for the first time, everything is ok. I am able to select any cell. Also,I am using an "Click" event of this control, to keep info about clicked cell. The code is: with thisform.testgrid thisform.rownum=.mouserow...
  10. mensudb

    Creating cursor from array ?

    Thanks rgbean. It works. You saved me a time.
  11. mensudb

    Creating cursor from array ?

    Hello, I was trying to create a cursor from an array and it was usuccessful: create cursor cPrint (slip n(7) null) append from array('orderArray') If my array orderArray has, for example 5 items, created cursor always has only one record, and it is the first item of the array. I have...
  12. mensudb

    WHERE clause in SELECT does not work !?

    Hi, Craig's advice (WHERE sli==lslip) was working. Thanks for all others who replied on this question. Mensud
  13. mensudb

    WHERE clause in SELECT does not work !?

    Hello, I have very simple query: SELECT * FROM pordtxn WHERE slip=lslip INTO CURSOR ctmp where lslip is local variable (numeric) Every time this statement is executed I am getting the whole table PORDTXN. I have used debuger, and when this line has been executed I got the message telling me...

Part and Inventory Search

Back
Top