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...
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...
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...
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...
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 ::..
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...
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...
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...
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...
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...
hi folks,
i'm hoping my question doesn't generate too many "try this 3rd party product" 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...
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...
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...
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...
hi,
i'm wondering how to go about returning a calculated "top" 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...
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...
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.