orangina's Q&A profile
Software Development for Windows Vista release date vista beta 2
Is there any clearancy about the release date of the Vista Beta 2 I have a msdnaa account and i would be happy to know when i will be able to download it.. tnx! There has been no formal date set on the release date. All that we know right now is that we can expect a new drop in feb. Josh http://windowsconnected.com ...Show All
Software Development for Windows Vista changing process access levels/rights
Hey, I'm trying to find some good information (articles, samples, whatever) on changing the access rights of a process. I believe the API methods include, OpenProcess, GetKernelObjectSecurity, GetSecurityDescriptorDacl, GetAclInformation, SetKernelObjectSecurity, etc. I am trying to disable some rights in a process like PROCESS_TERMINATE though I am having trouble finding some good information. Thanks all Luke Hey, I know you can use SubInAcl to see the rights of the process, but are you sure you can deny PROCESS_TERMINATE using it If so, can you show an example please Thanks ahead sternr@gm ...Show All
Visual C++ How to create folders with separated folder names?
Windows enables you to create a new folder and rename it with a separated name like 'Business contacts folder'. How does one create a folder and name it so in visual C++.net So far, I'm creating folders using system("mkdir <directoryname>"). Is there an alternate and more efficient to do this Please forgive me if it sounds amateurish. I'm still a novice programmer. Thanks! Found the answer! I used _mkdir() function instead of the system() variant. U'd have to include all std io first. Anyone with this problem can look up _mkdir() in the msdn library. Its under mkdir functions. Thanks everyon ...Show All
Visual Studio Team System Work Item Type Diff between Import and Export
It is interesting that when you use witimport to import a work item type and then export it using witexport that the files are different. This process fully qualifies field names and adds some fields as well. (<FIELD name="Authorized As" refname="System.AuthorizedAs" type="String" />) I can understand the purpose of adding the <HELPTEXT> sections, but why are additional fields being added Correct. This is a core field which present on every work item type - even if it is not defined in the XML. ...Show All
.NET Development Inherit a class by a class that should be marchal be reference
Hi! I think this is a simple question for those that have been working with remoting for some time. And somehow, I believe the answer will be simply 'NO' . Is it possible to have a class that is marshal by reference and also inherits another class, other than MarshalByRefObject I guess that if that other class inherits MarshalByRefObject, this would do the job. But what if that other class is not mine, let's say... a system class. For instance, can I have a class that inherits the Generic.Dictionary and be marshal by reference a the same time This would be a solution to some cases, where I have access to ...Show All
Visual Studio Microsoft Document Explorer cannot be shown because the specified help collection 'ms-help://MS.MSDNQTR.v80.en' is invalid
I have installed a RC version of VS Team Suite along with full MSDN installation. After completing installation, I'v got " Microsoft Document Explorer cannot be shown because the specified help collection 'ms-help://MS.MSDNQTR.v80.en' is invalid " error when I have tried to access it by doing "Start" -> "All Programs" -> "Microsoft Developer Network" -> "MSDN Library for Visual Studio 2005" When I accessed it from VS 2005, it only have SQL help available. I have tried to reinstall it several time but no luck. Any help would be appreciated. Eric I have the same problem, except tha ...Show All
Visual Studio Team System what permissions i need at the server to create a new project from VSTS client?
I am in Namespace Administrator group but when i try to create a project from my client machine i getthe below stated exception. What can be the problem and possible solution What permission settings i have to make at WSS and RS 04/29/2005 07:16:07.977 | Module: ELeadServiceMediator | URL for eLead web service retrieved as " http://tcs046247.testdom:8080/bisserver/EleadWebService.asmx " from the registration service | Completion time: 0 seconds 04/29/2005 07:16:07.977 | Module: ELeadServiceMediator | eLead web service proxy constructed | Completion time: 0 seconds 04/29/2005 07:16:08.117 | Module: ELeadServiceMediator | Template Informati ...Show All
Visual C++ What changed with Dispose in 2005 RC?
We have a suite of programs currently with Visual Studio 2005 Beta 2, Today I uninstalled Beta 2 and upgraded to the Release Canidate: Using this example code: public ref class PlaybackCtrl : public System::Windows::Forms::UserControl { protected: virtual void Dispose(Boolean disposing) override { if (disposing && components) { components->Dispose(); } __super::Dispose(disposing); } } I end up with errors like: error C2605: 'Dispose' : this method is reserved within a managed class Not quit ...Show All
.NET Development XSLT works in .Net 1.1 but fails in .Net 2.0
We have an application compiled with .Net 1.1. It uses System.Xml.Xsl.XslTransform. the following code works with .Net 1.1 <xsl:copy-of select="$style/ap:OneImage"/> if $style is empty or if $style contains an element. Installing the .Net Framework 2.0 causes the expression to fail when $style is empty with the System.XML error "Expression must evaluate to a node-set". How can this be fixed without putting <xsl:if> tests around all instances of these expressions Please Advise, Michael S. Scherotter Business Solutions Architect Mindjet Corporation Has anyone worked out a solution ...Show All
.NET Development How to run a standalone application independly from any DLL files
I developed an application under Visual Studio C#. However, the EXE file was unable to run in a PC without .Net environment, which is short of those relevant .DLL files. Can I build up a C# application running independently from DLL files Hi, Since Windows 2003 was released. It was bundled with the .net framework (1.1). So I guess microsoft is now bundling its framework into the OS. So this wouldn't be a big issue on deploying .net apps... cheers, Paul June A. Domag ...Show All
.NET Development Problem with Runtime type check
From the example below of what I am trying to do, I have a base class employee and two types of employees, sales and engineering. I create an array of each type of employee. I want to swap the base attributes of the employee when they change jobs. I get a runtime check : An ArrayTypeMismatchException exception is thrown when the system cannot convert the element to the type declared for the array. This may not be the best method of doing this work so I am open to other ideas I have thought about using one array, but I still think I will have problems. Oddly enough it does not have a problem with it if I don't put ref in front -- b ...Show All
Visual Studio Team System I was connected...
I have Team System installed on another computer. I was happily connected to my team foundation server. I tried to create a new project. I got the Microsoft.VisualStudio.ELead.Common.Exceptions.ELeadException which others have been receiving. The hint's on resolving that issue were to log in as TFSservice and try to create a project. I removed my server from the list. Now I cannot reconnect. When I restart VS, the team explorer shows that it is connecting, even though I have no servers listed. When it times out, I get a message box with the text Error in Application. I click OK. Attempt to add a server, none are in my list. I click Add..., t ...Show All
Smart Device Development Compact framework - form control validation problem
I am trying to validate data entry in a control, however if the user clicks the ok button to close the form (form.minimise=false) , I get the validation check, but the form has already closed. I want it to prevent the form from closing if the data is invalid. I have tried the same code under the full .net framework closing the form and it functions exactly as I would expect, by not running the form_closing event as the validation failed. Here is the simple form code I have tried. Can anyone enlighten me or is this a CF bug ///////////////////////////////////////////////////////// using System; using System.Drawing; using System.Coll ...Show All
Windows Forms Insttal problems
Hi ! Sorry for my bad english.... I try to install Taskvision sources.... I've got error on install without error message, i'don't know why it does'nt install.... All requirements are ok on my computer... So why you don't simply zip files Thanks in advance Alex I.T. Developper ::nata1 if you want delete this post... sorry ... afraid not. Also, you haven't said ...Show All
Visual C++ error occur when develop in Visual C++ 6 and compile in Visual Studio 2005
The code wrote in VC++ 6 (no error when compile) but now I have to move them to the Visual Studio 2005 version and try to compile it again it give me the error ==> fatal error LNK1104: cannot open file 'LIBC.lib'. Please help I'm still so new with Microsoft Visual Studio 2005. Are they so much differences. Thanks for your help in advance, Akiwa You need to change all calls to these functions to use the new, safe ones, or turn off the warning, as explained in that link. If you want your code to work in VC6 AND Vc2005 and call the new methods, you need to create a class that wraps this. If you just want to upgrade, you sho ...Show All
