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

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

keffordl

Member List

Sirkku Willie MSFT
Delboy6969
subansuba
Eric Charran
Mark Daly
cbarru1
Elmer V
cyberkid1043
rs2005itw
jhayann
H Magnusson
HPEvju
JEROMEMAS
Marvin Hassan
Seth Nielson
Giotto
Ariane Jansen
Patrick Gallucci MSFT
Dimitris DOukas
lmussier
Only Title

keffordl's Q&A profile

  • Visual Studio Team System MSDN Subcription

    This is probably not the best place to ask, but I haven't been able to get an answer from the MSDN folks... Any idea if we will be able to transition our existing subscriptions over to VSTS for DP when it is available I currently subscribe to VSTS Dev. Not being an expert on licensing, but the Team System license model is either based on seperate SKU's like Developer, Test or Architect; or you are have a Suite license which includes today Developer, Test and Architect. When VSTE DB will be released this will be the fourth SKU in the Suite. If you can not transfer VSTE Dev in to VSTE Test today, I do ...Show All

  • SQL Server Connect to an NS instance on remote server

    I have Sql Server 2005 and Notification Services on one machine and I am developing a web app on another machine that will be front-end to the NS instance. So far all the examples I've seen for connecting to an instance using NS API assume that Sql Server, Notification Services and the development environment are on the same machine. Is it possible to connect to an instance on a remote machine using NS API If so, how can it be done Shyam is right that you need to register the instance. There is also a third option to do the registration: - You can use the Microsoft.SqlServer.Management.Nmo.Instance.RegisterLocal met ...Show All

  • .NET Development Why my Existing application is not high resolution aware and why all the examples given are in VC++, what for .Net developers?

    I followed all the steps described, Using Res2exe Put res2exe.exe and hidpi.res in Visual Studio .NET 2003's command line path. These files are installed with the Developer Resources for Windows Mobile 2003 Second Edition , by default into the directory C:\Program Files\Developer Resources for Windows Mobile 2003 Second Edition\tools. Compile your application using Visual Studio .NET 2003 From the command line, run res2exe on the output executable using this syntax: res2exe -c -r hidpi.res [EXE file] Note    If you are using signcode to sign your exe file — for example if you are targeting Smartphone 2003 — you need t ...Show All

  • Visual Studio Express Editions Learning C++

    Where would be the best place to learn C++ This question has been asked and answered quite a few times before. I suppose the best place to learn C++ is to enrol on some course that teaches it (many computer science related degrees offer it at least as an option). Failing that, the next best option would be to read a few books on C++ (some great choices have been at http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=107484&SiteID=1 , and orcmid has reviewed some of the books himself). Also in that thread I mentioned are links to sites which have quite good free tutorials on C++, for those on a budget. The codezone commun ...Show All

  • Windows Forms Installing Applications with VB.NET

    Hi, I want to create an application that will install things like MDAC 2.7 / Framework if they are not installed.  I want it to exectute the installation file and then wait for the installation to finish and then start up my application. I have looked at the Bootstrapper on MSDN but that is only for .msi files. Is there a simple way to do&nbs ...Show All

  • Visual C# How detemine compiler version for custom attribute ?

    Hi! I want to write a custom attribute to indicate that a class or method is deprecated after a certain version of the compiler/runtime. How do I check the version number of the compiler/runtime from an attribute Thx! Jess C# Online.NET http://wiki.csharp-online.net/ right, using reflection: using System.Reflection; private string AssemblyVersion { return Assembly .GetExecutingAssembly().GetName().Version.ToString(); } ...Show All

  • SQL Server Information for Column-Level Merge Replication

    Please provide me a column-level merge replication in SQL Server 2005. In the SQL Sever books online, I could able to get very few informaiton about this topic. Please provide me a best practices for using this kind of conflict resolution in Merge-replication. Provide me a best solution for this problem Following are my tables structure Organization (top-level)    AddressID -> ID             Address Employee (top-level)       AddressID -> ID              Address   Organiza ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Visual C# 2005

    In language Vizual C * 2003 there was a function Commit. Example: device. Ligth (0) .Commit (), In Vizual C * 2005 these functions are absent. What to write instead of this functions Taking a guess at the small bit of code supplied, I would say that you are talking about programming DirectX and using the managed Classes. The commit was removed from the lights system in directX about 3 releases ago, some of the older books still use it ie Tom Millers, Managed directX Kickstart. If you just leave it out and make sure that you have the update call in it will work. Check this post on www.ircomm.net , this post has some examples of the ch ...Show All

  • Visual Basic Calculation in Visual Basic 2005 express

    I need help please on this question and i could not understand where to begin.The question say, Input Calculate Circumfrunce Area of Circle. Value and surface area sphere. : Pi i = e Pi i square =theda 4/3 Pi i cube = V 4Pi i square = SA please, some give at least some sort of direction i'm just a starter in Visual basic. thanks guys. It seems to me that you don't need to do any integration if I am reading your post correctly. In that aspect you can define as variable for Pi (not sure if this is already defined in Visual Studio) and the rest should work on it's own. I would sugge ...Show All

  • Visual C# MultiThreading

    Thread a= new thread(new ThreadStart(method()); a.Start(); ok i understand that this starts the method on a diferent thread but what if i dont have a method and kets say that i have some operation do on another thread what do i do Hi! Create this method if you want to use Thread class. Or you can use BackgroundWorker class. Another way is to invoke delegates asynchronously, like this (here SimpleCallback is same as System.Windows.Forms.MethodInvoker): new SimpleCallback ( delegate { UserList list = User .Load( User . LoadMode .Edit); BeginInvoke( new SimpleCallback ( delegate { UsersSource.DataS ...Show All

  • Windows Forms invalid operation exception

    "form that isn't a top level form cannot be displayed as a modal dialog box. remove the form from any parent form before calling showDialog" what i have to do thats the code...please help me!!! private void OrgProperties_OnClick(System.Object sender, System.EventArgs e) { //per invalid cast exception devo usare questo metodo Organization org; object objGeneral = treeView2.SelectedNode; if (objGeneral is Organization) { org = (Organization)objGeneral; if (org != null) { if (org.FormOrg == null) { orgform = new Organizat ...Show All

  • Visual Studio Team System Error with VSCodeGenAccessors and static classes

    I used the test generation wizard to create test stubs for an existing static class, and can't compile the test project now. I receive this error:  '{ClassName}': static types cannot be used as parameters It comes from the ctor for the accessor: public ClassNameAccessor(global::Assembly.ClassName target) :             base(target, m_privateType) { How can you generate tests for static classes Hi, Is this work-around still the only one to solve the error I have the same problem as cRz and I use VS2005 v8 (French). Thanks for y ...Show All

  • Visual C++ MessageBox memory leak/corruption problem

    I have a main thread that displays a message box using CDialog's MessageBox function. And there's another thread that exits the application. Termination of the MessageBox (without the user pressing "OK") is corrupting memory or causing memory leaks. In debug mode it says "user breakpoint is reached in code .. ". Is there a simple way to close the messagebox before terminating the application so that there won't be memory corruption or memory leaks Things I tried are: * Using pClassPointer->SendMessageToDescendants(WM_CLOSE, 0, 0, TRUE, FALSE); This is not working! I do not know why! P ...Show All

  • Visual Studio Team System Web Service XML Testing - Reposting this for Roy

    This is bar none the best help available on the internet. I have a problem, maybe you can point me in the right direction I am testing a webservice that accepts a changes to a data table. The soap request description indicates it is looking for a schema (not sure if this is a bad choice by the developer). < xml version="1.0" encoding="utf-8" > <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <UploadStationData xmlns="http://radio.clearchannel.com/"> <station_data> ...Show All

  • Visual Studio Express Editions Project Templates

    I download the visual web express template from the microsoft web site. Which you ask the personal template. My question is how do you remove the (Your Name here) part in the upper part of the page as well as the copyright section              please help P.S keep in mind i did watch the webcast, and the never talked about it.   Those values are hard coded in the source of the master page. Load up the deafult.master (I think that is what it is) swap to source view and change the values. You will find the following lines.. < h1 ...Show All

©2008 Software Development Network