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 IamaSherpa 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. ElectricEel

    Control class and SelectAll

    That's what I was looking for. Thanks, RiverGuy.
  2. ElectricEel

    Control class and SelectAll

    MyTextBox.SelectAll() would accomplish the same. My goal is to NOT have to explicitly call each TextBox control but implicitly call them from the Control class within the loop.
  3. ElectricEel

    Control class and SelectAll

    Within a simple validation loop, I need to SelectAll text within a textbox control when invalid, however SelectAll is not available in the Control class. How can I go about this within the current loop? Pardon my ignorance if the answer is obvious. Here's what I have: Private Function...
  4. ElectricEel

    Returning the name of current sub or function

    Thats what I'd like to avoid. I have a couple thousand procedures and functions to update.
  5. ElectricEel

    Returning the name of current sub or function

    Is there any way to return the sub or function name that is currently executing? This is to create a general error trap to write the current form and code the error occured and passed to an ErrorClass [code] Private Sub MySub() On Error Goto ErrHandler 'code Exit Sub...
  6. ElectricEel

    TOP keyword no longer works

    Thanks for pointing me in the right direction. EM's properties said it was 7.0 compatible, however it's not like Microsost has never been wrong before... I EXEC'd sp_dbcmptlevel 'TableName', 70 and viola! TOP works. Aloha Neil
  7. ElectricEel

    TOP keyword no longer works

    The TOP keyword no longer works on one specific database. It gives me an "Incorrect Syntax" error whenever I use it. It works on every table but one. Also, in EM, the "Return Top.." menu item is not enabled. Help PLEASE! TIA.
  8. ElectricEel

    Being kicked into 'Single User' mode after Maintenance Plan runs...

    Well I created a job to run every morning at 7AM, and to page me if it fails! Hopefully that'll do the trick! Thanks for pointing me in the right direction! Aloha Neil
  9. ElectricEel

    Being kicked into 'Single User' mode after Maintenance Plan runs...

    I was originally thinking of running it as a scheduled task from NT, however i'm unaware of any utilities to exec sp's from the command line. Does EM or DTS have a scheduler? Neil
  10. ElectricEel

    Being kicked into 'Single User' mode after Maintenance Plan runs...

    BeckahC, I am using EM, specifically the DB Maintenance Plan Wizard to create the maintenance plan. Since it happens randomly and there is no mention of it being reset to single, I don't have a clue as to when it is being tripped. Ideally I would like to exec sp_dboption at 7am just to be...
  11. ElectricEel

    Being kicked into 'Single User' mode after Maintenance Plan runs...

    I have a database that is randomly reset back to single user mode after my maintenance plan execs. I've checked all the logs and they come up clean. Any Ideas? Is there command line utility to reset SQL server in the AM? e.g. exec sp_dboption 'Database_name', 'single user', false Or do i...
  12. ElectricEel

    Return 1 record in sub-select

    balves & arrowhouse TOP! just what I was lookin' for... Thanks Neil
  13. ElectricEel

    Return 1 record in sub-select

    Is it possible in a sub-select to return only 1 record if there may be a posibility of returning multiple records? Is there a function/property similar to MaxRecords in ADO where you can specify the maximum number of records to return? e.g. SELECT c.casename, (SELECT rep(*only return 1 rep)...

Part and Inventory Search

Back
Top