ReneeC's Q&A profile
Game Technologies: DirectX, XNA, XACT, etc. Content Sharing microsoft
when i have submit a game to the dream build play contest 1. can i share the full source code of the game to the community so otheres can learn 2. can i before i submit the game show videos and pictures of the game on my website i really like to give somting to the community but on the othere hand i wood like to enter the contest please microsoft anser thies best regards Michael I'm not involved with organising the contest, so this is in no way an official Microsoft answer, but I certainly didn't see anything in the rules saying that you can't do those things. In the absence of a rule saying you can't do it, seems reasonable to assume that you can... ...Show All
Visual Studio 2008 (Pre-release) Exception when swiching on the UserNameToken security
Hi Community, I have created a UserNameToken Service I get the following excetion. I have also included the config file snippet end of the post. I have created the token using makecert.exe utility. The another question is I used the sample UserNameToken and created this service. In the sample it wsHttpBinding, How do I change it to BasicHttpBinding Server Error in '/UserNameGetAddressService' Application. Can someone point me to sample for UserNameToken using BasicHttpBinding I found two sample using wsHttpBinding. C:\Program Files\Microsoft SDKs\Windows\v6.0\Samples\WCFSamples\TechnologySamples\Extensibility\Security\UserNamePasswordValidator C:\Program Files\Microsoft SDKs\Windows\v6.0\Samples\WCFSamples\T ...Show All
Visual Studio Express Editions the speed of opening an excel file is slow
Hi, I use a thread to open an excel file and I have already set the priority of this thread to highest. But the speed is too slow to open. Is there any way to improve it using thread Thank you. Opening a excel sheet is always going to be slow - its got a lot of work to do. How much slower is it opening the application in code than it is opening the application manually How are you opening, Process.start or using the Excel Object Model . ...Show All
Windows Forms Error occur when Add column after create bindingSource.
Hi,I am using VB.Net 2005.I create a bindingsource to a MS Access database.Then I add a DataGridView to a form. Then I quit VS. I add a new column to one of the table in the database with MS Access 2003. When I open the VB.Net project, it having error. The error message : "The designer cannot process the code at line 107: Me.ClientBindingSource.DataSource. = Me.InsDataSet". What should I do Am I need to "re-bind" the datasource It yes, then I need to modify my previous database programming because it all base on the "old" dataBindingSource. Please help! What should I do so that I do not need to modify my previous database programming after I add a column to my database Thank you very much. p/s:Is it mean that, I shouldn't make any chang ...Show All
SQL Server Microsoft.SqlServer.Dts.Pipeline.DoesNotFitBufferException
Hi I have a SSIS project that has one parent package and three child packages. When I run the project on my development machine in debug mode it works fine. Also if i run the packages using dtexec on my development machine it still works fine. However the problem comes in when I try and run the project using dtexec on the staging server i get the following error: Microsoft.SqlServer.Dts.Pipeline.DoesNotFitBufferException: The value is too large to fit in the column data area of the buffer. does anyone have any idea how to fix this please thanks G I had the same error and exception. I deleted and recreated the script component and the destination component that the output from the script ...Show All
Visual Studio 2008 (Pre-release) IME(Input Method Editor) does not work when hosting the Windows Form controls into WPF
When I host a windows Form control into WPF, for exmaple a TextBox, I cannot input any Asian language words in the TextBox. The XAML code as: <Window x:Class="WindowsApplication1.Window1" xmlns=" http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x=" http://schemas.microsoft.com/winfx/2006/xaml " xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms" Title="WindowsApplication1" Height="300" Width="300" > <Grid> <WindowsFormsHost> <wf:TextBox x:Name="mtbDate1" />   ...Show All
SQL Server Replication Error 28559
We have a PDA application (Net CF 2.0) which uses sql mobile and synchronises to a SQL Server 2000 database (merge replication). We were using SQL CE 2.0 on the PDA earlier and moved to using SQL mobile recently. Since this move we are getting error 28559 (SQL Server Mobile encountered problems when opening the database - says in the documentation). The error does not happen regularly. When it occurs the device needs a soft reset to recover from the error / close the application and start again. Problem happens more frequently on XDA Exec (http://shop.o2.co.uk/shop/handset/O2/XDAExec:3G) running WM5 compared to devices running Windows Mobile 2003 2nd Edition for Pocket PC phone edition. I had a chat with one of the Micro ...Show All
Visual Basic how do i get computername in visual basic.net
i like to use the computername in my visualbasic aplication. but have a problem to get it. i did have use it before in a old program, but lost the code i used so far as i can remember the system management is there a easy way do do that " in addition, you can also use: System.Net.Dns.GetHostName() since you are referring to System. management, I believe this is WMI you maybe talking about which can also be achievable but will be very expensive and "pointless" if you can achieve the same thing but quicker and easier within the .NET Framework itself. Doesn't this assume you have the connected What happens when someone is wireless and has no access to the net Does th ...Show All
.NET Development Try refreshing the table adapter
It is my understanding that when using a TableAdapter and selecting the proper options, Insert, Delete and Update statements are generated. The Update statement should work just using the following: myTableAdapter.Update(changes); Where changes is the DataSet containing the modified data. This logic works great for one of the tables in the DB but not for another. Learning this new stuff is Confusing at best - Frustrating at worst. Help appreciated, Michael i' ve this problem also, but i even can't mark the chek box "refresh the data table" because it is not enabled. i use the vs 2005 express verision. may it's the reason is somebodt know if i can update the database table with the ...Show All
Visual Studio Tools for Office Word Addin: Event for new Document object
I want to get event when new Document object is added into Application.Documents collection. I was looking for this event for a while and was unable to find it. I found Application.NewDocument event, but it's fired only if you click on New... button in Word (it isn't fired if you just run Word.exe). Am I missing something I know that in Oulook Addin there is an event ExplorersClass.New for new Explorer, but in Word there is no DocumentsClass class (only Documents interface and it doesn't have any events). Ok. But the problem with those events is that if I just open MS Word (by clicking on icon or launching word.exe) neither of those events are fired (even though new Document is created). The same p ...Show All
Visual C# How to set breakpoints in other projects when current is using binary references
This is in VS 2003 I haven't tried to set debug points in other projects that are tied to this project. What I mean is, I am building my windows form, running it and would like to set debug points in a couple of other projects that this one is using a binary reference to. We are not going to be using project references, because it's our standard not to. So I am not just going to add the other projets inside this solution. I tried to open my other 2 solution files, tried to set breakpoints, then ran my current project but it's not stopping at the breakpoints I set outside this project, in my other 2 solutions. I know the code is htting those methods but it's not stopping at my breakpoints outside this one I'm runnin ...Show All
SQL Server Change the total (sum generated function) in a matrix
Hi, Can somebody help me I really need to create a matrix with totals but I don't need a to use a sum I need another function (AVG, Count). Can it be done How can I change the Total function to put another aggregate function Thanks cyprix, I'm giving you a link to Robert B. MSFT solution for your problem. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=364020&SiteID=1 Ham ...Show All
Visual Studio Assertion Dialog appearing whilst running tests via MSBuild
Hi, I'm using MSBuild to kick off some tests using MSTest. The problem I have is that the tests are running against debug builds and in some cases assertion dialogs are appearing, which is obviously not ideal for CI. When I was using NUnit I could suppress the dialog using a .config file for the nunit project in the following manner: <configuration> <system.diagnostics> <assert assertuienabled="false" /> </system.diagnostics> </configuration> How can I do this using MSBuild/MSTest thanks in advance, John. Hi John, This question would likely get a better answer in the unit testing forum -- http://forums.microsoft.com/MSDN/ShowForum.aspx Foru ...Show All
SQL Server Configuring Reporting Services behind a firewall
Hi, I put my SQL server behind the firewall, and I have put SQL_PORT and “Reporting Services Configuration” in the exception list. However, on a remote machine, if I use SQL Reporting Services Configuration Manager to change the Database Connection setting, I will get an error in the “Create a Grants Rights Script” stage. Looking at the exception, it points to an RPC problem. System.Runtime.InteropServices.COMException (0x800706BA): The RPC server is unavailable. (Exception from HRESULT: 0x800706BA) at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo) at System.Management.ManagementScope.InitializeGuts(Object o) at System.M ...Show All
Visual C++ MFC Programming in VC++ 8(2005)
Hi to all, I don't know if I write in the right forum but I believe that it doesn't matter anyway! So, I'm learning MFC Programming and I'm using VC++ 8 to write the code as it has the wizards and it's a lot easier than any other compiler!! Now, I can't make my application write something on the screen!! I know how to do it in VC++ 6, but the wizards in VC++ 8 and all the other stuff is a little bit different and so I'm a little confused!! Any help would be appreciated!! Thanks in advance!! Forgive me!! I have the latest Visual Studio version!!! It supports MFC; if it didn't would it have an option for creating a MFC project !!! So, could anyone answer my question (see above my first post)!! ...Show All
