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

Software Development Network >> Alan M Dunsmuir's Q&A profile

Alan M Dunsmuir

Member List

NickNotYet
sajithpt
DanInNewWest
Computer Guy69146
Nicolas2608
devinr
mojoshaneman
bharathi_tunes
Alex Comanescu
KrazyKevin
mahima
Alle
John Wesley Harding
GReg Bonebrake
Xancholy
.net sukbir
tonionio
mendi
Tzal
Bachi
Only Title

Alan M Dunsmuir's Q&A profile

  • .NET Development Errors installing .Net F..work 3.0

    While trying to install >NET Framework 3.0 I got several errors: 1) NGEN.exe -- Entry point could not be found: "The procedure entry point CorGetSvc could not be located in the dynamic link library mscoree.dll" 2) Microsoft Visual C++ Runtime Library: "Programs: C:\Documents a... This application has requested the runtime to terminate it in an unusual way. Please contact the application's support team for more information." I stopped installation at this point. In a previous post someone pointed out that a repair to the .NET components would do the trick. Well, .NET F.. is not installed! (any versions) Ideas, please! I was working on an HP with Win XP MCE 2005. ...Show All

  • Connected Services Framework Difference between OH-SBE in 2.5 Vs 3.0?

    Urgently need this information how different is OH-SBE between CSF version 2.5 Vs 3.0. What all we should take care if we work with 2.5 as compared to 3.0. If you are trying to get something working out of the box (ohsbe 3.0), unfortunately there is no docs on that. There is lot of change when compared to 2.5, interms of how the flow of messages are and how template manifest is built. With the current release, ohsbe builds the manifest dynamically, after it gets the participants from the ProductServiceMapping file (which has the OrchestraionIDs (which are nothing but the bindingkeys of the VASs from the UDDI)). The "ohsbe services/bin" folder has the basic SessionTemplateManifest file, that i ...Show All

  • Smart Device Development Device eumlator won't work

    I have been using Visual Studio 2005 for a short time and have been working on a simple mobile application. I am now to the point where I would like to see what it looks like on the actual device. I tried to start the device emulator by selecting Tools/Connect to Device and then picking a device. No matter which device I choose it fails after just a few seconds. It originally complained that I didn't have ActiveSync installed but I have now done that. The message I get is simply that the "connection failed". What am I doing wrong Thanks for any help... I did the repair but it doesn't appear that it changed anything. I still don't see any mention of the necessary protocols to run the emulators. Any other suggestions o ...Show All

  • Visual C# How to get command line of custom build rule through automation?

    Hi, How to get custom build rule command line For regular tools (like VCCompiler or VCLinker) method get_CommandLine returns normal expanded command line. For custom build rule (MASM in my example) the code below will return the following: ml.exe /c [AllOptions] [AdditionalOptions] /Ta[inputs] But I need to get usable command line. For example: ml.exe /c /nologo /Fo"Debug\my.obj" /W3 /Zi /errorReport:prompt /Ta Thanks in advance, Vadim G. ...Show All

  • SQL Server DOCID Error when upgrading from to SQL 2005 FTK Size

    Hi, How to determine the size of FTK, please help, Since the DOCID map in SQL Server 2005 is stored in the database, the size requirement on the database side has increased, but has reduced on the full-text catalog side. If a database contains a full-text index, you need to ensure that the file group associated with the base table has enough space to accommodate the additional space requirement for full-text indexes. Use the following formula to estimate the space required. (2*FTK+ 34bytes) * RC Where: FTK = Full-Text Key Size RC = Row Count of the Table thanks, Imran. Imran, What specific DOCID error did you get The below text is directly from the SQL Server 2005 Up ...Show All

  • Visual Basic my code is not working properly??

    My intention of this program is to move the mouse from its current position to the middle of a PictureBox and then simulates a mouse click. The PictureBox's MouseDown, MouseUp, and Click event handlers displays messages in a TextBox so you can see that the event looks as if the user clicked the PictureBox. here i'm giving the code i wrote. but its not working in the sense the mouse cursor is not moving when i press the button . But picture is loading perfectly. ' Simulate moving the mouse to the center of the ' PictureBox and clicking. Private Type POINT x As Long y As Long End Type Private Declare Sub ClientToScreen Lib "user32" _ ...Show All

  • Windows Forms Nesting Panels..

    i have this main panel "Panel1" and i want it to contain 10 more panels.. but when i drag and drop a panel into it it goes into the last panel i droped there,, how deny the 10 panel from being containers for another panels! ! is it possible ! Visual Studio 2005 features a very handy Document Outline Window, which can help you arrange controls' Z-order and containment just by dragging controls' names around the tree list. Open it with View | Other Windows | Document Outline. Andrej ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Has anyone been able to run an XNA Game?

    I've seen many people sharing code and talking about Space Wars but no one really talking about running XNA Games. I do however see many people having problems running an XNA Game. People like me, have everything needed to run the game, a high Graphics card, and yet the game will not run. Those of you that are running games, do you know why Space Wars *is* the only XNA game right now... so any problems you are reading about are with that game. If you want help you will have to explain what the problem is that you see "the game will not run" - does not help ...Show All

  • Visual Studio Performance issue witth debugging a mixed C++/CLI dll

    I've inherited some old C++ code, for which I've put a thin C++/CLI wrapper around. When I use the new managed wrapper I''ve discovered a slight but reasonable performance penalty (as expected). Unfortunately when I try to debug the application, I find that performance goes down significantly, as much as 10 times slower. So although this isn't a dealbreaker for my current project, it does make the development effort harder. Is this expected If not, are there any common common mistakes I might be making Does the debugger works as expected for other projects, try creating a sample console application and check the performance. Have you defined any symbol path, is it a network path, do you have _NT_SYMBOL_PATH defined on yo ...Show All

  • Visual C# Reading files

    Hi, I have a group of files that I need to read, they are saved in the computer through a tftp server.... How can I know if the file(all files) is ready to read No no... Another application will save the file like FileZilla will save the file and I need to monitor if the file was created, if created check if FileZilla has finished writing to it....so I can start to read the file !!! Thanks ...Show All

  • Software Development for Windows Vista uac elevation by a service

    Hi, I have a service running as local system which sometimes has to spawn another process running as the currently logged on administrator user. The spawned process needs elevated admin rights in order to perform its task which could be a software installation or configuration job. The question is; how does the service do this without the user having to click the uac dialog The problem is that the user may be logged on but could be away (perhaps the job takes place at night) so there could be nobody to click the dialog. The way it works at the moment is that the service gets the token of the admin user then calls createprocessasuser. The spawned process, of course, runs under restricted admin rights which are insufficient for the ta ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How to detect Sound Device in voice chat?

    How can I detect the sound device Which "namespace" is required And what type is its input sound data is it binary How can I change the sound data to binary Thank you for answer. You need DirectX SDK to do such type of thing. In C# there is nothing like that to do what you want. You have to use Direct Sound's namespaces in C# to do such type of thing. For more information see Managed DirectX 9's Help on microsoft website or search through google! Best Regards, ...Show All

  • .NET Development How to set SOAPUser

    Hello, I hope and think that my question is quiet easy to answer. But since I am developing the Server with axis an java I am not that used to authentication via Soap in .Net. I simply want the Service, created by the Webreference Assistent, to send a specific User and Password in the Soap Header. Its no use to me to use DefaultCredentials or other Domainusers. I neet to set these Two variable by Hand. Can anyone give me a hint how i have to modify the following constructer to use hardcoded User and password /// <remarks/> public SimplePackageServiceService() { this.Url = global::WindowsApplication1.Properties.Settings.Default.WindowsApplication1_localhost_SimplePackageServiceService; if ((this.IsLocalFileSystemWe ...Show All

  • Software Development for Windows Vista What is the latest version of WWF?

    Hi, I am wondering if there is a place I can go to to always find out the current latest version of .NET 3.0. I currently have 3.0.04324.17 (which is whatever it was that came out after July) and am looking for a website that would also give me the exact number as it gets updated. This is absolutely essential since we are planning a release come January. Thanks, Natalia I think http://msdn.microsoft.com/windowsvista/downloads/products/getthebeta/ is the location you are looking for. ...Show All

  • .NET Development Executing a query against Access and Excel

    Hi, there I wrote a program that reads data from both Excel and Access. But I don't know how to submit a query to both of them. Connection to Excel is made through OleDb in code, and Access connection is made through Database Explorer, in design time. The question is: how can I make reference to these sources Thanks, Flavia What version of Visual Studio are you using Perhaps you could post the code you have so far ...Show All

©2008 Software Development Network