pavel989's Q&A profile
Commerce Server MSCS_CatalogScratch why does it get do full?
Recently, when performing a catalog search for subcategories, I got the following message: Could not allocate new page for database 'MSCS_CatalogScratch'. There are no more pages available in filegroup PRIMARY. Space can be created by dropping objects, adding additional files, or allowing file growth. Upon looking in the database, I saw literally hundreds of tables with results for this search, or results for this SPID. Since uor App has a treeview representing catalogs, and population on demand, we use the catalog search to retrieve each categorie's child categories and products, sometimes variants, etc.. How can I keep this database clean so that 2 months into production I don't get this error why doesn't the database keep it ...Show All
Visual Basic How To Set Default Font For Applications
I can set the fonts for the IDE, but how do you set the fonts for new applications. Mine always go to the default. Thanks It's works... but that's so silly. Why not put that feature in Options, instead. Now, you still have to set the font for each app or form you create. As I'm now learning with VS is that... sometimes the main menu features, while enabled, do not work or do the task they are assigned. You have to right click on the icon itself and select that menu. Thanks. ...Show All
Windows Live Developer Forums I cannot install Live Favorites in Vista Business.
It goes thru the isntallation and quits as if it installed. Also when I tried to add the movies add in it prompts me to install the entire toolbar again. This happens with several other add ons as well. Now in my IE7 on XP I am not having this issue. ...Show All
Visual Studio Express Editions When press Enter, how run function and focus next control?
My aspx page as below: write code in C# ( in asp classic i do it easy). < tr > < td style ="width: 47px"> < asp : Label ID ="Label1" runat ="server" Text ="Tel 1"></ asp : Label ></ td > < td style ="width: 100px"> < asp : TextBox ID ="TextBox1" runat ="server"></ asp : TextBox ></ td > </ tr > < tr > < td style ="width: 47px"> < asp : Label ID ="Label3" runat ="server" Text ="Old Cus"></ asp : Label ></ td > < td style ="width: 100px">XXXXXXXXXXXXXXX ...Show All
SQL Server locating sqlexpress database
I have created my sqlexpress database in Visual Studio 2005. When i go to SQL Server Management Studio Express I cannot open my database. It is not listed automatically and I get an error 'There is no editor for 'database name' Make sure the application for file type (.mdf) if installed.' Any help or suggestions will be appreciated. Thanks Hey Mike, Even after granting Network Service account full permissions to all directories, I still could not locate or attatch the dbase, it wouldnt see anything in the folder where it was at. Regards Tom ...Show All
Windows Live Developer Forums Has anyone implemented a rectangle zoom?
This question probably isn't clear -- some maps allow users to drag a rectangle on the surface of the map and then onmouseup the map zooms to the area within the rectangle. Has anyone implemented this If so are you wiling to share a code sample Thanks. ..and for those of you without a middle mouse button (or hate using it as much as I do): ALT-left click does the same thing. :) ...Show All
Visual Studio Express Editions Syntax Error, Missing operand after '=' operator
hi, i have this code to fill a data adapter in c#.net: this.freedomScooterServiceBindingSource.Filter = "CustomerID = " + comboBoxCustomer.SelectedValue; It worked fine during running of the application, but when i exit the application, it threw error " Syntax Error, Missing operand after '=' operator " on this line of code i checked it against some sample code, ther is no syntax error, but why is this happening plz help ssfftt: I'd start be seeing whether you are missing the single quotes in your filter string. The example for BindingSource shows this: BindingSource1.Filter = "ContactTitle='Owner'"; So perhaps your line of code should look like this: this.freedomScooterServiceBin ...Show All
Gadgets Does gadget support Netscape and Opera now?
I heard Live.com have supported Opera and Firefox. But there some problems happen when I add gadget by Opera and Netscape without signing in Live.com. Why the gadget could not be added correctly without signing in Live.com Thanks The gadget is not be deployed on Localhost server. I have a server to put js and css files. The gadget works fine in IE6 or IE7.Actually, it will also work correctly when I sign in Live.com even if I use Opera or Netscape. So I am a little confused about this situation. Is there different in files loading of Live.com without signing in it ...Show All
Gadgets Sidebar Always on Top after loading
Just an observation, but if you exit Sidebar and then reload it. It goes into "Always On Top" mode until you've clicked on its transparent background! I haven't seen that - is the behavior that other windows go underneath the sidebar, but if you click on the sidebar then the other window pops up on top of it ...Show All
Visual Studio Team System Team Build error MSB4019
I have a database project that I am trying to build and am getting an MSB4019 error on the the AfterDropBuild" task. The actual error is as follows Target AfterDropBuild: c:\build\Larrys test\DB\Sources\Database Projects\Database1\Database1\Database1.dbproj(74,11): error MSB4019: The imported project "C:\Program Files\MSBuild\Microsoft\VisualStudio\v8.0\TeamData\Microsoft.VisualStudio.TeamSystem.Data.Tasks.targets" was not found. Confirm that the path in the <Import> declaration is correct, and that the file exists on disk. Done building target "AfterDropBuild" in project "TFSBuild.proj" -- FAILED. Looking at the build machine I do not see the missing object although there is a folder called TeamBuild that contains Mi ...Show All
Visual Studio How do I change the color of a connector programmatically?
From within a menu handler I wish to change the color of all the connectors from a shape ClassStyleSet seems to a protected class when I access it from a ShapeElement. You can write an internal method to change the pen color based on your own criteria. e.g. You can create a parital class for AggregrationColor class (a language based on ClassDiagram) and provide an internal method. public partial class AggregationConnector { internal void SetConnectorColor ( System.Drawing.KnownColor color) { StyleSet classStyleSet = base.StyleSet; DslDiagrams::PenSettings linePen = new DslDiagrams::PenSettings(); linePen.Color = global::System.Drawing.Color.FromKnownColor(color); classStyleSet.OverridePen(DslDia ...Show All
Visual Studio Express Editions Disable automatic dataset generation from XSD?
Is there any way to stop Visual C++ from automatically generating a dataset from my XSD's You can exclude the .xsd files from the build. To do this, right-click on the file in solution explorer and select "Properties". In the "Properties" page, select the "General" pane and set "Excluded from Build" to "Yes". Thanks, ...Show All
Software Development for Windows Vista Function Discovery
Where can I find a working sample of using Vista Function Discovery The sample in the latest SDK does not build. Thanks, Kevin Weird. I got a notification of a post on this thread from Kristina. But when I went to look at it, it was not there. Then I posted a message like this (about it not being there) and it appeared. I immediately went to delete my post, and after I did, Kristina's message disappeared as well. I hope it comes back after I post this... ...Show All
Visual Studio ReportViewer
I am having problem with setting the parameters of the report viewer. I do not know how to create an array of ReportParameter to send to the method reportViewer->LocalReport->SetParameters. can anyone help me with this. I have seen examples for VB and C# but none for C++. Thank you very much, the problem was that I was using cli::array instead of List. Thanx again, you saved my day. ...Show All
SQL Server sa real login name
Greetings, I have a SQL Server 2000 database using Integrated Security. Users are added directly to the database from their domain name. In the Login section of the Security node in Enterprise Manager they show up as DomainName\UserName. I have four users that have the System Administrator database role. When I use the user function to get their user name they show up as dbo. Is there a way to get their actual domain user name Thanks. The builtins user & user_name() will return the DB primary identity name. You are seeing the results you described because member of the sysadmin role are always mapped to DBO on any database. You can use suser_sname() to get the login token primary identity name. For example: S ...Show All
