LouArnold's Q&A profile
Visual Studio Team System Problems with Source Control
Hi guys, we try to use SC and we are no real experienced team. Hopefully somebody can help us with following problem. Everybody uses SC in our dev-team. But from time to time we get the following message from SC when we download latest version: The solution <My Solution> has been modified outside the environment Press Reload to load the updated Solution from disk Press Ignore to ignore the external changes The changes will be used the next time you open the solution. Another Problem: SC seems to have problems to recognize that there are new versions avail. We right click on a folder in SC and select get latest version. We get the "All files are up to date" message. But when I check the files in the SC-direct ...Show All
Windows Forms bindingNavigator with two table.
Hi, My application has a dataset which contain two tables, tableA and tableB. I create one form, then I add the fields from tableA and tableB into it. Then I create one bindingNavigator. When I try to navigate the field with the navigator, only fields from tableA are able to be navigate, those fields from tableB no respond. I think this is because the bindingNavigator is bind to tableA. But what I need is when I click ‘next’ at the bindingNavigator, I able to goto next record of all the fields from tableA and tableB. Can someone please do me a favor, teach me what should I do Thank you very much. p/s: tableB and one foreign key of tableA. You have to create a relation between TableA and TableB using&nb ...Show All
Game Technologies: DirectX, XNA, XACT, etc. D3DERR_NOTAVAILABLE while build of first example in help how to do
I used to code in pascal, cobol, assembly, basic, etc, but not C. From: Your First Game: Microsoft XNA Game Studio Express in 2D following along and doing the first build, I get the error above. I did not think I was calling the 3d engine only the 2d. I cannot find any help on the error, where to look, etc, except what is in the error window when you cursor over it. I cannot figure out how to copy the error in that popup window to look at it further. I know some dislike nubies, but please help if you know the answer. Its disheartening to type in only 6 lines of code and not be able to debug it! To say the least. Thanks OH OH OH, I figured out how to copy the error: Error 1 Building content threw InvalidOperationExcept ...Show All
Visual C# ASP to MSWord (But Not In Design Mode)
Right now i have a button that i click and it pops the page into MSWord, but on half of the computers i test it on, MSword pops up in "Design Mode" , is there a way i can turn that off Here is my code, any help would be great, protected void Button2_Click(object sender, EventArgs e) { Response.Buffer.Equals(true); Response.ContentType = "application/msword"; Response.AddHeader("Content-Disposition", "attachment;filename=FILENAME.doc"); } -Thanks Michael http://www.codeproject.com/vb/net/Wordyna.asp Something like that, but be able to set the settings and insert data after it. ...Show All
Visual Studio Team System CTP7 Download Location
We are happy to announce that CTP7 is already here, no need to wait till next Monday, here it is! http://download.microsoft.com/download/3/1/9/319c5020-0fed-4dc1-b043-69567fda3941/TeamDataCTP7.exe CTP6 was only released 2 weeks ago, so what changed We added how many errors/warnings you want to see and make it configurable. We added the ability to suppress warnings same like in a C# project. This way you can selectively filter out warnings caused by 3 or 4-part name references. We made the warnings and error numbers explicit so no more overloaded meaning errors and warnings, I will post a list of these in a while combined with examples on when the will occur. We allow you to override the project SET properties for ...Show All
SQL Server SQL Server Replication not very robust
I am nearing the end of development and some last minute database changes were required for a SQL Server 2000 (SP 4) database running merge replication. According to SQL Server Books Online, making changes to the schema should be relatively easy. But everytime I've done so, something goes wrong and I end up having to start from scratch. For example, I added a column to a table through the replication publication properties dialog box in SQL Server Enterprise Manager. It was a simple and straight forward process. But after a short period of time, it was discovered that replication had stopped. The merge agent wasn't running. When I tried to start it again, it failed and stated that it needed an updated snapshot. So I ran the snapshot ...Show All
Visual Basic How to structure directories for .vbproj's shared amonst several solutions?
I've got several programs that all use at least one Shared project (Shared.vbproj) I'm trying to structure thier directories. I'm planning to use what's below. My goal is to be able to move the ROOT folder to another location and have everything still work. Any downsides to this: (or a better way) Can anyone point me to a resource describing this (I read up a bit on this in the MSDN, but the best example I found doesn't really describe how to organize the directories themselves) http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnbda/html/tdlg_ch3.asp \Root (directory) -Program1.sln (which contains Program1.vbproj and Shared.vbproj -Program2.sln (which contains Program2.vbproj a ...Show All
Visual Studio UNC path of a local folder on Server??
I have installed VSS 2005 on a WinXP Pro box (Server). I created a database at C:\VSS. I open SSAdmin, Server > Configure > Enable SourceSafe Internet for this database. It says, open the DB in UNC path. The folder is shared as "VSS". It is not accepting the "VSS" string in the create new database wizard. It says, its not a valid UNC path. What do I need to give the UNC of a folder which is in the local file system of Server and shared as "VSS" I tried "<computername>\VSS".. its not working because the server is looking for the computer on the network while its the name of the server itself. Sorry if I am dumb, but I couldn't find any documentation on this. TiA. I am trying to access this VSS folder from ...Show All
Visual Studio 2008 (Pre-release) Can't assign MenuItem's icon property using setter. Get Error!
Can someone tell me why this doesn't work <MenuItem.ItemContainerStyle> <Style TargetType="{x:Type MenuItem}"> <Setter Property="Header" Value="{Binding XPath=@Title }" /> <Setter Property="Icon"> <Setter.Value> <Image Source="{Binding XPath=@IconSrc}"/ > </Setter.Value> </Setter> </Style> </MenuItem.ItemContainerStyle> I get the following error... {System.Windows.Markup.XamlParseException: Cannot add content of type 'System.Windows.Controls.Image' to an object of type 'System.Object'. Error at object 'System.Windows.Controls.Image' in markup file 'M ...Show All
SQL Server loop to run 'Create Trigger' script?
I need to run a script to create a trigger on 18 tables on 3 databases. The code is identical with the exception of the table and trigger names at the beginning. Does anyone know of a way to create them all with a loop instead of manually replacing the table and trigger names and executing over and over I tried variables but get an 'Incorrect syntax near '@TriggerName' error. if exists (select * from sysobjects where id = object_id ( N'dbo.tgUsersAudit' ) and objectproperty (id, N'IsTrigger') = 1) drop trigger dbo.tgUsersAudit go CREATE TRIGGER tgUsersAudit on tblUsers FOR insert, update, delete AS DECLARE @TableName varchar(128) SET @TableName = tblUsers ..................from here the code is the same for all ...Show All
Game Technologies: DirectX, XNA, XACT, etc. MDX - Tracking mouse position causes render loop problem
Hi, this is really strange, I am using Tom Miller’s render loop with the application idle. All works well, but now I want to track the mouse position in my windows form. So I have a StatusStrip with some ToolStripStatusLabel’s, here’s my code in the mouse move event: Dim mousePositionX, mousePositionY As String mousePositionX = String .Format( "{0:,0.0####}" , Me .ScreenToModel(e.X, e.Y, Plane.XYPlane).X) mousePositionY = String .Format( "{0:,0.0####}" , Me .ScreenToModel(e.X, e.Y, Plane.XYPlane).Y) 'If I assign the variable to the label, the render loop pauses when I move the mouse Me .MainFormService.XPositionStripStatusLabel.Text = mousePositionX 'If I assign some literal t ...Show All
SQL Server Solved
Hi, Now it’s working fine!!!! On the Firewall of the Server, I’ve added the default port 1433 on the exceptions. thanx!!!! ...Show All
SQL Server Query to get Linked List kind of data from the Table
hi Experts, I have a Issue table which stores the below data for many issue. some issue are duplicate to other and they are stored in a field Duplicate_of ID Duplicate_of State 77637 65702 Duplicate 65702 42217 Duplicate 42217 - Verified i wanted to write a query or some stored procedure when passed 77637 should help me get 42217 . Hint : 77637 when passed has field Duplicate_of which point to 65702 and his state will be Duplicate , 65702 will be duplicate to 42217 and state will be duplicate and 44217 is not duplicate to anything and state will be other then Duplicate i appreciate if somebody can help me think in some line to ...Show All
Software Development for Windows Vista MSNETOBJLIB.RMGetLicense License storage is not working
I work for a company that provides video content protected by Windows DRM and I am encoutering some issues with delieverying licensing to Windows Vista machines. In particular, I am able to generate a license for the machine but when I attempt to install the license I get the exception below. I thought it was odd that the exception woudl tell me to call product support. Has anyone else encountered this issue Just about everytime I resort to posting to a Forum I figure out the problem myself with a few minutes/hours. My problem was that I wasn't configuruing the license into a response. This is the correct code is below. However, we are unable to deliever the license to *any* machine that was upgraded from XP to Vista Ultimat ...Show All
Visual C++ Trouble compiling my C program
Hi, I am trying to write a C program in Visual C++. I have changed all the .cpp extensions in my project to .c file extensions. But get this message when I try to build the program. Could anybody help 1>------ Build started: Project: hello_world, Configuration: Debug Win32 ------ 1>Compiling manifest to resources... 1>Linking... 1>LINK : fatal error LNK1104: cannot open file '.\debug\hello_world.obj' 1>Build log was saved at "file://c:\Documents and Settings\Jack Harris\My Documents\Visual Studio 2005\Projects\hello_world\hello_world\Debug\BuildLog.htm" 1>hello_world - 1 error(s), 0 warning(s) ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ========== ...Show All
