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

Software Development Network >> Doug DeBug's Q&A profile

Doug DeBug

Member List

PhilipRieck
seanf
lep
shyne13
Jade Skaggs
pangitko79
Haplo_69
Dave Houlbrooke
Anu Beniwal
SP534
wpf michelle
John.Doe
z3n
AntonyZ
M.AmjaD
furjaw
mobilemobile
Freddo
RadAmant0
uszaty1973
Only Title

Doug DeBug's Q&A profile

  • Smart Device Development How to open Inbox (pmail.exe) from a compact framework app

    I need to launch Inbox from with in my application. This is a relativly simple thing in .net. I have found several ways to open an external .exe in the full version of .Net but, have been unable to find a way to accomplish this within the compact framework. Any ideas Thanks! If you are using the 2.0 Compact Framework you can use very same class to start new processes as you would with the desktop framework, the only difference being which overload of Start() you use: Process.Start() Process.Start(String, String) Process.Start(ProcessStartInfo) ...Show All

  • Visual C# How to merge in new data from second dataset

    If you fill one dataset with data wait a while and then fill another dataset with a later version of the same table: How do you find which rows have been modified, deleted, added without looping through each one in two foreach loops (for the two tables) foreach datarow in the first table { foreach datarow in the second table { itemarray_1.equals(itemarray_2) } } But all rows will have the state "unchanged" since they're both loaded into two separate datasets using the ADO.NET method "Fill". I can update and add rows with LoadDataRow. But how do you handle deleted rows without running two foreach loops /Lars ...Show All

  • Visual FoxPro How to manipulate BROWSE NAME objects?

    I am trying to manipulate a browse object. I'm doing a browse nowait and then I make changes to some properties of the object. But then, I can't set focus to the browse window. The following runs through the code all the way to the 'Done'. How can I activate the browse window Thanks. CREATE CURSOR tmprug (rugno c(6) ) INSERT INTO tmprug VALUES ("000001") INSERT INTO tmprug VALUES ("000001") GO top define wind rugs from 06,0 to 18,90 font "Tahoma",10 grow brow fields item=recno():4:w=.F.,rugno NAME oBname wind rugs nowait oBname.AllowAddNew = .T. oBname.column1.setfocus() ACTIVATE WINDOW tmprug WAIT "Done" wind IIRC, add TITLE "My Browse", and then ACTIVATE WIND ...Show All

  • .NET Development How to make force my dll to be loaded in the beginning?

    I have a .NET dll and I want every .NET executable referencing to this dll should load it at its start up. Assuming I dont have any controll over the applications built over the dll, is there anyway I can enforce this restriction from the dll side Assembly.GetEntryAssembly() will find the .exe assembly and Assembly.GetReferencedAssemblies() will find the referenced assemblies. Maybe this will help. ...Show All

  • Commerce Server "The catalog web service is currently unavailable. The web service might be experiencing technical difficulties"

    Hey All, I have a persistent problem that i can't seem to shake off and am hoping someone has a solution. I've tried setting up Commerce Server 2007 on a Windows Server 2003 machine in the office and i've been using the Installation Guide that came with the setup files from the Microsoft website and it has failed on both occassions that i've tried it. I don't understand why it's failing because i've followed the steps closely. I've tried unpacking the CSharpSite that came with the installation and as i open up the CatalogManager it tells me "The catalog web service is currently unavailable. The web service might be experiencing technical difficulties, or you may need to adjust your connection settings." If I try to access th ...Show All

  • Visual Basic radio button help

    hi folks can you help me please.... I have a radio button on my form which plays a tune when clicked my.computer.audio.play ("c:\windows\media\song1.wav", _ radio button.text= song1........ this button can play any song...if the song is renamed song1..... but what I want to do is let the user change the radio button .text to the name of the choosen song...and save it..... so that when the form loads the radio button displays the name of the song instead of song1.... ps....I am stupid so I may need some code thank you so much cheyenne The following should allow you to modify the radio button songs, by selecting one - clicking on the button and selecting a file. The are then save ...Show All

  • .NET Development Unable to start debugger on web server

    In the debug window I recieve this error message. Auto-attach to process '[4236] aspnet_wp.exe' on machine [Locakhost] failed. Error code 0x80040033. I have Googled and read may articles on different debugger errors but nothing that covers this particular error. Any help that you can give me would be greatly appreciated. I get the exact same error. I'm running IIS 5.1 on Windows XP Professional. I have both .NET 1.1 and 2.0 installed. I'm using Visual Studio .NET 2003. I hope someone can help with this error as it would be nice to be able to use ASP.NET to run applications. Sincerely, John ...Show All

  • Visual C# Properties in C#

    Hi All, I really have a doubt regarding use of property in C#. My question is: Can we have private properties inside a class If yes, then please let me know what is the use of private propertise in a class. Thanks and Regards, ChatanyA Agrawal Hi Boban, Thanks for your reply. But I am intrested to know what is the use of private property as we have function to achieve same thing. In which case I really need private properties Thanks and Regards, ChatanYA Agrawal ...Show All

  • SQL Server Records not updating in Script Component

    I am seeing a strange behavior in a script component that I can't figure out. Basically, there is a field in my script that checks to see if a string field is length of 1. If it is, it updates the field with some value. The strange behavior is that it picks up some of the rows but not others. If Row.FieldValue.Length = 1 Then Row.FieldValue= "Some Value" End If I've tried variations such as: If left(Row.FieldValue.,1) = "-" Then Row.FieldValue= "Some Value" End If But I get the same results. Any Ideas You could fire some debug iformation to help you. Something like this maybe: Me.ComponentMetadata.FireInformat ...Show All

  • Microsoft ISV Community Center Forums Userform Controls

    I have created a data request form for the company in Excel. The form has quite a lot going on (e.g. frames, option buttons, tick boxes etc). I've created all the necessary code and event handlers so that the form behaves as it should. In an attempt to record the user's input, I've then gone on and written a bit of code, which executes when the user clicks OK after completing the form. This bit of code loops through each control on the form and, depending on the control type, writes its caption or value to a blank spreadsheet. The issue I'm having is the order in which it loops through the controls. The tab order for the whole form, including that within frames, is spot on, yet this bit of code loops through some of the controls in ...Show All

  • .NET Development Whats up with the EventLog class?

    I am trying to iterate through the EventLog, here is an example: EventLog appLog = new EventLog("Application"); foreach(EventLogEntry entry in appLog.Entries) { } First error I get is that no overloaded EventLog type accepts 1 string parameter. So I try all of the different overloaded constructors (stringName), (stringName, machineName), (stringName, machineName, sourceName), but all of them give me the same error. So I create the class without using an overloaded constructor, but I still get this error: EventLog does not contain a definition for "Entries". It is documented, it is in intellisense. I have tried it on several computers with the same outcome. What am I missing Have you got another class is ...Show All

  • .NET Development Error when running DirectX app in VB.Net

    I installed the latest version of DirectX SDK...I am using VS2005 (VB.Net) and is working through a tutorial using directX...However, whenever I run the tutorial I get the following error message: LoaderLock was detected Message: DLL 'C:\WINDOWS\assembly\GAC\Microsoft.DirectX.Direct3D\1.0.900.0__31bf3856ad364e35\Microsoft.DirectX.Direct3D.dll' is attempting managed execution inside OS Loader lock. Do not attempt to run managed code inside a DllMain or image initialization function since doing so can cause the application to hang. Any ideas how to correct this Hi Christie A Loader lock is one of the Managed Debugging Assistants (MDAs) that were added to VS2005 to help find hard to debug runtime issues. There is code in all M ...Show All

  • Connected Services Framework Security Toekn Configuration in Manifest File

    I have a problem with manifest configuration file.................. 1. I want the client to call Integrated Windows Authentication WS throught CSF. 2. I config manifest file as below to use Persona as secondary credential as below: < Participant timeout = " 30 " role = " Service " inChannelResponse = " true " type = " WebService " > < ParticipantName > HelloWorldParticipant </ ParticipantName > < ParticipantID > HelloWorldParticipant </ ParticipantID > < ParticipantUrl > http://localhost/HelloWorldService/Service.asmx </ ParticipantUrl > < PolicyDocument > < Reference > ServiceParticipantPolicy </ Reference > < Include ...Show All

  • Visual Studio Team System Test Run configuration editor crashes if the solution contains biztalk 2006 projects

    Hello all, I am not sure if this is exactly the right place to ask this, but I have not found anywhere better :) I have been trying to get code coverage to on some projects in my solution, but every time I open the test run configuration manager and select code coverage, the configuration manager disappears. This is easy to recreate if you have biztalk installed.  Create a project, Create a test project in the same solution.  Open the test run configuration file. select code coverage.  At this point it displays fine.  Close the configuration editor.   Add a biztalk project.  Open the test run configuration file. Select code coverage.  The test run configuration fil ...Show All

  • Software Development for Windows Vista What happened to the HelpDeskSupport sample app in .NET RC1 and WinWF CTP5?

    Dear all, The HelpDeskSupport sample was in the SDK up until Beta 2.2, but it seems to have vanished. It looks like it exists on the web, but the links to the source code from the documentation are broken. I used it to obtain classes for "simple" communication between asp.net and a state machine workflow. This seemed to work ok, so I didn't look into it to any degree, but under RC1, using manual scheduling, it crashes because the communication interface uses a class global static to keep track of the DataPipeList and this does not persist across re-starts. The idea of a class that abstracts to data pipes with defined message formats is a good one, although the implementation of it here is a bit clumsy. Is there a samp ...Show All

©2008 Software Development Network