JeremyBeauchamp's Q&A profile
Visual C# AspNetSqlProvider
I have an error when i am try to make web partzone without using sqlexpress I want to use sqlserver2005 entreprise when i am try to create AspNetSqlProvider test failed and i have this error (An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) ) Dear PJ. van de Sande I use local connection this is the err msg if i used a connection to sqlserver 2005 not ...Show All
Visual Studio Tools for Office building solution containing VSTO on CruiseControl.NET?
I'm trying to build a .NET 2.0 solution containing VSTO on CruiseControl.NET 1.0. I have the .NET 2.0 SDK installed and regular .NET projects build fine using msbuild. .NET 1.1 solutions with VSTO for VS2003 build fine as well. The 2.0 VSTO project fails because a number of files are missing. Fair enough, but there doesn't seem to be a VSTO SDK I could install. The VSTO runtime does not contain all the files required to build and I cannot install VSTO itself because there's no Office on my build server (it should be as clean as possible). I started by copying all the files it complained about, but I end up with an error message : C:\Pro ...Show All
Visual Studio 2008 (Pre-release) WPFBeta2 change - MarkupExtension.ProvideValue - IServiceProvider
Hello! I used the ColorPicker in a sample and when I recompile this in the beta2 CTP I get this error message No overload for method 'ProvideValue' takes '2' arguments at this Code line this .SetValue(ColorProperty, (( MarkupExtension )binding).ProvideValue( this , ColorProperty)); because at the Feb CTP the ProvideValue method works like this ProvideValue(object targetObject, object targetProperty) But in the new beta2 version the parameters changed to IServiceProvider. Now I don’t know how I could solve this change. Thanks for helping… ...Show All
Smart Device Development Intel UPnP SDK for winCE 5.0
Hi, I've been trying to get the code generated by Intel's UPnP SDK (pocket pc 2002) to compile in Visual Studio 2005 for winCE 5.0 When I try to compile it I get the error: UPnPSample : error PRJ0004 : Could not generate command line for the 'VCCLCompilerTool' tool. Any ideas Thanks! Brian Try this (although it is little time consuming): 1. create another default application from VS 2005 for WinCE 5.0 2. open project properties and compare the settings for compiler/linker, etc., with the settings of your application that you are trying to migrate. 3. If everything is same the you need to look ...Show All
Visual Basic error 35754 when using inet1 - Please help
We have a VB6 program that makes a ftp connexion to a loom controler. We use the inet1 commande to make this. The program worked fine before we upgrade from Windows Nt 4.0 to Windows 2000 server, but now, we are not able to connect, we always get error 35754 Can somebody help me on this ...Show All
Visual Studio Supressing Solution Explorer Tree Expansion On Double Click
We've created our own project type and have been modifying the behaviour of the solution explorer nodes by extending the HierarchyNode. What we'd like to do is to miminc the double click behaviour you see when you double click the properties node in a regular C# project. In that case when you double click the properties node the node does not expand, the properties editor is shown, and the focus in the solution explorer is set to the parent project node. Resetting the focus and calling up the appropriate editor is easy, but we cant seem to supress the tree from expanding. We did come up with a kind of hack solution where by we trap the doub ...Show All
SQL Server When (how) does Compatibility level for master change to 90?
Just upgraded (server in place) from Standard Edition SS2K to SS2K5 and table sysdatabases shows cmptlevel for master is 80. TempDB, MSdb and Model are at 90. How does this get changed and why is it 80 I can change user databases from 80 to 90. Thanks...... When server is upgraded to SS2K5, the master database retains its existing compatibility level, in this case it is 80 since the upgrade occurred from from SS2K. The compatibility level of master database cannot be modified. (For details see BOL topic on sp_dbcmptlevel ). ...Show All
Visual Basic Showing the form on the position of the mouse
Dear NG I try to prog a litte "PopUp" Menue for my Application. I will do this in a ClassLibrary. The first steps I have made have been sucessfull. But on the last step I have a problem. How can I set the form on the same coordinates like my mouse I have the following code in my Library: Private X_Achse As Integer = 0 Private Y_Achse As Integer = 0 Private Property XAchse() As Integer Get XAchse = X_Achse End Get Set ( ByVal value As Integer ) X_Achse = value   ...Show All
Windows Forms How to add button to TabControl?
Hi all! How can I add a button to TabControl to make custom control, with ability to close tabs using button (aka Firefox-like or IE 7-like tabs) 'm waiting for your suggestions. Well, please, I still waiting for you answer. I really need this for my university project... ...Show All
SQL Server Display Row Data As Cols
I have data in rows that I need to aggregate and display in a columnar fashion and I haven't been able to figure out how to do it. A simplified version of the data as it is stored in the table: Station Month Day Reading 1 1 1 100 1 1 2 200 1 1 3 300 1 2 1 400 1 2 2 500 And I would like to create a query that returns: Station Month Day 1 Day 2 Day 3 1 1 100 200 300 1 2 400 500 Any help you can provide or tips to steer me in the right di ...Show All
Visual Studio Express Editions Property Grid
Hey there people, I have recently discovered the propertygrid control. It is a nice flexible way of allowing for editing of my classes. I have come accross one snag though, and this is my question. As far as i can tell, when changing an image property (setting a new image) there is no way to get the filename for the new image. Am i overlooking something Thanks scott. PS: If i left out anything or this is too confusing, please tell me :) Thanks ...Show All
SQL Server complex SQL (for me)
Hello, Lets look at this table : CREATE TABLE [dbo].[TableHisto]( [Id] [int] NOT NULL, [Week] [nvarchar](50) COLLATE French_CI_AS NULL, [Project] [int] NOT NULL ) ON [PRIMARY] GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Identifiant d''enregistrement' ,@level0type=N'SCHEMA', @level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TableHisto', @level2type=N'COLUMN', @level2name=N'Id' GO EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'Date de l''enregistrement' ,@level0type=N'SCHEMA', @level0name=N'dbo', @level1type=N'TABLE', @level1name=N'TableHisto', @level2type=N'COLUMN', @level2name=N'W ...Show All
SQL Server Wireless synchronisation
How can i synchronise (wireless) data from desktop to ppc Since you are posting in the SQL Mobile Forum, I'll assume you intend to store the data on device in SQL Server 2005 Mobile Edition. In this case, you can synchronize data from a SQL Server to your device using merge replication, remote data access, or web services. The SQL Mobile Books OnLine in combination with MSDN are the best place to start getting familiar with these concepts. http://msdn.microsoft.com/mobility/sqlmobile/default.aspx There are also some excellent books available on developing Compact Framework application ...Show All
Windows Forms Unhandled Exception when running on another machine
I am trying to install a program on another machine besides the developer. I keep getting the unhandled exception error whenever I try to start it. Runs fine on the development box. The other pc has .NET framework 1.1, MDAC 2.8. I've set the Security to Full Trust of the Intranet (it accesses a db) and localhost, as well as  ...Show All
Windows Forms app.config file and deployment
Hello, I have a windowsform app. I have included the database string connection in the app.config file. It works fine on the developer box, but when I try to deploy, the application cannot find the connection string. Is there something I have to do with this file when deploying. Regards Peter Peter, your suggestion to use <app_name>.exe.config fixed the issue I was having. Thanks. ...Show All
