Christophe Bauwens's Q&A profile
SQL Server logins and users
Hello, How can I login in one databse from Sql Management Studio Do I need one login for each user How does it work thanks, Hi, no you don’t need to. Trusted Connections / Windows Authentication is based on Windows security. Therefore you can also create a principal using a Windows group of your Windows domain or local server. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All
Internet Explorer Development Document Complete event for multiple frames
Forgive a newbie-ish question. :) I find that with complicated multi-frame pages (e.g. www.cnn.com) I get a document complete event for every single frame. Most of these are ad frames of course. Is there a way to obtain the "real" URL of the site, i.e. www.cnn.com in this case, without having to deal with all the other frames Alternatively is there a status flag that identifies the final frame, or is it safe to assume that the last frame that I receive notification of is the "real" site frame I have also found that with both IE6 and IE7 I occasionally never receive a document complete event for the "real" frame, in other words I get a dozen or more ad-based frames and nothing else, and yet the site correctly ...Show All
Windows Live Developer Forums Windows Live Messenger shutdown itself
I had downloaded the Windows Live Messenger from microsoft site and i had install it. My problem is, every time i try to login Windows Live Messenger, he shutdown itself. I had unnistal it, and instal again but the problem keep. How i can fix it Sorry my english, i am portuguese... The purpose of this forum is to discuss MSN and Windows Live application development using the Messenger Activity API, and Windows Live Bots. If you have technical support questions about using MSN Messenger or Windows Live Messenger, please check the following resources... Messenger Technical Support is available on the Messenger newsgroup: http://support.microsoft.com/newsgroups/ dg=microsoft.public.msn.messenger&cat=en-us-msn&lang=en&am ...Show All
Game Technologies: DirectX, XNA, XACT, etc. How to use this code into my another code?
How to put this code using System ; using System . Diagnostics ; using System . Runtime . InteropServices ; namespace DirectShowLib . Test { public class IBasicAudioTest { IFilterGraph2 graphBuilder = null ; IBaseFilter filter = null ; IBasicAudio audio = null ; public IBasicAudioTest () { } public void DoTests () { try { // We need a stereo sound renderer... BuildGraph ( "foo.avi" , out this . graphBuilder , out this . filter ); this . audio = ( IBasicAudio ) this . filter ; TestBalance (); TestVolume (); } finally { Marshal . ReleaseComObject ( this . filter ); Marshal . ReleaseComObject ( this . graphBuild ...Show All
Visual Studio 2008 (Pre-release) Use XAML control within another XAML?
This should be easy. I have a XAML file and want to use another object I created (also in XAML) within that file. For example < UserControl x:Class = " UserControlTest.MDIUserControl " xmlns = " http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x = " http://schemas.microsoft.com/winfx/2006/xaml " xmlns:my = " clr-namespace:System;assembly=mscorlib " Width = " 836 " Height = " 495 " Opacity = " 1 " MinHeight = " 30 " MinWidth = " 30 " Background = " #00FFFFFF " " > <Grid> <MyControl> ..... </MyControl> </Grid> </Window> ...Show All
SQL Server wmiprvse.exe
Coincident with installing SQL Server 2005 Express, i.e., correlation only (for now), I have been getting a dialog indicating an application error with wmiprvse.exe . I cannot find any cause and effect. This is on a XP-Home OS which also has VC++ 2005 Express on it. Anyone have a similar experience Thanks. Thomas This file is part of windows but if you have office 2003 installed on XP Home it can cause problems. It use all the memory and will not shut down or release the memory. You can shut it down manually by going to Task Manager, choosing processes and ending the process. To stop it leaking the memory permanently you need to goto http://update.microsoft.com/wi ...Show All
SQL Server Request for feedback - Aliases have been deprecated for some time and will be removed soon
As documented in SQL Server BOL, aliases have been deprecated for some time and we are planning to remove them from the product in the next release. We will greatly appreciate any feedback or comments regarding this change. We would like to know how our customers will be affected by this change and analyze if there is anything we can do to help you to make the transition easier. Thanks a lot, -Raul Garcia SDE/T SQL Server Engine Removing entirely from the SQL server may not be an option, will there be any documentation or MS article released to enable the new users to understand the 'new' concept in addition to BOL . ...Show All
Visual Studio 2008 (Pre-release) ComboBox Binding
I bound ComboBox to products' collecttion and ComboBoxItem to product name. But when I select an item I get in Selection box the name of object, not a product name. How can I manage this problem protected Products list; public Window1() {InitializeComponent(); this.list = Fill(); MyComboBox.DataContext = list;} < ComboBox Margin = " 8 " Width = " 120 " Name = "MyComboBox " ItemsSource = " {Binding} "/ > <!-- SimpleStyles: ComboBox --> < Style x:Key = " {x:Type ComboBox} " TargetType = " {x:Type ComboBox} " > < Setter Property = " OverridesDefaultStyle " Value = " true " /> < Setter Property = " ScrollViewer.CanContentScroll " Value ...Show All
Silverlight (formerly WPF/E) createToXAML ?
Is there any (or will there be any) way of extracting XAML/XML from the plugin It could be useful to be able to process the contents through the XML DOM in some scenarios. Tim No, we have no current plans to serialize the existing tree of objects to XAML, so don't expect a createToXaml for quite a while. -mark Program Manager Microsoft This post is provided "as-is" ...Show All
.NET Development vb update resource files dll
hi there I want to update my resource files dlls at runtime anybody can help thanks in advance And if you want to update the resources, are you sure that you don't want to use settings instead of resources Best regards, Johan Stenberg ...Show All
Visual Studio Internet VSS Access - "The format of the file 'VssWebService' is invalid."
Trying to setup Internet Access to VSS. Have run the default install for internet access in VSS and was unable to connect from VS. Getting error "Cannot connect to server". Ran http://127.0.0.1/SourceSafe/VssService.asmx and got the error: Server Error in '/SourceSafe' Application. Duplicate of http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=744933&SiteID=1 post ...Show All
SQL Server Side-by-side SSIS and DTS
Please excuse my English. We have a server with SQL Server 2000 installed as default instance. Yesterday I installed SQL 2005 Standard edition as named instance. I installed 'Database Engine' component only. It has been installed to different folder. All went well. However, when I tried to create new maintenance plan, I discovered that it can't be done because I did not install the 'Integration Services' component. So I started SQL 2005 setup again and chosen this component to be added. But, when I go to advanced page, I notice that this will be installed to the folder where default instance (SQL 2000) has been installed. I want to install it to new folder where I placed SQL 2005 installation, but setup does not let me change the pat ...Show All
Visual Basic Define Class?
I dont know if thats the right thing to say or not being I'm still green, but If I had a calculation that I needed to do often, is there a way t o make that (Public(Dont know if thats right or not)) I am wanting not to have to type the calculation over and over just wanting to put it in one place and refer to it if possible. Then how would you call it Davids Learning Or you can use a module and method in VB Module Calculator Public Function Add(ByVal val1 As Integer, ByVal val2 As Integer) As Integer Return val1 + val2 End Function End Module The important thing is that you create a method (function) which allows you to reuse the functionality by simp ...Show All
.NET Development proxy error when consuming internal web service
I've pulled out much hair over this, so I hope a guru out there can quickly see the err of my ways. I have created (with the help of some code from articles) a web service that accesses an external web site (outside of our company firewall). I have coded the web proxy and credentials into the web service. In testing via a browser, the web service performs correctly, in that it authenticates thru the firewall and returns data to the browser in XML format. Now I need to consume that web service in an ASP.NET application. However, it fails with the error : The request failed with HTTP status 502: Bad Gateway. The client code is pretty darn simple, so I'm embarrassed that it's not easily working. The sanitized code is below (client and web ...Show All
Software Development for Windows Vista plzz help me regarding 6.0.6000.0.0.WindowsSDK_Vista_rtm.DVD.Rel.img
hello all i downloaded the 6.0.6000.0.0.WindowsSDK_Vista_rtm.DVD.Rel.img but i am not able to install this i used iso buster but still there is some problem. it says " This disc contains a "UDF" file system and requires an operating system that supports the ISO-13346 "UDF" file system specification." can any one tell me how to install the sdk I assume that you got the message after you tried to "read" the DVD that you created from the .img file. Anyway, I've had some of this problem. First, there is a slight difference (I don't know what) between .img and .iso files, but the .img file you have is the "newer" standard; not every ...Show All
