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 strongm 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. Kflasph

    CursorGetProp("tables") not returning table name

    As far I a can tell, there is nothing different from the one cursor I am using from the others being called in the program. That is why I am at a loss at to why it is not working. The new cursor is called/created the exact same way the other cursors in the program are created. I'll take Mike's...
  2. Kflasph

    CursorGetProp("tables") not returning table name

    Thanks for quick responses! Mike hit the nail on the head as to how the current function is working. The function using the CursorGetProp('tables') has been in place for some time and works perfectly with all other cursors being used except this one. I'm having to change a program to add...
  3. Kflasph

    CursorGetProp("tables") not returning table name

    I have a program where I am extracting the table name via CursorGetProp("tables"). I am processing approx 20 tables and this function works great on all tables except one. I cannot understand why this is not working for one table!! I far as I can tell, there is nothing different about this table...
  4. Kflasph

    DBCC Checkident question - suppressing printed error message

    Here is the solution I found for my issue. . . TheBugSlayer was correct and no matter how I executed the command in a stored procedure, the function performed correctly. I gave TheBugSlayer a big thank you star for confirming I was not off my rocker and my code was correct. The issue was...
  5. Kflasph

    DBCC Checkident question - suppressing printed error message

    Ok - back again. . . After applying all service pack updates, still receive the message. Any help would be appreciated. Thanks, KFlasph
  6. Kflasph

    DBCC Checkident question - suppressing printed error message

    I agree with TheBugSlayer. . .It actually does not return as a recordset but since the called proc in my program expects a recordset and error occurs with the message coming back from SQL. The stored procedure is only being called by one program run by one person at any time. After furter...
  7. Kflasph

    DBCC Checkident question - suppressing printed error message

    I have a stored procedure in which I reset the indentity field using the dbcc checkident ("TableName",reseed,0) command. Everything works as expected but I am having something strange happen with a few of my customer when they run the stored procedure. 99% are able to run the stored procedure...
  8. Kflasph

    Creating a cursor using results from CTE

    Thanks for the reply ! I was doing the process the wrong way. I was doing my CTE select first and then trying to build the cursor from the results. The way you have it makes sense now - I was trying to put the cart before the horse. Thanks so much ! Star for you ! KFlasph
  9. Kflasph

    Pressing Escape to answer No for Message Box

    Since MicroSoft couldn't be convinced ; ) ... We went with the user just pressing Enter or "N" - I set the MsgBox to default to the No button when presented. Thanks for all of the responses
  10. Kflasph

    Pressing Escape to answer No for Message Box

    Thanks for the input - I was hoping there was a way to do this without having to build a custom form. Thanks again, Kflasph
  11. Kflasph

    Pressing Escape to answer No for Message Box

    They want to be able to press the Escape button sooo If I capture the keystoke - how do I relate it to the Message box? Kflasph
  12. Kflasph

    Pressing Escape to answer No for Message Box

    I have a basic Yes No message box where I would like the user to be able to press escape when the message box appears as a 'No' answer. Is there a way to do this ? Kflasph
  13. Kflasph

    Creating a cursor using results from CTE

    I ended up creating a temp table to hold the values but I was just wondering if it could be done. Thanks for the quick responses ! KFlasph
  14. Kflasph

    Creating a cursor using results from CTE

    I have built a Common Table Expression that gives me the results I need and I would like to loop through the results to run other selects with each record. Is it possible to create a cursor with the results of a CTE? I can run the CTE then select the information from the table in a simple...
  15. Kflasph

    Hide menu line when creating Popup menu

    Again ... Thanks so much for the help ! Kflasph
  16. Kflasph

    Hide menu line when creating Popup menu

    Okay this is probably one of those " You should have said that to begin with ". My form is a mdi child so when the form is launched, the parent top level menu is displayed at the top of the form. When I added the Popupmenu to the child form, the top level menu disappeared and it is blank where...
  17. Kflasph

    Hide menu line when creating Popup menu

    Thanks for your help ! KFlasph
  18. Kflasph

    Hide menu line when creating Popup menu

    I only have the one menu item with the children under the item - I checked just to make sure ;) I didn't know if maybe there was something I could set when the form is loading to suppress it. KFlasph
  19. Kflasph

    Hide menu line when creating Popup menu

    Let's say I don't want to do that. . . is there any other way to remove the line ? Kflasph
  20. Kflasph

    Hide menu line when creating Popup menu

    I have a program that I created a PopupMenu for so when the user does a right click - there are options they can select. The question is : In order to create the PopupMenu, I created a menu for my form and then made parent for the menu options disabled and not visible. When the form is...

Part and Inventory Search

Back
Top