Software Development Network Logo
  • Windows Forms
  • Smart Device
  • SQL Server
  • Visual C++
  • .NET Development
  • Visual C#
  • VS Express Editions
  • Windows Vista
  • Microsoft ISV
  • Game Technologies
  • Visual FoxPro
  • Visual Basic
  • Visual Studio
  • VS Team System
  • Windows Live

Software Development Network >> ciarank's Q&A profile

ciarank

Member List

srivathsan
Christiaanpmg
_Donnie-Darko_
gorance
Amaltea
Greg Dirst
ErickGB
Oli is cool
wpzhao
VisualStudio Rocks!
fburns
Saptagiri
Bruno Ribeiro
Jon Stelly
MAttinNHTryAgain
AmolWankhede
ShyamN MS
nop
Skynetxp
golfkeelo
Only Title

ciarank's Q&A profile

  • Visual Studio Team System Licensing question

    Will team foundation require a seperate license for sql 2005 or will sql 2005 be included in team foundation We have 10 developers and are planning on getting team foundation server. Thanks in advance. You can use that dedicated SQL Server in a single-server or dual-server configuration. AFAIK, the actual licensing terms are not fully defined yet. ...Show All

  • Visual Studio Installing dotnetframeworksdk from VS 2005

    Hi All, I want to seperate dotnetframeworksdk form the VS 2005 Setup. Is it possible to do so.If Possible then which is the folder the msi is refering to I want to create a seperate package for this dotnetframework sdk. waiiting for your reply. Thanks Bhaskar The 32 bit SDK is authored inside the VS MSI so it is not possible to separate it. However, there is a 32 bit SDK redist on microsoft.com you can use. The 64 bit redists are outside of the VS MSI so those are seperatable. You can use those redists which are under the \wcu\sdk folder (on the last CD). ...Show All

  • Visual C# IEnumerable/IEnumerator example

    I copy pasted the example from MSDN and get a compile error.  Can anyone give me a hand   From http://msdn.microsoft.com/msdnmag/issues/04/05/C20/  , under section titled " Iterator Implementation" public class CityCollection : IEnumerable < string > {     public IEnumerator < string > GetEnumerator()    {        yield return "New York";       yield return "Paris" ;        yield return "London" ;    } } The error is: error CS0536: 'CityCollection' does not ...Show All

  • .NET Development DataSet Usage - Not saving to file

    Ok, my knowledge of the DataSet object is elementary at best, but I'll try to make some sense. I've added a MS Access .mdb file to my VC# project using the New Data Source wizard. Incase it's pertinent, here's the connection string (sorta): Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|\db000.mdb;Persist Security Info=True;Jet OLEDB:Database Password=xxxxxxxxx Now, I want my program to count validate that there's at least one user account in the table 'Users' during startup. I'm checking this with [object].Users.Rows.Count , which works just fine. When the application inevidably discovers there's no accounts, I ...Show All

  • SQL Server Could not create instance of OLE DB provider MSDASQL

    We have an instance of MSDE sp3a with MDAC 2.7 that is linked to a Visual FoxPro database. We extract data through views with querys like: Select * from openquery(linked_server,'Select fjobno, foperno form jodrtg') This is working fine on all test platforms and in several production environments but suddenly stopped working on one installation where we get the error: Could not create instance of OLE DB provider MSDASQL Has anyone encountered this Any suggestions on causes Suggested corrective action Try the same connection string outside of the SQL Server using UDL file or VB script. See i ...Show All

  • Visual Studio Tools for Office can I have a macro with VSTO?

    Is it possible in VSTO to have a macro with a keypress event and then have that call a function to execute code   For example, can I have a macro behind the 'w' key, and everytime it is pushed I execute code   I've been searching around online for a while but can't find anything.  I've looked at the VSTO book too and nothing is in there about it.  I found this link: http://groups.google.com/group/microsoft.public.office.developer.vba/browse_thread/thread/277183545f501d9f/d3fe55d7a78e1f62 lnk=st&q=creating+a+macro+in+vba+code+vsto&rnum=3&hl=en#d3fe55d7a78e1f62  but is there a way to do it without VBA &n ...Show All

  • Visual C# FileInfo.LastWriteTime issue: some of them is one hour late

    Hi all: When I record a folder of files' LastModified time into database using FileInfo.LastWriteTime.I found some of the time is just one hour late than the files' LastModified Time.Does anybody can tell me the reason.Thanks 182960.jpg E:\print\masterprint\jpg 3141542 2004-04-14 01:35:36.000 184682.jpg E:\print\masterprint\jpg 4525606 2004-04-06 23:51:34.000 The second file' lastmodifiedtime is 4/6/2004 10:51pm Sounds like a timezone issue. If this is another machine then ensure that you are in the same timezone. NTFS stores times in UTC so if the server wrote the file at 8AM EST and you were ...Show All

  • Visual Studio Team System Synchronizing Predecessor Info between VSTS and Project

    Since developers will probably not look at MS Project and will look at VSTS, we feel that predecessor information needs to be captured for Tasks, since tasks frequently have dependencies. Hence, we added a custom field in the process template to specify task predecessors. However, the predecessor information specified in VSTS does not get synchronized with MS Project. Also in VSTS, the predessor info contains VSTS-assigned work item IDs, whereas in Project, the predecessor info contains Project-assigned unique IDs. Is there a way to syncrhonize predecessor info between VSTS and Project Thanks in advance. ...Show All

  • .NET Development .NET 2.0: XmlDocument and Validation

    Could someone give me a basic outline or point me to an article with a sufficient code sample to get me up to speed on how to validate an XmlDocument I've read from file against a schema (.xsd) file that is also on disk It seems this has been reworked in the DOM for the CLR 2.0 (the XmlValidatingReader class is now obsolete...). Here is what I worked up based on the scanty help files available with VS 2005 Beta 2: XmlSchemaSet schemaSet = new XmlSchemaSet(); schemaSet.Add("<nameSpace>", "<path to schema file>"); XmlDocument sessionDocument = new XmlDocument(); sessionDocument.Schemas = schemaSet; sessionDocument.Load("< ...Show All

  • .NET Development Change Application Pool Identity Programmatically

    Security doesn't allow developers to have IIS installed locally on their PCs, nor do they allow developers to be in the administrator group of the development web server. In order for them to debug, we have individual application pools running under the identity of the developer. (Thankfully IIS 6.0 has allowed this feature.) We wrote a small program that allows a user to recycle their application pool: public void RecycleAppPool( string appPoolLocation, string appPoolName) {    //Execute Code to recycle a user's app pool    DirectoryEntry w3svc = new DirectoryEntry(appPoolLocation + appPoolName); &n ...Show All

  • Visual Basic How do I include the .Net Framework in an Executable?

    Some of the users at my company will not have the .Net Framework installed on their PC's.  How do I include it in an executable with the Express Edition of Visual Studios Thanks, Matt There are 3rd party tools on the market that will *package* the framework with the executable, However to my knowledge, MS Does Not support any of those 3rd Party tools.  They do provide a download for the framework, that can be freely distributed: 1.1 - http://www.microsoft.com/downloads/details.aspx FamilyID=262D25E3-F589-4842-8157-034D1E7CF3A3&displaylang=en 2.0- http://www.microsoft.com/downloads/detail ...Show All

  • Visual Studio Team System "HTTP 401 : Unauthorized" for web services in Beta 2

    In Beta 2 when I use the application designer to connect up a web application or a web service (a) as a client of another web service (b), then implement the applications, I cannot access the web service (b) via web service proxies in the clients without getting the error: HTTP 401 : Unauthorized This did not happen with the previous betas and CTPs, and I can test the web service (b) fine using the auto-generated HTML form.   Anyone know what has changed, and how can I now get the clients to communicate with the web services Thanks, Tony Loton http://www.lotontech.com   I'm running into the same problem. Howev ...Show All

  • Smart Device Development VS2003 - Automatically Install SP3?

    How can I make VS2003 ensure that .NET 1 SP3 is installed on a device before deploying the application Thanks! You can not. VS 2003 SP1 which might be released eventually would include current SP bits and deploy them. Till now it's up to you to install SP3. Which should not be that hard for development devices. ...Show All

  • Visual Studio Team System Customizing the Assigned To field on a Work Item Type

    i already read the posts about this subject, but can't find the answer: all the active directory users within my company (150 developers) is named in the format [x][id] for example: x12345@myDomain.com . the problem is when i want to asign work item to someone i see only this number (x12345) and not his name. i cant change this rule of naming (too much dependencies) i talked with the system department and they said that in the active directory they save also the user regular name. can i change the location that this assignedTo field takes the info about the users what can i do else (beside changing all the AD users names) ...Show All

  • Visual C++ Visual Studio 2005 Install

      Hi, We  just got 2 copies of Visual Studio 2005 Professional Edition, upgrade.  Previously we were using either VB.NET or C++.NET.  We are experiencing install problems. I have a general quesiton. Can we upgrade to the Professional edition from Visual Studio 20003 that just had either VB.NET or C++.NET I would think so.   Thanks Hoop According to Microsoft's site, you CAN upgrade Visual Studio 2005 Standard to Visual Studio 2005 Professional. I am confused....i think. Someone has to be right. http://msdn.microsoft.com/vstudio/howtobuy/renewal/#up_pro ...Show All

©2008 Software Development Network