Simon Nunn's Q&A profile
Visual Studio Team System Team System Multiple Checkout Problem
I was wondering if there is a way to totally disable multiple checkout for Team System. I have set the Team System Source Control Settings to disable multiple checkout and I have changed the Team Foundation Server Settings Source Control File Types to disabled for file merging. However there are still instances when multiple users can check out .cs files or the solution when another user has the same file checked out. Sometimes the changes are lost when one user tries to check in the file because the merge fails. Removing the users from the admin groups did not work. I'll try to get the users to provide screenshots and more information to help Microsoft diagnose the problem. ...Show All
Visual Studio Express Editions Update dataset works, but program doesn't recognize the update
my dataset updates properly all the way back to the original database. Everything checks OK. When another procedure checks for the changed data it finds it unchanged. I changed the database property "copy to output directory" to copy if newer. What gives See if this thread helps you solve your problem...there is a tool at the bottom of the post that will help you monitor the db file... http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=427451&SiteID=1 ...Show All
Smart Device Development System.data.sqlclient assembly reference not found
Hi there I'm fairly new to application developing for pocket pc though I have some experience in vb.net with visual studio 2005. I've started with a very simple project to start with. I have a form with a data grid attached to a database in a remote server. The data set is filled when the form loads and that's it. My problem is that when I deploy the project to the device, an exception occurs saying "name of file or assembly 'system.data.sqlclient, version=3.0.3600.0, culture=neutral, publickeytoken=3BE235DF1C8D2AD3' not found". It doesn't appear to getting to run at all. I've been googling a lot and searching these forums and found some related issues but never the same, and none of the solutions apparently could work f ...Show All
Windows Forms RTC peer to peer communication source sample
Hi I want to create a voice chat between two PCs using RTC protocal. Something similar to yahoo or skype chat. I need some source samples for this. Could anyone help in this regard. Regards, Pandi. Hi, Please go thru the following link. Hope this helps. http://msdn.microsoft.com/vstudio/express/visualcsharp/starterkit/#skype thank you, bhanu. ...Show All
.NET Development accessing AppDomains form parent process only
Hello! I'm building plug-in framework consisting of main application domain and some AppDomains, which host plug-ins. I need the plugins' AppDomains to be accessible only from my application process, not network, nor even other processes on the same machine. How to achieve this Could you provide me some guidelines Thanks in advance, ukasz This looks like a reasonable introduction for the topic: http://www.ddj.com/184405853 ...Show All
Visual Studio Regarding ERRORLEVELS
Hi Frenz, I wanted to know if i can get ERRORLEVEL using what i am trying to do. set test=0 :A ss History -I-Y -R -V1~2 -OD:/History.txt IF %ERRORLEVEL%==%test% (GOTO END) ELSE GOTO A :END What happens is that i get a version not found even though the version is present and ERRORLEVEL value as 0. There is some problem with the VSS but to overcome that i want to continuously hit the history command using the ERRORLEVEL that i am getting. Kindly shed some light on the problem. thanks and regards Rajiv. Has the file been archived & restored There is a bug in ss.exe where it can return 'version not found' if there are archive & restore records in the history. ...Show All
.NET Development CaseInsensitiveComparer for OrderedDictionary
How can I set CaseInsensitiveComparer for OrderedDictionary Thanks, Greg This declaration causes the following exception: Unable to cast object of type 'System.Collections.CaseInsensitiveComparer' to type 'System.Collections.IEqualityComparer'. Thanks, Greg ...Show All
Visual FoxPro report tool bar
After a report is generated and appears in a preview you get a small toolbar that floats undecked in full view of the info that you try to read. It was an annoyance until I had only 1 page in the report and once I moved the bar down the report page and believe it or not it DISAPPEARED behind the frame's lower edge. It was not a big alarm for me then since I had only one page but now I have many and the only way to flip pages as I can see is to get the toolbar back. I cannot possibly retreive it no matter what I try. When I moved the toolbar down I hoped that it would deck somewhere and become available as part of the frame but it is not what actually happened. The toolbar disappeared at design stage but the same form's report appe ...Show All
SharePoint Products and Technologies Options for Updating Excel displayed thru Excel Web Access ?
I'm developing a dashboard which contains some graphs surfaced through Excel Web Access. This works great. However, is there a way of updating the Excel data without going into Excel (e.g. via a synchronized SharePoint list or by using infoPath) so I have more control over the UI I'm really looked for a code free solution so I don't have to worry about maintenance and deployment issues in the future, and so power users can also use the same method for their own sites. I just found the appropriate answer in your blog: http://blogs.msdn.com/luisbeonservices/archive/2006/09/28/consuming-sharepoint-lists-in-excel-services.aspx . Are there plans to add this functionaity to Excel Services The environment th ...Show All
SQL Server Stored Procedure returnValue always 0
I have the following Stored Procedure: <code snippet> UPDATE TRW_USERS SET user_password = @password WHERE (user_password = @old_password) AND ( user_id = @user_id); RETURN @@ROWCOUNT Which when run, returns the correct values 0 if no rows updated 1 if row updated In my C# I am doing the following: TRW_USERSTableAdapter userAdapter = new UsersTableAdapters. TRW_USERSTableAdapter (); returnValue = Convert .ToInt32(userAdapter.sp_NewUpdatePassword(sNewHashedPassword, sOldHashedPassword, user_id)); It always returns 0 to returnValue, why Many thanks Brades hi Brades, If you were to write this as a stored procedure, you could create a variable for o ...Show All
Visual C# In win32 program we use window DDK to develp a driver .sys ,I want to what is the counterpart in the class of .NET Framew
In win32 program we use window DDK to develp a driver .sys ,I want to what is the counterpart in the class of .NET Framework Has the net framework all the functionality of Platform SDK and DDK i appreciate your help. You cannot use the .NET framework to develop device drivers, the CLR can't run in kernel mode. The DDK only supports programming in "C" or C++. ...Show All
Visual Studio Tools for Office Iam merging lot of word documents into one single document and atlast doing a pdf
Hi, My problem while doing this is, first i will tell what i use, i use range.insertfile command to insert all the file into my template document while doing so the documents that i am inserting are lacking their orginal alignment ,some justified ,are changed to left aligned like that what should i do to keep the target file contents alignments same as the source files Thanks. One more doubt for me. I did one test, i took the template in which i am inserting all my documents outside my application and using the insert menu of that and inserted the files into it manually,the files are properly aligned in the template(original alignment as in the file) ,but when i am doing the same with range.insertfile in c ...Show All
Visual Studio Express Editions Datagridview Comboboxes
I have been searching for info about dtatgridview dropdowncomboboxes. I have found all the needed info except how to display info that is available in the dropdown. For example in a list with 5 items say Item1, Item2, Item3, Item4, and Item5 there would be a selection into the database of various members of this list. If it was a textbox column displaying them would be easy, how do I do the same with a combo box This is probably an easy question but I am stumped. Mike hi, what you are looking for is called lookup using a property called " DataPropertyName" here its my previous post about this http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=347502&SiteID=1 hope ...Show All
SQL Server Whats wrong with my SP
Whats wrong with my stored procedure i thought i am declaring the varible when i write this check it out can some one help me out thanks!!!! CREATE PROCEDURE dbo.GetCompanyDEMO [ @CompanyName nvarchar(40) ] As Select ContactName, ContactTitle, Address, City, Region, Phone FROM Customers C Where C.CompanyName = @CompanyName Hi Joeydj, This is correct. But, he should use 'Companies' table :) Good Coding! Javier Luna http://guydotnetxmlwebservices.blogspot.com/ ...Show All
Software Development for Windows Vista importing activities into sharepoint designer
Hi, I have a custom activity created in wwf..now, I need to import it into sharepoitn designer so that I can use it in a workflow. Any ideas how I can do this Thx You might try the Sharepoint 2007 beta newsgroup found here . ...Show All
