MateuszKierepka's Q&A profile
Visual Studio Team System Can there be multiple instances of TFS Workgroup on the Same Servers?
We have two development workgroups that manage thier own projects and development. Each group has VSTSuite which comes with the TFS workgroup edition. We would like to be able to use the same Web server and SQL Server for seperate instances of these TFS licenses. We are wanting to isolate our projects and management. Each group has five or less users and the Production License does not make sense here. CAN THIS BE DONE and HOW TIA Harry The easiest way to get this done would be to have one or both of them have their TFS instances in a virtual PC or virtual server. Trying to get them on the same IIS/SQL instances wouldn't work, as we only support the default instance for SQL, and so the 2 ...Show All
Visual Studio Team System How to add new folder to Team Query Hierarchy?
Hello, I want to create (hierarchy) some folders inside Team Queries to orange the view in team explorer. How can I do this Thank you Hello, Naren I've got your point, but I can not run queris from Documents, can i move them from Documents to My Queries some how thank you ...Show All
Internet Explorer Development Opening Word Docmument Inline IE when Office 2007 Installed
Hi All, When opening a Word document by following a link in IE, Office 2007 and Office 2003 behave differently. On a computer with Office 2003 installed, the document opens in the IE browser window. With Office 2007, the document opens in Word. Is there a way to open documents inline IE on clients with Office 2007 installed, or vice versa Or is there a technical document describing what happens when one clicks on a link pointing at a word document in IE Thanks in advance, B. G. This fix works for me, except that the registry values are found under HKEY_LOCAL_MACHINE instead of HKEY_CURRENT_USER. ...Show All
SQL Server Defining a "partial" foreign Key..how could I ?
I have a table A, which has 3 fields: - code, subcode and description (code and subcode are PK) and a table B which has 2 fields: - date, code, value (date and code are PK) So far, no problem. It comes up when I try to define code in table B as foreign key pointing to code in table A, because table A has code and subcode as its PK, not only code...but, I need only code to be in table B. How could I overcome this Well this is kind of design issue... You can't do it directly.. Your table design is wrong. Try to use the following design: CodeMaster :: code, date, value , codedescription Here, Code is Primary Key SubCodeMaster :: code, subcode, subcodedescription Here, Code references CodeMaster::Code Code ...Show All
Visual Studio Express Editions I'm Very New!! Help with Tutorials
Hello, Sorry but I am new and pretty much blank to programming. (Done basic web design) I have worked along side people using VB and PHP and understand to a level what is going on, however never worked on it alone and dont know all the correct language to produce what I want. With that in mind I found VB Express through a friend and started doing the tutorials. However i tried to write my own after a basic tutorial and it wont work and I have no idea why when I am just following the rules in the Tutorial Dim aString As String = "Look at me" Dim bString As String = "you hairy beast" Dim cString As String = "" 'Displays "The test". MsgBox(cString = aString & " " & bString) But it does not display it. What am I doing wrong ...Show All
Visual C++ How to force intellisense update?
Sometimes I press right click and then "go to definition", and it goes to a wrong place. I think this is because intellisense is not update yet. If this is correct, how to force it update Thanks If your intellisense database is corrupt you can delete it and recreate it. Go into the directory that contains your solution and delete the .ncb file. When visual studio starts again, it will recreate the database. ...Show All
Visual Basic sum of table colomn to a label
i am trying to do the following pseudo code 'search the database in table accountInput 'get the sum of all records for collomn acct1 where usr = michael 'show the sum in form home on label1 'if no records in usr = michael then set the label1 to 0 can anyone please help. the following code is how i am accessing the database Dim constr As String = "Provider=Microsoft.Jet.Oledb.4.0; Data Source=|DataDirectory|\KeoFlexDB.mdb" Dim conn As New OleDbConnection(constr) Dim dt As New DataTable() Dim cmd As New OleDbCommand() conn.Open() cmd = New OleDbCommand(m"Select sum(acct1) from accountInput where usr = Michael", conn) if cmd = "" then acct ...Show All
Visual Studio Dynamic columns for Microsoft Report Viewer?
I saw an example on the website "http://www.gotreportviewer.com/" to generate dynamic tables. I would like to adapt that example to read from variable and not from XML and generate tables and charts. Could someone help me with this Thanks ...Show All
Visual C# dll not found exception (Newby!!)
I am writing a simple C# ap that interfaces with a dll provided by a usb interface manufacturer. The driver installation disk contains a dll that this ap needs. So the qusetion is - which directory do I place the dll in and other than copy it there do I have to do any form of registration etc Sorry this is such a basic question but I am new to windows C# programming. Many thanks for any advice anyone can give me. Bruce Hello All. Bruce: Go to Project -> Add Existing Item in the IDE menu. Browse to the .dll, and click Add. Once the file is in Solution Explorer, right click on the file name and select Properties. Make sure that Build Action is set to Content, and Copy to Output Direc ...Show All
.NET Development Problem with calculated column - does not refresh automatically
Hi I have three tables tbl_customer_visit (master), tbl_customer_visit_parts (detail) and tbl_customer_visit_services (detail). That have 1-many relations using customer_visit_id column in each table. I am using calculated columns in both the tables as following: tbl_customer_visit_parts and tbl_customer_visit_services have calculated columns for calculating the total cost for each part sold and service given for a given visit. then I have aggregate calculated columns in those tables to calculate the total costs for each table for a given visit. Then I have calculated column in tbl_customer_visit to take the totals from the detail tables (respective calculated columns) and give me the total amount due for that customer visit. NOW, the prob ...Show All
.NET Development How can I tell if I am being called from funceval
Hi, How can I know from within my .NET code if I am running in a funceval I can check that I am being debugger via, System.Diagnostics.Debugger.IsAttached but as the funceval is hijacking I cannot tell from the stack trace if the call is from the debugger. Is there any method that works differently when in funceval Is there a way in unmanaged code to do this any pointer is welcome. (I know about the debugger attributes, but these are not an option) Thanks Eli Where does the DebuggerBrowsable or the type-proxy solution break down for you Perhaps we can find a solution there. The unmanaged debugging API is ICorDebug. This is what VS uses to initiate the func-eval. Unfortunately: 1. only 1 debugger ca ...Show All
Visual C++ mfcs80ud.lib(dllmodul.obj) : error LNK2005: _DllMain@12 already defined in MSVCRTD.lib(dllmain.obj)
I create a project by 'ATL Project' wizard. Then I set 'Dynamic-link library(DLL)', 'Allow merging of proxy/stub code' and 'Support MFC'. I don't add any code in it. I can build it first time. But after close it and reload it, I get a link error: mfcs80ud.lib(dllmodul.obj) : error LNK2005: _DllMain@12 already defined in MSVCRTD.lib(dllmain.obj) My VS is: Microsoft Visual Studio 2005 Version 8.0.50727.42 (RTM.050727-4200) Microsoft .NET Framework Version 2.0.50727 Installed Edition: Professional Microsoft Visual Basic 2005 77626-009-0000007-41984 Microsoft Visual Basic 2005 Microsoft Visual C# 2005 77626-009-0000007-41984 Microsoft Visual C# 2005 Microsoft Visual C++ 2005 77626-009-0000007-41984 Microsoft Visual C ...Show All
SQL Server Installing sp1 on Cloned DB server to VM server
We have a HP server with windows 2003. MS sql 2005 was installed on it. The third party databases were installed. SP1 was never installed. This server (paahouentsqlp) PROD was cloned and placed on a vm server. When server came up on vm enviornment the server name was changed to (paahouentsqlt) TEST. Nothing was done to the SQL environment. No registery entries were altered. No sp_dropserver or sp_addserver were ran. TEST server seems to be running ok. I have attempted to install sp1 on TEST server (paahouentsqlt). The enumeration process takes about 1-2 hrs. When I finally get a screen all product selections are grey out except for SQL Server Native Client, Setup Support File, MSXML 6.0 Parser, SQLXML4, Backward Compatibility, and M ...Show All
Visual Studio Search in VS Help Not Working
For reasons not clear to me, as of this morning whenever I use the Search page in the VS 2005 Developer Documentation and Help System, it finds 0 results no matter what I put in the box. Anyone seen this before or know how to fix it This just hasn't been my week so far... Regards, lm Hello lm, Do you have Online Help or Local Help set as your default You can determine this from Tools -> Options and then Environment\Help\Online - there is an option control there that determines the preference and the search providers. Thanks - ...Show All
Visual Studio Team System How to change the name of the computer on which TFS is installed
A Team Foundation Server (workgroup edition) is installed in a local workgroup "WKG" on a host with simple (non-qualified) name "master". A team project with critical data has already been created on this server. After our local network reconfiguration this host became available from the Internet by the name "master.somedomain.com". Unfortunately, all links on the team project site have the original (non-qualified) name "master" in them and, therefore, some parts of the site (including reporting service) cannot be accessed from the Internet. The same problem can be seen when the team project is accessed through Team Explorer. I think that renaming this host into "master.somedomain.com& ...Show All
