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

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

BrianHenderson

Member List

Vinod Chandran
KK Wong
Soe
Kang Su Gatlin
GDK-Dev
NipsMG
Mark Arteaga
basara
Hemant Bhadane
DuckPuppy
electrickghost
ABinBoston
Shak
Markus.Net
HOTBOT
Mohammed Siraj Ahmed
Francois FPS
C#Geek
Karen Chen
tushka
Only Title

BrianHenderson's Q&A profile

  • Software Development for Windows Vista Clarification about Scheduler services and Workflow Hosts

    Hi there... I have some questions about the scheduler services and workflow hosts. I'm building a WF application using a State Machine workflow and ASP.NET. I' ve read few times that is better use the ManualWorkflowSchedulerService than the DefaultWorkflowScheduler service. I know the differences between them, the first one donate a thread where the workflows instance will be run, this means the workflow instance is synchronous with the Host. DefaultWorkflowScheduler service it's different, creates threads for the workflow instances, this means the workflow host is asynchronous with the host. If my host  ...Show All

  • Visual Studio Express Editions Missing x86 MFC in PlatformSDK

    I installed VC++ Express Beta 2 yesterday, then the PlatformSDK 5.2.3790.1830.15.PlatformSDK_Svr2003SP1_rtm.img and i could not find any MFC libs for the x86!  The MFC libs are only in the IA64 and AMD64 folders. Has anyone else had this problem Dave Kaplan, your posts were moved to the DirectX forum . ...Show All

  • Visual Basic Colour Change

    wnen i click button_1, i want form1's background-colour to change from Tan to orange, how would i go about this yes....those are made up variables Dim MyOrangeColor as Color = Color.Orange Dim MyTanColor as Color = Color.Tan ...Show All

  • Visual Studio Team System TFS thinks I am TFSETUP

    When I connect to our TFSServer for some reason it thinks I am TFSSetup.   I cannot find anything in the registry to tell it otherwise and it appears that it is only happening to me.  Any ideas Gary A. Bushey That's the first I've ever heard of that.  TFS picks up "who you are" by examining your Windows credentials (who the IIS server sees you as).  Here is some sample code that you can build into a tool to check who the server thinks you are. Create a C# console application, add a reference to Microsoft.TeamFoundation.Client.dll and put this code in the main file.  Then run it passing the server o ...Show All

  • Windows Forms Using DirectX over GDI for complex windows forms

    When making large controls that can draw quite a lot of data at once (when scrolling up and down) is it best to move over to DirectX because come of my clients are getting out of memory errors when they do large searches (see the link for a screen shot of the control). I can’t see t being a problem with my code as i have gone through the entire thing tweaking it, as far as I can tell its when the users scroll up and down a lot. This causes the control to redraw what it needs and get rid of everything that no longer needs to be drawn, however when they scroll up and down the garbage collector cant free up the resources fast enough, I’m th ...Show All

  • Smart Device Development Uninstall_Init() and Uninstall_Exit()

    can some one teach me how to use Uninstall_Init() and Uninstall_Exit() in .net compact framwork. My system will save some data into ppc registry, i want to delete those data when user uninstall my system. Can someone teach me how to do that You can not, setup DLL needs to be native. You can delete registry entries without setup DLL though. To do so add these registry entries to your CAB (e.g. with default values) and installer will delete them for you upon removal of your application. ...Show All

  • SQL Server filtering rows that already exist in the destination table

    Hi All, What is the most straighforward way of not importing rows that already exist in the destination table (as determined by a primary key value) Thanks. Regards, Daniel Method 2 here: http://www.sqlis.com/default.aspx 311 -Jamie ...Show All

  • .NET Development XML new file error

    in my visual 2005 when i want to creat a new file of the xml amessage apear "The operation could not complete" how can i fixit and what it is mean ...Show All

  • Visual C++ How to Port MFC to .NET; from VC6 C++ to Managed C++ and/or C# .NET

    Can someone point me to information on how to port and/or reuse a portion of a huge MFC app to C# .NET managed and/or C++ .NET managed code. Willing to rewrite most of the user interface, but need to preserve/modify existing code that is based on 50+ classes derived from MFC's CObject.  I need the "Serialize" portions of CObject so that my existing data files can be read into the ported app, or so I can create a conversion app. I already have everything compiling and running in VS.NET C++ 2003 using MFC.  But this is not a Managed code app, and C# can't talk to it in an interop kind of way.  Further, it can't use 3rd ...Show All

  • Windows Forms Windows Control Collection

    Hi All, I am Quite new to VB.NET. I have used a following Code like this to access the Controls using Control Name but it seems that it is not possible to access the Controls using Control Name instead we have to access them only through Index private Function GetControlText(strControlName as string) as string    GetControlText = me.Controls(strControlName).Text End Function In VB.NET seems that i have to access them through like this Private Function GetControlText(intControlId as integer) as string    GetControlText = Me.Controls(intControlId).Text end function The Problem here is that, we are not storing the ...Show All

  • Software Development for Windows Vista Various Issues with installing WinSDK (December release)

    Hi there, I hope you can be of some help. I try to install WinFX RTC 3.0 Beta 2 and WinSDK (December) on a WinXP Pro SP2 machine. The WinFX RTC installer in the first third of the installation process throws an error: An unhandled exception ('System.ComponentModel.Win32Exception') occured in Xws_reg.exe [3728]. but continues and completes stating that setup was completely successful. If I try to install WinSDK the installer after a few minutes comes back with the following error:   Windows SDK could not be configured, see the 'Installing the SDK' section of the Samples\Setup\HTML\ConfigDetails.htm document for more ...Show All

  • Software Development for Windows Vista Documentation for MSH in WinFX SDK January CTP

    Hello, I finally suceeded in installing the entire January CTP SDK of Win FX, the run time components, the Vs.NET additions for WWF ,the CTP Of Visual studio .net code named Orcas, Expression (both the designer and the interactive designer). All are working fine and without any problem. But when i want to view some information regarding the documentation, I keep getting this dialog box error. --------------------------- Error --------------------------- A Runtime Error has occurred. Do you wish to Debug Line: 103 Error: Could not complete the operation due to error 80041001. --------------------------- Yes No ------------------ ...Show All

  • Visual Studio 2008 (Pre-release) DLink: Need more docs about loading of EntitySets.

    Let's see on Northwind Customer <-> Order  relation and DLink entity classes generated by SQLMetal. Helper code for printing Order id: static void WriteOrders ( IEnumerable < Order > orders ){ foreach ( Order order in orders ) Console . Write ( "#{0} " , order . OrderID ); Console . WriteLine (); } First code example: static void Main ( string [] args ) { Northwind db = new Northwind ( "Data Source=WIZARD;Initial Catalog=Northwind;Integrated Security=True" ); Customer customerALFKI = db . Customers . Single ( c => c . CustomerID ...Show All

  • SQL Server Unable to synchronize the row because the row was updated by a different process outside of replication.

    Hi All I am getting this error during Merge Replication "Unable to synchronize the row because the row was updated by a different process outside of replication." I could not reproduce this error in my development enviornment, can anyone tell me what is cause of the above error and how do I reproduce this error in my development machine I am able to get which is outside process The Conflict Type is 10 for above error which is logged into Conflict Table. Thanks   Hi Milind, what version of SQL Server do you have at the publisher/distributor Also, can you describer your topology Is this a central subs ...Show All

  • Software Development for Windows Vista hi

    Hi all, Several samples show how to exchange data between host and workflow: define an interface with DataExhangeService attribute on it, implement the service and add the service to the workflowruntime (of configure in web.config). In my state machine I would like to be able to read and write a dataobject in every state. The object I would like to be able to read and write is passed at startup of the workflow instance as a parameter. Do I have to add eventdriven activities to every state to: A) listen to a 'WriteDataToWorkflow'-event to update the dataobject contained by the workflow B) listen to a 'ReadDataFromWorkflow'-even ...Show All

©2008 Software Development Network