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

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

roacha76

Member List

Dexter
Vijay S
Abhay Lakkad
BE_Jack
Sandeepn75
Peter Artelt
StanoB
APFCClyde2
NiceGuys
Scott W.
--JC--
danwsc
miketravers
gon10289
Pete Runcorn
Glenn Wilson
MartinDolphin
SollenbC
Keith Schengili-Roberts
Lam Nguyen
Only Title

roacha76's Q&A profile

  • Software Development for Windows Vista error after Install february ctp winfx

    Hello, I install the new version february ctp. As i have already install the december ctp, i uninstall it before (this versions worked correctly on my system) To install, the february CTP, i respect the order describe on then download page. the installation finished successfully, but when i create new project or load an existing peroject i have problems : 1) the referencies assemblies aren't found except for Winfx service library. ...Show All

  • Visual Studio EnvironmentEvents Event thrown after a tool has finished executing

    Does anyone know if there is an event to handle in the EnvironmentEvents class after an external tool has finished executing I would like to search the output window after it has finished being updated by an external tool. I copied the address into my browser and got The page cannot be displayed ms-help://MS.VSCC.v80/MS.MSDN.v80/MS.KB.v10.en/enu_kbvcsharpnetkb/vcsharpnetkb/810230.htm ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Do you have an orthographic ray picking demo?

    Hi, Does anyone have a simple demo of ray picking inside an orthographic viewport Its no different to any other kind of projection. You just have to unproject through the orthographic projection matrix instead of the perspective one. See the pick sample in the SDK for C++ or the translation over on MDXInfo for C# ...Show All

  • Windows Forms Can't run ClickOnce

    I can't seem to run ClickOnce applications (or at least the ones I've created).  It seems AppLaunch keeps crashing when I try to run the ClickOnce app.  When I go to the directory that all the files are saved, and run the main app, it runs just fine.  Haven't tested any other ClickOnce apps, or had other people test mine yet, not sure the problem. APPLICATION CRASHES OR MANIFEST IS IMPROPERLY FOR ...Show All

  • Windows Forms how to see the code behind an .exe files

    i mad a program a while ago with visual studio .net 2003 and i lost all the files of that program except the .exe files is there a way i can see the code of that program to modified it thanks,  Julien Roussel ataris@sympatico.ca ...Show All

  • Software Development for Windows Vista Bug? InvokeWorkFlow activity used with Sequential Workflow hosted in Console App

    I've been experimenting with InvokeWorkFlow activity and found what I think might be a bug with the logic in hosting code for the console app.  In the Main method, the WF runtime is instantiated and the started passing in the type for WorkFlow1.  Before it starts the workflow however it wires up a handler for the WorkflowCompleted event that when called sets a AutoResetEvent which the main thread uses to terminate the WF runtime and en ...Show All

  • Visual Studio 2008 (Pre-release) DataTemplate with Viewport3D using a StaticResource

    Why won't this DataTemplate work < DataTemplate x:Key = " 3DItems " > < Border BorderThickness = " 1 " BorderBrush = " Black " > < Viewport3D Width = " 50 " Height = " 50 " ClipToBounds = " True " > < Viewport3D.Camera > < PerspectiveCamera FarPlaneDistance = " 50 " NearPlaneDistance = " 1 " FieldOfView = " 90 " Position = " 5, 2, 15 " LookAtPoint = " 0, 0, 0 " Up = " 0, 1, 0 " /> </ ...Show All

  • SQL Server sql server express loses ability to write to database

    After a period of use (typically 1-2 hours), an application using SQL Server Express stops writing to the database, whilst still continuing to read from it. As far as I can tell, no error message is generated by any operation. The application is written in VB Express and is executed on several machines, with SQL Server Express on a central machine. Re-starting the application on the affected machine restores normal operation. The problem ...Show All

  • Visual Basic VB 2005 Window Stay On Top?

    I was trying to get my form (the main form Form1) to stay on top all other windows windows(such like the Windows Task Manager) but with no luck. I tried Google and came up with several approaches: One used the SetWindowPos API call but that generated some insanley cryptic message that the call '...unbalanced the stack...'. I also tried setting the form's TopMost property to true, but that only made the main form stay on top the other fo ...Show All

  • Visual Studio How do I activate the Error List?

    Howdy, In my VsPackage, I create a bunch of tasks in the Error/Warning List through ProjectNode.TaskProvider.  I would like to activate the Error List when I'm finished creating all the tasks, but when I call ProjectNode.TaskProvider.Show() it always shows the Task List.  How do I activate the Error List Thanks! Eric ...Show All

  • Visual Basic Add connection wizard fails with Access database

    I have the RTM version installed. I am quite puzzled at this wizard. It works fine with SqlClient. But for Access databases, this wizard completely fails. In this wizard, I only have one option to do - setting the ConnectionString. I set it to Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\path\abc.mdb, which works fine in my code. But when I click OK, it complains: --------------------------- Microsoft Visual Studio --------------------------- ...Show All

  • Visual Studio Shared Memory Provider: No process is on the other end of the pipe.

    I'm unable to install SQL Express 2005 on a windows 2003 server.  I have installed it on several 2003 servers, but for some reason, the one I need it on will not install.  I have tried the manual install, and the command line install.  Both give the same error.  Setup gets to the point where it is configuring the server, and then I get the following error. SQL Server Setup could not connect to the database service for serv ...Show All

  • Visual Studio Express Editions automatic handling of some function - on destroying an object

    i need to store some values when ever an object is destroyed. (of myOwnClass) when we use ' dim xyz as new myOwnClass' , the Sub New() would be called automatically to let us handle any processes on the construction of the object. (right ) now next time i use the same statement ' dim xyz as new myOwnClass' , then this initial object gets destroyed and a new instance of the class would constructed (and the Sub new() would be called again) ...Show All

  • Software Development for Windows Vista SymbolicLinks & UAC & ShellExtensions

    Can you give me a hint how to let my shellextension create symbolic links from explorer.exe More in Detail: My ShellExtension calls CreateSymbolicLink, which needs at least a manifest containing 'requestedExecutionLevel level="highestAvailable"' or you get GetLastError=ERROR_PRIVILEGE_NOT_HELD from CreateSymbolicLink. How do I set 'requestedExecutionLevel level="highestAvailable"' Well via Manifests, but how to act if I am o ...Show All

  • Visual C++ Question About Headers

    I want to use VSC++ for programming C. I know C isn't fully support cause the lack of MS deciding not to add the c99 which i believe is stupid. But I was wondering is there a way I can use my own C headers and libraries to build that are c99 and use it with VSC++. I have the Visual Studios Professional version. And change the compiler cause i don't wanna think i spent so much money for this and I can't use it. Cause of this problem. ...Show All

©2008 Software Development Network

powered by phorum