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 TouchToneTommy 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: mirirom
  • Content: Threads
  • Order by date
  1. mirirom

    Problem with cin >> ignoring input in a function

    hi, i'm sure this is a pretty basic question. basically i have a function that's called within a loop. at the end of the function, i've placed char c; cout << "blah blah blah"; cin >> c; cin.ignore(80, '\n'); however, the cin >> doesn't wait for the user's input. i've tested to see what's...
  2. mirirom

    Datagrid not refreshing after postback

    hi, i have a DataGrid that's bound to a table within an untyped DataSet. during the application's use, the table has rows added, updated, deleted, etc which is handled by a method in the page's code behind. after the method executes the page reloads. my Page_Load handler explicitely states...
  3. mirirom

    Updating DataSet to datasource question

    hi, i'm working on an app that uses a dataset who's tables are filled with some hybrid SELECT queries, meaning, the tables in the dataset are hybrids of mixed data from the datasource (SQL Server btw), or better, no single table in the dataset is a modeled copy of a table in the datasource...
  4. mirirom

    Get value of control built in template column

    hi, i'm working with a datagrid that's almost entirely composed of template columns (the implementation of it is unique enough that it's required). one of the template classes i've created defines a DropDownList control and adds it to the footer. this all works fine and well. however, i'm...
  5. mirirom

    tooltips in SELECT dropdownlist possible?

    hi, i'm wondering if it's possible to assign tooltips to items within a dropdownlist control. the standard shows that the OPTION tag supports the title attribute but no rendering occurs. any suggestions are greatly appreciated. thx! ..:: mirirom ::..
  6. mirirom

    Runaway sqlservr.exe process - killing the machine

    hi, i have an instance of MSDE that seems to be chomping away at all available resources. wound up installing SQL server mgmt tools on the machine hosting the instance & upon inspecting the management logs, this error pops up about 1ce every 3 minutes: This SQL Server has been optimized for...
  7. mirirom

    Error, ODBC Driver not activated - question

    hi, i'm having a weird problem with a scheduled job that is rather fickle about running. the job executes a DTS packaged which includes a step that utilizes an installed system DSN (on the SQL server) to a 3rd party application (Protrax). basically the DSN is used to read data in an external...
  8. mirirom

    Insert new row in table for each distinct value in another

    hi, i'm hoping someone can offer some advice as to how to go about dynamic row insertion. i have a table filled with projects, & another table with associated phases (subprojects). there's a business rule that states that all projects *must* have a base phase - '.000', and unfortunatley...
  9. mirirom

    Embedding Windows control in asp.net page

    hi, i've gone through the exercise of creating a windows user control and adding the control to an aspx form by way of the <object> tag as specified on MSDN and a few hundred other posts out there. however, i can't seem to figure out how to get the control to run from our intranet server...
  10. mirirom

    problem w/ dynamic database dropping via DDL

    hi, can anyone explain why this is returning an error when executing? USE master DECLARE @dbname sysname SET @dbname = '234_56Test' EXECUTE ('IF EXISTS (SELECT name FROM master.dbo.sysdatabases WHERE name = ' + @dbname + ') DROP DATABASE ' + @dbname) GO the returned error is Line 1...
  11. mirirom

    Import Exchange 2K folder into SQL 2000

    hi folks, i'm hoping my question doesn't generate too many &quot;try this 3rd party product&quot; replies. can any of you offer advice on how to directly import data from an Exchange server to a SQL2K database? in my particular example, there's a *public* contacts folder which is...
  12. mirirom

    literal object definitions in asp.net

    hi, i'm wondering if someone can explain where object instances are actually defined in the page creation lifecycle of asp.net pages. for instance (no pun intended), you create a webform, add a few server controls, set some props, compile, etc. and voila! the page is displayed. however...
  13. mirirom

    Reformat object onScroll

    hi, i'm trying to figure out how to reposition an object on a page when a user scrolls the document window. i've created a function that does this when the document loads as well as on resize, however, scrolling has no effect. the object in question is a footer that should always appear at...
  14. mirirom

    connection error with specified user account

    hi, i'm rather new to developing apps with SQL (2K) server, and i'm having a problem with connecting to a database within my local instance. the error i'm getting back states that the account i'm trying to log on with doesn't have permission, yet i've created this logon account (within the...
  15. mirirom

    Reading DIV element props problem

    hi, i'm wondering how to go about returning a calculated &quot;top&quot; value for a dynamically placed DIV element, when the element has been been positioned relatively on the page. for example, i have a set of DIVs that are being built on the fly and flow down the course of a page. the...
  16. mirirom

    Usng JScript to return props of custom controls

    hi, i'm wondering how to go about returning physical properties of custom controls (not ascx but controls derived by pure classes) using javascript. for example, my control (inherited from WebControl) has its height prop(this.height) assigned a value in its constructor. if you view the...
  17. mirirom

    Understanding custom controls

    heya, i'm taking my first stab at implementing custom controls in a web app and i keep getting errors (surprise surprise) while trying to build instances of custom controls. first off, these are not User Controls, rather, i'm creating a class heirarchy starting with an abstract prototype and...
  18. mirirom

    Debugging ASP.NET application on server

    hi, i'm wondering if anyone can give a quick walkthrough on how to correctly implement debugging on my IIS machine. after developing a toy app in VS.NET, i tried to debug and recieved the following error Error while trying to run project: Unable to start debugging on the web server. Run...
  19. mirirom

    MSDE2000 sp3 usage problem(s)

    heya, in preparation for developing apps with SQL server 2K, i installed the MSDE2K on a separate machine (Win2K intranet server running IIS 5) in hopes of toying around with some of the sample databases. i've done this install before on my own workstation via VS.NET; the service worked...
  20. mirirom

    Scrolling records - move to first after acLast

    hi, i have buttons that allow users to scroll indefinitely through a form's recordset. it's set up so that when BOF is reached, the last record is opened; conversly, when EOF is reached, the first record should be opened. the BOF check on movePrevious works fine. unfortunately i can't...

Part and Inventory Search

Back
Top