Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I am connected to a project in TFS, After making my changes I checked in. I can now see the folders and files on the server in source control. However, all of my new files and changes to certain files are not available in my solution.
Error Message:
Error
TF10187:Could not open document
(Path)
The system cannot find the file specified
Use the Source Control Explorer, select your project and use the Get Latest Version command (a little icon with an arrow pointing at a clock). This will download all files missing on your local PC from TFS.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 5 years ago.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Improve this question
I'm having trouble installing microsoft visual studio 2017. It loads to 100% then the setup fails. I get this error:
Package 'Microsoft.VisualStudio.MinShell.Msi,version=15.0.26711.1' failed to
install.
Can someone help me please?
Try to run installation as administrator. You need to have acces to folder C:\ProgramData\Microsoft\VisualStudio\Packages\.
Also check this article.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 9 years ago.
Improve this question
I've been searching for how to duplicate a solution. In my case, I just want to move my solution to a new directory (it got created in the Visual Studio directory under "Projects" and I want it to be in the folder for the course I'm taking).
I understand there is the problem of absolute paths. But the only things that should have absolute paths are resources like pictures I'm using or stuff like that. I'd be happy to do those by hand.
To help me understand why it is so complicated, maybe someone can explain why there isn't simply a "save as" sort of option.
Here are two places I've looked at so far:
http://social.msdn.microsoft.com/forums/en-US/a0847416-392c-4ce3-8e9c-40cb7f0f2a27/visual-studio-c-how-to-copy-a-project
http://bytes.com/topic/c-sharp/answers/866577-how-copy-entire-visual-c-solution
Why can't save-as at least just update the automatically generated paths?
Just copy paste the entire solution directory to a different location.
Why can't save-as at least just update the automatically generated paths?
Because your solution can have items included from the "outside" (outside the solution root dir).
BTW, don't forget to manually change project guids if some projects from your solution_s_ can eventually end up in one (common) solution.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
In my asp.net file i linked only one page in .asp file.When click this page it show some error
How to solve this error?
If this is not a typo, like mantioned in comments, so you really want to serve to the client a page with ASP extension, you have to change, add to be more precise, an extension with clearly defined mime type to the IIS configuration file.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I wanted to know if windows explorer is created like in C# using ListView and other components, is it like that ?
Use dependency walker to open explorer.exe and see if it has dependencies on any .NET assembly, and you will find that it does not.
Here's the output from my machine (Windows 7 x64):
As you can see there is no dependency to mscoree.dll, which is a dead giveaway that explorer.exe has nothing to do with .NET.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
i have 200 terminals (Windows-mobile) that connect to the server Through WIFI
how i can transfer any file to all of them ?
is there any tool or can i get any C# sample code for this ?
thanks in advance
You should write some sw on the mobiles to sink the file instead of pushing on them. So each user can ask the server for transfer the file. If the file you need to transfer is a deploy of an application, you can even consider some strategy of auto upgrade as described here: http://msdn.microsoft.com/en-us/library/aa446487.aspx
You could create a log-on script assuming you have Active Directory and a friendly system administrator.
http://www.rlmueller.net/LogonScriptFAQ.htm
Microsoft have a non-free tool called System Center Configuration Manager that will do what you want. You need to install the client app on the phones first, then they poll the server for updates.
This is likely to be massive overkill for what you want but it's hard to be sure from the question.