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

Software Development Network >> Windows Vista

Windows Vista

New Question

Test case 15: installing shared dll
Maximum desktop size
ICredentialProvider
How to use rules for xoml only workflows which use instance properties?
WF lab4: event cannot be delivered
CreateFileMapping
C# send email with digital signature and encryption by using smartcard
"waiting for status update" indexing
Outlook 2007 On Vista Crashes When Calendar Reminder Pops Up
enable XP themes for a rehosted designer

Top Answerers

Herru Perdana
ParkerJ21
Camey
ChitownDotNet
kschuler
Vaish
pugs
Edijs
Kunal Sharma
m0nkeyforce
Topix: Andrew Lloyd Webber
Only Title

Answer Questions

  • Sqnyy Passing Activity Properties between Activities in different States

    Hello I have created a custom activity, that stores a string in a property at the end of its execution. I want another activity in another state to be able to access this property. The first activity sets the string but the second activity gets a null value when trying to retrieve the string. Is it possible for activities in different states to access each others properties and if so how I have tried attached properties etc... V Because of spawned contexts, for more information go here , it is not possible to directly access a property value on an activity in another state. You will need to bind each property to a workflow level variable. ...Show All

  • Grotius Windows Vista - Process.GetProcessesByName doesn't work

    Hi, This code is written in c#.net windows application. I am trying to get all the processes by name using Process.GetProcessesByName("Exe Name") and for some reason this doesn't work in Windows Vista, does anyone have any idea     Thats the issue, I am running it from the local machine. It works under xp and it works under Vista if I turn off UAC, but not if UAC is enabled. I get the following exception for a similar code: Process[]arrProcess=Process.GetProcesses(strMachineName); System.InvalidOperationException:Cannot open Service Control Manager on computer xyz. This operation might require other previliges. ---> System.ComponentMode ...Show All

  • Camey [BUG] Vista doesn't start application called "install" w/o being elevated.

    Hi, I just encountered this really strange behaviour, which is definitely a bug in Vista. Consider the following situation. You're logged in as an administrator account. Start a CLI shell of your choice, start it normally, so that it's running non-elevated. Now consider a console application called install.exe. It's neither a GUI application, nor is it an installer application in the Windows sense. It's just called install.exe. In my case it's part of GNU coreutils and it's called install because it's usual task is to install software on the system. However, it's perfectly valid to call install as normal user and use it to install stuff into a subdirectory on which you have permissions. This is what happens when running under Cygwin (proce ...Show All

  • kayki Initializing local services from App.Config

    I've seen plenty of examples on how to load core services (persistence, tracking, etc.) using entries in the App.Config. Is it also possible to load your own local services using App.Config entries If so, is there an example of how to do this somewhere Thanks. Bruce Bukovics Author of .NET 2.0 Interoperability Recipes http://www.apress.com/book/bookDisplay.html bID=10116 here is an example:   < configuration >   < configSections > < section name = " WorkflowRuntimeConfig " type = " System.Workflow.Runtime.Configuration.WorkflowRuntimeSection, System.Workflow.Runtime, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 " /> < section name = " ...Show All

  • bboylen Determine NTFS Partition Version

    Is there a way to determine if a particular NTFS partition is NTFS3 (NT4, 2000) or NTFS5 (XP+) http://www.windowsnetworking.com/kbase/WindowsTips/WindowsXP/AdminTips/TroubleShooting/WhichversionofNTFSamIrunning.html ...Show All

  • georgeob Adding missing claims when creating Response

    Hi, in the STS example how can I add missing claims to the response token once I validated username and password for example I overridden the UserNamePasswordValidator class with my validator that checks for credentials and retrieves missing claims, but how can I insert these claims in the response token Should I do it when the response is created RSTR rstr = new RTSR(rst); Thanks, Claudio you can add claims that get returned in GetTokenAttributes() you can call AuthorizationContext .CreateDefaultAuthorizationContext().Id to get the username, to help pick which claim values to use. ...Show All

  • Eric Delaune WMI Win32_NetworkAdapterConfiguration EnableStatic call fails with error 0x80070005

    Here is the code I am using: strComputer = "." Set objWMIService = GetObject( "winmgmts:\\" & strComputer & "\root\cimv2" ) Set colNetAdapters = objWMIService.ExecQuery ( "Select * from Win32_NetworkAdapterConfiguration where IPEnabled=TRUE" ) strIPAddress = Array ( "192.168.0.1" ) strSubnetMask = Array ( "255.255.255.0" ) For Each objNetAdapter in colNetAdapters WScript.Echo objNetAdapter.Caption If Left (objNetAdapter.Description, 15) = "Realtek RTL8150" Then errEnable = objNetAdapter.EnableStatic(strIPAddress, strSubnetMask) If errEnable = 0 Then WScript.Echo "The IP address has been changed." ...Show All

  • ron nash Failed custom WorkflowPersistenceService

    I'm currently working on my own custom WorkflowPersistenceService. However, when I created a simple ASP.Net application, I encounter the following exception: Server Error in '/SampleASPForm' Application. No you don't, but you need tp specify: <add type = "someclassname,assemblyname,version,culture,publickeytoken" ... You need to fully qualify the type name of you service - someclassname,assemblyname,version,culture,publickeytoken Well, for me to put the full type, including publickeytoken, I have to sign the assembly, right I did (sign) the assembly, and now it works. Thanks. It means I have to sign the assembly Because I'm not planning on doing that, since this dll w ...Show All

  • Vincent-Philippe Retrieving External Service from Activity Validator

    Hi All, I have registered a validator with my custom WF activity. On the overriden method 'Validate', i need to use some external service to perfrom the actual validation. This service is registered with the runtime via 'runtime.AddService()'. The ValidationManager that is passed as part of Validate has a method GetService. However when I invoke this method to get hold of my external service, I get null as the return value. Am I missing something here ..... Rgds Giri Since validation is done at design time as well, a validator shouldn't rely on the runtime. And ValidationManager class does not hold a reference to the runtime, as far as I know. Hi Giri - Validation happens dur ...Show All

  • smp rpcndr.lib not shipped with Platform SDK

    My COM app requires rpcndr.lib which does not appear to have been shipped with the Windows SDK - I have to revert to the one that ships with VS.NET 2005.... The Windows SDK no longer ships with rpcndr.lib. Try linking against rpcrt4.lib , it replaces the functionality of rpcndr.lib. Thanks - that cured it. Incidentally the project linking with the offending file was a Proxy Stub one autocreated by VS .NET! I forgot to mention the SDK version. It is Sept CTP (5728.0.4) available from the Vista: Get The Beta download site. I can confirm that. I can't imagine what they are doing with the releases, but there is always missin ...Show All

  • DotNetFireball No Disk 5 on MSDN Vista ISO image disk - disk 3707

    I have just tried to install Vista Ultimate onto my laptop using my Windows Vista Disk from MSDN. I burnt 4 disk's from the iso image dvd(only 4 available on the dvd) onto cd. After the installation copied 98% of the files from the 4 disks it then asked me to insert the 5th disk! I was a bit flabbergasted. Has anyone heard of this NO! coz they're F**king useless pieces of useless ***!... i uninstalled my whole reformatted my system manually to install vista... then they fuc*in bugger it up! and they can't even be arsed to add a 20mb .iso on the site! how useless and fecking mindless and stupid is that!, i hope they all rot in hell! You can download Vista disk 5 (.iso) on the MSDN download site. Its about 20mb. Not su ...Show All

  • daraneko UAC error: the requested operation requires elevation

    Hello, I have a program which contains the following in it's manifest file: < xml version="1.0" encoding="utf-8" > <asmv1:assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance "> <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2"> <security> <requestedPrivileges> <requestedExecutionLevel level="requireAdministrator" uiAccess="false"/> </requestedPrivileges> </security> </trustInfo> </asmv1:assembly> When I build the project and run it I get the UAC dialog. When I click the allow button window ...Show All

  • dntino Kim's site login

    Hi, Has anyone tryed to login to Kim's site ( www.identityblog.com ) useing a InfoCard I have but get no confomation, should I get some On login to the sandbox I get an error, why is this Thanks Luke Hi, I am trying to get a simple web site to use CardSpace, html and javascript are my favourites at the moment, so it would be cool to use these two, a little too ambitous for me I think, as everything seems not to work me :), any help with this I'm not the hottest at javascipt or html as it is, so I need all the help I can. Luke ok, that must be it then, only downloaded everything last week, is there any site I can log into Or do I just have to wa ...Show All

  • Mohammed Aquil Does anybody know where I can find largeint.lib ?

    Hi I have C++ Visual Studio 2005 and I can`t build my project becouse compiler call error: I can`t find largeint.lib I installed Microsoft Platform SDK R2 and I made XP32_DEBUG in BaseClasses of it (I work under windows xp 32-bit). I looked all resources for largeint.lib but it returned nothing. Please help me ! In the Project you are building, remove largeint.lib from Properties/Configuration Properties/Linker/Input/Additional Dependencies. The later Platform SDK's include VS2003/2005 project files. See: Microsoft Windows Server 2003 R2 Platform SDK or later. Where do you delete largeint.lib From which build I don't manage to compile dsnetwork sample because ...Show All

  • lokia A namespace does not directly contain members such as fields or methods

    I get the error... "A namespace does not directly contain members such as fields or methods" frequently when I work on .xoml files. I've had to recreate a workflow about 10 times in the last 2 weeks because they keep getting corrupted somehow. Sometimes I can fix the problem by examining the .xoml file but sometimes I can't figure out what's wrong. Anyone out there have similar issues Do you know of a way to prevent having to recreate a workflow from scratch Which build are you using You really should be working with the latest build of Windows Workflow Foundation (WF) which is RC5. Go to this post for links to everything you need to download. Dear TOM LAKE, I am also facing this problem. I am usi ...Show All

535455565758596061626364656667686970

©2008 Software Development Network

powered by phorum