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

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

John_123456789

Member List

grossi
Vikas Khandpur
Mike Morine
mdelatonow
Nilesh D
Morias
DDvorak
Helder Santos
msumption
James Hicks
adrianf
TomDotNet
wissgtbob
cbenesh
Tom_g35
PhilipWagenaar
JimTheFoot
jenright
kashif afzaal
Toddley
Only Title

John_123456789's Q&A profile

  • Software Development for Windows Vista Deployment, Load balancing, Instancing

    I've been reading the "Presenting WWF" book, and can't seem to get my head around the instancing and persistence model for a scalable, enterprise system. The book talks about how Sharepoint uses WWF persistence and events to essentially run workflows across a web farm. My question is how much of this is application code I have to write, and how much is in the WWF runtime For example, if I have a long running workflow on server A, and it is dehydrated, can it be re-hydrated on server B to continue running automatically, or does my app code need to manually rehydrate the specific instance that was dehydrated on server A ...Show All

  • Visual Studio 2008 (Pre-release) Feb 2006 CTP what happened to presentation framework.dll?

    Hi, I was just trying to get the Feb 2006 CTP to work on my Win XP SP2 PC. I did a clean uninstall of all previous CTP versions. Also ran the cleanup msi tool given on the CTP download page. After correcting my XAML pages according to the breaking changes done in FEB CTP like changing the XML namespaces in top, I am still unable to open my XAML pages. It keeps trying to load the file forever in IE. Curious I checked with fuslogvw and it seems that there is a failed bind. Find it next... ========================================================== *** Assembly Binder Log Entry (22/03/2006 @ 05:23:04) *** The operation failed. Bind result: hr = ...Show All

  • Smart Device Development Search file in all folders

    Hi,    How to search a particular file (for example .doc) in all the folders in ppc using compact framework. Thank in advance. Hi,     That's Correct. In the Desktop Application We can specify C: or D: in Specific. How would we give the input for the Directory.(not the folder name). Regards, Bala. ...Show All

  • Visual Studio CrystalReport (Could not load Assembly) Visual Studio 2005

    I have an application in Visual Studio 2005, the crystal report gives the following error 'Could not load file or assembly, "CrystalDecisions.Windows.Forms" Version = 10.2, Culture=neutral, PublicKeyToken = 692.... or one of its dependencies. The system cannot find the file specified.' I have to deploy this app and I need help. It runs on the development machine without error. But on different machine then the error will come and the report would not display. the following are the reference that are added. CrystalDecisions.CrystalReports.Engine; CrystalDecisions.Enterprise.Framework; CrystalDecisions.Enterprise.I ...Show All

  • Visual C# Should I Programming Media Service use C# 2005?

    I Searched the Microsoft's Website for Programming the Media Service in C#, but can't find any thing about it. I'm looking for the technique about Distribute Media Service , Media Service Playlist Dynamic Create. I have downloaded the WMSSDK package, it is writted by VC++, so I wanna someone show me How to do it, Or show me some books/E-books about it. ----------------------------------------------------------------------------------- PS: I read <Microsoft Windows Meida Resource Kit> Book. ...Show All

  • Visual Studio Team System Team Project Creation failed because of some user account problems

    I used a single-server mode and encountered the following error: Error TF30004: The New Team Project Wizard encountered an unexpected error while initializing the Microsoft.ProjectCreationWizard.Reporting plug-in. Explanation TF30171: The Microsoft.ProjectCreationWizard.Reporting plug-in used to create the new team project could not be initialized and returned the following error: TF30224: Failed to retrieve projects from the report server. Please check that the Yukon Reporting Web and NT services are running and you have sufficient privileges for creating a project.. User Action Contact your Team Foundation Server administ ...Show All

  • Windows Forms Searching files in directories

    hi.. how do i search files in a directory using file attributes like modified date,file size,create date time using .Net. Regards dhn Here is a self-explaining example: DirectoryInfo directory = new DirectoryInfo("c:\mydirectory"); foreach ( FileInfo file in directory.GetFiles() ) { if ( file.CreationTime.Date.Equals( DateTime.Now.Date ) { // Found a file that was created today. } } ...Show All

  • Visual Studio Team System Custom UI to when double clicking an Issue in the results pane

    Once FxCop is finished running all the rules, i'd like to be able to show a custom UI when i double click the Issue created by my custom rule.  I noticed in the FxCopUI.dll there was a CustomAction class, along with an enum of Triggers.  Can these be used to hook the event and show my UI vs the stock FxCop UI Hi John, The CustomActions code is the code we use to show IL when rightclicking a target, further we use it for hooking our test code into fxcop. It is not meant as a general purpose plugin architecture, I would not depend on this functionality as it can be broken or completely gone in any fu ...Show All

  • Visual Studio Express Editions does vc++ express programs require win xp sp2?

    I was just wondering if the users of my program need windows xp sp2 to run my program Dooh... good question. No I think not. But I never tried it. But if I read this: http://msdn2.microsoft.com/en-us/library/ms235435%28en-US%2CVS.80%29.aspx Than I think SP2 is not needed. ...Show All

  • Visual Studio 2008 (Pre-release) How can I use ResourceDictionary for string resources

    I'm looking into how localization is handled in WPF. I would like to write the following: < Button Content = " {StaticResource MyString} " > Windows forms applications used ResourceManager for string tables. This there a way to use ResourceManager or equalivent to load strings from a string table and assign the string to a control in XAML I have found a way to use a ResourceDictionary to hold strings and then merge them into the application's resource dictionary. But i'm wondering if i can use a ResourceManager style string table instead. Thank you, John There is a C ...Show All

  • Visual C# Multithreading in single/multiple AppDomain?

    hi all, would appreciate if some more information is provided on questions below: is it possible to share some data in form of variables or objects across multiple threads running under same process with single appdomain in a scenario where multiple .EXEs running as threads and controlled by another .EXE; to utilise the memory and data objects across multiple .EXEs which approach should be used Public Data transfer object class (i mean an object class which can be serialized) remoting using MarshelByRefObject any other under scenario of multiple appdomains; how to enable sharing of data v ...Show All

  • Visual Studio Visual Studio 2003 Remote Debug of DCOM Server

    I have the feeling I'm doing something stupid but I can't figure out what.  I'm trying to debug the client and server side of a DCOM com object with the client running on one system and the COM server running on another and I'm trying to debug them both from one debugger session. I have a C++ ATL based COM DLL server with DllSurrogate set so I can call it over DCOM and a C++ client program that calls CoCreateInstanceEx to instance up the COM object.  I run the client on 'HostA' and create the COM object on 'HostB'. I've got a drive (Z) mapped on both systems to the same share with the COM DLL project stored on that share (and ...Show All

  • Visual Studio Team System 'Work Items' report is failing in VSTS beta3

    Hi there,      I have installed successfully VSTS beta3 server, few reports inabled but few of them are failing. Like 'Work Items' report is failing with error: 'An error has occurred during report processing. (rsProcessingAborted) Query execution failed for data set 'dsExitCriteriaParam'. (rsErrorExecutingCommand) For more information about this error navigate to the report server on the local server machine, or enable remote errors '   How do I fix it Thanks, Anu We've never been able to solve that error. There are tasks in the system and we reprocessed a number of times. A troubleshooting ...Show All

  • .NET Development Digital Signatures using .NET

    Can you please suggest me a solution for my below requirement. I would like to develop a solution to sign(Electronic signatures) Physician orders for home health services. documents format may be either doc or pdf. This portal will should allow physicians to login and sign the documents online using a digital certificate. I am trying to develop this using WSE 2.0 . My questions 1. Can I use WSE 2.0 for this purpose. 2. I am unable to retrieve certificates from Personal store 3. Can I store all the certifcates on server and allow client to use that to sign documents or is that compulsory to have certificates on clie ...Show All

  • Visual Studio An annoying problem - A site that works locally in VS2005 - doesn't work when copied to the web & IIS 6

    Hi, This is really frustrating. I have a working site when run through VS2005. All previous versions of the site worked. So I publish the site with "Allow this precompiled site to be updatable" unticked. I remove the old site versions files and Copy the new version of the site upto the server. Lots of stuff works , new pages work, however some old unchanged pages no longer work and the error message is: The file '/App_Forms/Reporting.aspx' has not been pre-compiled, and cannot be requested. Now I see the stub file and the file in the bin dir, this is an old file that used to work fine and has had no changes, also it ...Show All

©2008 Software Development Network