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

Software Development Network >> Adam Harding's Q&A profile

Adam Harding

Member List

Darshita
Stephan Ruhland
DJ - XWAVE
Mifuyne
Joiko
Michael S. Jones
Claus Stahnke
johanm
ilife
Walter Sägesser
Honey Chris
ssamayoa
KarlaK
HarryHdf
bebrinck_ms
N Anderton
Amit Grover
Joe Gs.
Stephen Orr
Gabe Frost - MSFT
Only Title

Adam Harding's Q&A profile

  • Visual Studio Team System Team Foundation Server MSSCCI Provider Beta 2 Now Available (Feb 20, 20006)

    The Team Foundation Server MSSCCI Provider Beta 2 is now available here . IMPORTANT:   Beta 2 is not strongly signed, so you'll need to disable strong name validation as mentioned in the README.  You can find details at http://blogs.msdn.com/buckh/archive/2006/02/21/536260.aspx . New in this beta: Support for Visual Studio 2003 and Fox Pro in addition to the already supported VB6 and VC6. Integrated Checkin - you can now associate/resolve bugs and specify checkin notes with your checkin Improved performance - opening controlled solutions, get, checkout, checkin, and compare/diff are much faster M ...Show All

  • SQL Server Scheduling the SSIS Package

    Hi, I want to schedule an SSIS package to run always. So I tried scheduling the SSIS Package as a Job in the SQL Server Agent and I have set the Schedule Type as " Start automatically when SQL Server Agent Starts ". I have used an WMI Event Watcher task to raise an event when the file dropped in a folder. And I have provided the configuration file also properly in the job. But still my package is not running properly. The application is running, but it is not raising any events even when the files are dropped in that folder. Pls anyone of you provide some solution for this. Thanks & Regards, Prakash Srini ...Show All

  • Visual Basic Determine Dll Types Programatically

    How can you programmatically determin if a dll is an assembly, win32 or activex Thanks for the feedback.  I double checked with our team and there is no API call in .NET that can give you this information.  You would need to write custom code to crack open the DLLs and see what they are.  I've passed this on to the product team for consideration in future versions.  If you have the time and interest, I suggest you file a suggestion on the product feedback center and reply with the ID number.  Thanks again. Paul Yuknewicz ...Show All

  • .NET Development How to analyze web service created in Visual Studio 2005

    Hi Can anyone tell me how to analyze a web service dll created in Visual Studio 2005 with FxCop 1.32  When using Visual Studio 2003, I used to be able to just add the dll output of my web service project, but in Whidbey no dll seems to be created when I build the web service. Thanks! John Do you have VS 2005 Team Developer or Team Suite If so, the easiest thing to do to use the built in version using Build -> Run Code Analysis on Web Site  and Website -> Code Analysis Configuration. Thanks! Nick ...Show All

  • SQL Server Instructor led training in a classroom for SSIS

    I've searched all over, but I am having difficult time trying to find instructor led training in a classroom setting for SSIS. I have found several on-line tutotial and e-learning courses, but none in a classroom. Thanks. In case you're still looking, Symphic Technology ( www.symphic.com ) offers classroom training. Saw their booth a couple months ago at Boston Teched and they looked pretty good. ...Show All

  • Smart Device Development printing for pocket pc

    did dot net compact framework provide us any free wrapper code for printing in pocket PC currently i am developing smart device application for pocket PC using VB.NET from VS.NET 2003   Not that I'm aware of. I'm using this for printing on a bluetooth extech 2500: http://www.fieldsoftware.com/PrinterCE_NetCF.htm  for an application that is used by conducteurs in trains in the north of the Netherlands ( http://www.pay2day.nl  (dutch site)) - Jeroen Boiten ...Show All

  • Visual Studio How to implement VS/VSS project on Dev/Test/Prod machines?

    I'm currently investigating source control options.  We are a Microsoft shop and we use Visual Studio .NET 2002 for editing source files but we don't currently create or use Visual Studio projects.  We have Visual Source Safe 6 but haven't used it yet. Current environment:   - Windows XP, VS.NET 2002 on each developer machine   - Windows 2003 IIS Servers - one for dev, one for test, one for prod I have a general Visual Studio / Visual Source Safe question regarding how to properly setup a VS project and VSS project to handle a web development project.  The web development group I work in has 4 people.  ...Show All

  • SQL Server Copy Database from 2000 to 2005 using Copy database wizard

    I am trying to copy a database from 2000 to 2005 using the copy database wizard. I am a sys admin on both the source and destination server and am using the windows auth method and sql management object method. I am not copying any database objects. Following is the report: Any suggestions Performing operation... - Add log for package (Success) - Add task for transferring database objects (Success) - Create package (Error) Messages No description found (Copy Database Wizard) - Start SQL Server Agent Job (Stopped) - Execute SQL Server Agent Job (Stopped)     ...Show All

  • Visual C++ arrow, delete and number keys don't respond.....

    Using VS2005 C++ beta 2 every now and then I can't use my delete, backspace, arrow keys or my side number pad while working in the VS enviornment.  I thought that I might have lost focus but the carret is still blinking where I was last at, and if I type the numbers or letters on my main keyboard then I can do things...  The worse is I can't delete.  At first I thought this was just in debug mode but it now started happening while just coding.  I can't tell you what I do to make it stop... usually I do build or do a rebuild or even shut down VS and reopen it. It is hard to reproduce what you are reporting. It could ...Show All

  • .NET Development System.IO.SerialPort sample in V C++ Express

    Could someone please post an entire example (with includes, using , namespaces, etc) I have found several samples for C# and V Basic, but none for V C++. It could be just opening a commport and exitting. I can't quite get things set up and through build. Thanks, Rich The following is very simple example of how to user SerialPort in C++. using namespace System; using namespace System::IO::Ports; int main(array<System::String ^> ^args) { SerialPort^ serialPort = gcnew SerialPort( L"COM1", 9600, Parity::None, 1, StopBits::One); serialPort->WriteLine("Hell ...Show All

  • Visual Studio Team System Jump to local for which a problem is created

    Hi, In the source below I add a problem for a local that's named using Hungarian notation. When I double-clicking the corresponding warning in VS, VS jumps to the method containing the local. Can I provide information (source context or something) to let VS jump to the local itself private void CheckName( Local local) { string prefix = GetLowerPrefix(local.Name.Name); if (! string .IsNullOrEmpty(prefix)) { ... Problems.Add( new Problem (GetResolution(prefix, local.Name.Name))); ... } } Local ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DirectX messes up other Threads!

    This is my situation: In my app I create a new form that renders directx things (simple meshes...)... The DX (DirectX Feb 2006) form starts up it's own render loop, which runs until the form is disposed. On another thread I run a control that displays a graph... When adding points to the control it calculates the DateTime value to it's internal format and then displays the form. If the DX form is disabled (not even loaded) the graph works but if not then the graph doesn't work correctly as it calculates identical values for different dates! Example: without DX: 1.1.2006 20:10 => value 1 1.1.2006 20:34 => value 2 with DX: 1. ...Show All

  • Visual C# Using a C# dll in VB6

    Hi, I would like to know if it is possible to use a dll that has been created in C#, in Visual Basic 6.0. If so it would be great if you could let me know how I can make this possible. Thanks & Regards, Frenz Yep! it's possible... You just have to create your C# class and compile it to a dll, then use regasm.exe for assembly registration and typelib generation... regasm YourAssembly.dll /tlb:YourAssembly.tlb This command makes the appropriate registry entries and generates a typelib (.tlb) from the .NET assembly so that it can be referenced from VB 6 and just use the referenced library just as y ...Show All

  • Visual Studio Team System How to mark work item as resolved

    Hello, I can view my work items as tasks in the Pending Changes window in the IDE and then check them off as resolved. How can I "check in" those changes so that the work items are actually resolved The system thinks I have no pending changes to check in and when I requery those same work items they are still active. TIA, Mike Rodriguez Could you clarify or provide more information on your issue Pending checkins window shows you all source control files that were checked in by you; when checking them in, you can associate one or more work items and resolve them. ...Show All

  • Visual Basic extracting numbers out of a string

    i have a field that has employeeid aand employee name example " iyajimi1234" or "iyajimi-12234" "iyajimi/0234" , i need to be able to get the numbers out of these string values into another feild. any ideas Heres I think what you need - Function NumbersOnly Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim s As String = "iyajimi1234" MsgBox(NumbersOnly(s)) s = "iyajimi-1234" MsgBox(NumbersOnly(s)) End Sub Function NumbersOnly(ByVal s As String) As Str ...Show All

©2008 Software Development Network