Software Development Network Logo
  • Microsoft ISV
  • VS Team System
  • Audio and Video
  • Visual Basic
  • Visual FoxPro
  • Visual C++
  • Visual Studio
  • IE Development
  • Smart Devicet
  • Game Technologies
  • Windows Forms
  • SharePoint Products
  • Visual C#
  • Windows Vista
  • .NET Development

Software Development Network >> Anthony M's Q&A profile

Anthony M

Member List

Bjørnar Sundsbø
smileyke
Charles Lewis
ManishMenon
BJ Custard
AntonioP
Dr Adrian Colquhoun
RideABike
a. Nova
Leo H
R.Tutus
Sébastien Nunes
04-digit0l
akilah
jawosis
Rachel Wang
RufusLDK
patio87
J. Clark
AlanKohl
Only Title

Anthony M's Q&A profile

  • Windows Forms "Could not find File <path>\<filename>.InstallState" error due to first custom action failing and second rolling back

    Hi, I have created a Visual Studio 2003 setup project. It has two custom actions implemented as two separate C# library projects. Both of the custom actions are added to the install phase. Only the second one is added to the rollback phase. If the first custom action fails in the install phase the second one is not run. Which is what I want. But, the setup project then runs the the Rollback method of the second custom action and complains that "Could not find File <path>\<filename>.InstallState". I don't want the second custom action to rollback if the first custom action has failed on install. How can I prevent this from happening Thanks. McGeeky I have since resolved ...Show All

  • Visual C++ MFC Dll Project?

    When given a problem that involves quantum interactions, behavior among particles such as atoms etc.: (using: MS VC++) Would you create an, MFC Dll Project Would you take another path Thanks very much for any and all (no matter how minor) info. in regards to above question(s). B. John eineros; Simple Samples, "...C++ is probably a good choice due to the intensity of math required, including precision..." youve id'd the #1 priority: precision. so you know ive worked hard and am not asking for something without me trying hard first: taken/passed: .asm (assembly lang., hc 111 board, still have it, tough syntax but made sense, enjoyed except for comments/documentation, usually enjoy commenting, still have flo ...Show All

  • Visual Studio Express Editions My.Computer.Printers?

    What is my problem When I try to make a simple print test I can not get access to the Printer library in the My namespace. When I write My.Computer. a list comes up with Networks, Ports, Registry, Screen and lots of other stuff but not Printers. Why I shouldn't have to install a printer just to write the code I have Adobe PDF as my default printer right now but that shouldn't matter. I also have downloaded VB Express recently and I am quite certain that it is the most recent one. Thanks for your help! /Mattias My.Computer.Printers was something that made an appearance in some of the CTP/Beta of VB 2005 but was dropped prior to release because of some issues.    Its currently NOT included ...Show All

  • Visual C++ NMAKE : fatal error U1077: 'cl' : return code '0x2'

    Hi, I'm currently using a network simulator called Qualnet, which uses Microsoft Visual C++ for compilation. On my own PC, it works fine, but when I try to access the PC via SSH, I keep having problems with nmake. I have the following error: NMAKE : fatal error U1077: 'cl' : return code '0x2' I've read through some of the solutions available online, such as executing the VCVARS32.BAT file, and adding the environment variables in .bash_profile, but to no avail. I suspect it's a problem with the path/include/lib paths, but I'm not quite sure how to solve it. I have also checked the paths of the cl and nmake file, but they appear to be correct. $ which cl /cygdrive/c/Program Files/Microsoft Visual Studio/VC98/Bin/cl $ which nmake /cygdrive/c ...Show All

  • Visual Studio i lost setup.exe file of en_vs_2005_pro_dvd plz help

    does anyone have en_vs_2005_pro_dvd setup.exe file plz upload it VS2005 90 day trial: http://www.microsoft.com/downloads/details.aspx FamilyId=B2C27A7F-D875-47D5-B226-E2578A116E12&displaylang=en ...Show All

  • Software Development for Windows Vista Using the Simple STS - Managed Card

    I’m following the sample/document ‘Using the Simple STS’ and running into an issue. It’s probably something very basic that I have missed but I don’t seem to be able to figure it out. In a summary when I try to run the managed card scenario, I get the error ‘Identity provider end point was not found’ in the event log. This is what I have done. Upgraded the machine to have IE7, Cardspace etc. Downloaded and unzipped the latest ‘Simple STS example’ (with the 2 errata fixed). Made the change to handle the errata mentioned by SoftwareMaker (commenting out extra claims). Ran the install script to set up websites, certs etc. Compiled the SecurityTokenServer.csproj to get the SecurityToke ...Show All

  • .NET Development Bumping it up. Still looking for an answer to this.

    I have a peculiar problem. I have an application that launches a bunch of other AppDomains. I then call the newly created Appdomain's CreateInstanceAndUnwrap method and I get back an object that adheres to an interface I have defined. That interface has an event on it, let's call it ListenerEvent. I then do NewlyCreatedObjectInOtherAppDomain.ListenerEvent += new ListenerEventHandler (MethodInThisClassAndThisAppDomain); Then I tell this other Object to start processing which will sporadically call the event. If 5 minutes go by without a callback and then the object tries to callback, an exception is thrown that looks like this: A first chance exception of type 'System.Runtime.Remoting.RemotingException' occurred ...Show All

  • Visual C# How parallel programming is achieved in C#

    I am doing a project using C#.NET on "Performance evaluation of sequential and parallel execution of various sorting algorithms". I want to know whether parallel programming is possible in C# or not .If possible plzzz tell me how it can be What technique will be used to do so Hey can u plzzz tell me whether "data parallel threading" is possible in C#. In Data parallel threading,you would create threads that rely on independent data sets, for example dividing a video frame into two halves. This allows concurrent threads to make full use of an individuated cache-core configuration. ...Show All

  • SQL Server How to relate InstanceID of RunningPackage object to logging?

    Iterating through Running packages as in this code from MSDN: RunningPackages pkgs = app.GetRunningPackages("yourserver"); // Enumerate through each package in the collection and display some data. foreach (RunningPackage package in pkgs)     {         Console.WriteLine("InstanceID: "+package.InstanceID);         Console.WriteLine("PackageDescription: "+package.PackageDescription);         Console.WriteLine("PackageID: "+package.PackageID);         Console.WriteLine("PackageName: "+package.PackageName);         Console.WriteLine("UserName: "+package ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How Can I make the TransformedColored Points to rotate?

    I try to make the TransformedColored Points to rotate.But It make no rotation.This is my code: private Device device = null; private VertexBuffer vb = null; public void InitializeGraphics() { PresentParameters presentParams = new PresentParameters(); presentParams.Windowed = true; presentParams.SwapEffect = SwapEffect.Discard; device = new Device(0, DeviceType.Hardware, this, CreateFlags.SoftwareVertexProcessing, presentParams); vb = new VertexBuffer(typeof (CustomVertex.TransformedColored), 3, device, Usage.Dynamic | Usage.WriteOnly, CustomVertex.TransformedColored.Format, Pool.Default); vb.Created += new EventHandler(this.OnVertexBufferCreate); OnVertexBufferCreate(vb, null); } private void On ...Show All

  • Visual Studio Express Editions Compiled CHM?

    I'm looking at the following Help Class info: http://msdn2.microsoft.com/en-us/library/system.windows.forms.help.aspx "You can use Help to show compiled Help files (.chm) or HTML files in the HTML Help format. Compiled Help files provide table of contents, index, search, and keyword links in pages. Shortcuts work only in compiled Help files." If I'm reading this right, all I need to do is include the chm file as a file under my application and reference it's location: Private sHelpFile As String = My .Application.Info.DirectoryPath & "\Resources\help.chm" Then, all I do is call the file: Private Sub InstructographHelpToolStripMenuItem_Click( ByVal sender As System.Object, ByVal e A ...Show All

  • Visual Studio Team System including files fails

    Hi Im trying to add my VC++ include directories, but it won’t work... I had added the following to my tfsbuild.proj < AdditionalVCOverrides > %3CTool Name=%22VCCLCompilerTool%22 AdditionalIncludeDirectories=%22$%28SolutionDir)include%3B$%28VCInstallDir)include%3B$%28VCInstallDir)atlmfc\include%3B$%28VCInstallDir)PlatformSDK\include%3B$%28FrameworkSDKDir)include%3B$%28SolutionDir)tlb%3B$%28SolutionDir)include\wtl%3Bc:\program files\msxml 6.0\inc%22 /%3E%0D%0A </ AdditionalVCOverrides > but on the buildmachine I get an error, that it cannot find a sjvers.rc file, but it’s in the path: c:\testbuild\captia41\test\Sources\13.0x\include. Please help Regards Kim My buildlog on the buildma ...Show All

  • Visual Studio Why is VS2005 (pro) taking 1,5 gb of my c: partition before installing

    hi when i want to install visual studio 2005 professional, the setup requires 1.5 gb of my c:/ partition. Why is this And is there a remedy against it Well to be honest (sorry for the late reply), I did change the filedirectory to a partition which way well goes over 1.5 gig. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How do I load a 3d mesh (.x file)?

    How do I load a .x mesh into my scene The space game seems to use its own format (which it names .swm), and there's nothing in the help. I've been scanning through through the classes in the Framework namespace, but I can't see anything obvious! Is .x the recommended format for objects like this (If not, I change my question to be about the recommended format :D) If anyone knows anywhere that has some nice .x meshes I can play with, that'd be cool too. The only one I have lying around is a chair, and that's going to look a bit funny running around my game :D Zumwalt wrote: So basically what you are telling everyone is don't bother with the SDK at the moment because it is pre-alpha still an ...Show All

  • Visual Studio Team System Performance test on Webservice

    Can we do performance/load testing of a web service using Ocracoke...if so, can anybody provide me wid a link which will help in understandin how to do that.I have seen performance testing on Website using Ocracoke, but i need to do performance/load testing for some of my Web Services.Thanks in advance. Hi You can create unit tests for your Web Service and run the Unit Tests as part of Load Test. Also you can create Webtest for your Web Service and add them to load Test. This post talks about creating a Web Test for Web Service http://msdn2.microsoft.com/en-us/library/ms182557(VS.80).aspx Thanks Rituparna ...Show All

©2008 Software Development Network