Hi... :) Don't mind for late reply. I was searching this, for RND in Rolebase management system. Now, I am working On ADAM + AZMAN for the RoleBase. Whts ur requirement? Some thing like that or Only GroupPolicy. Enjoy!! :rolleyes:
Member 3824736 wrote:
Both are used for groupPolicy editing...
This is not true. Group Policy Management Console(GPMC) shows how group policies are configured on your domains. It allows you to see what policies are applied to what containers and get visual reports of the policies. If you select a policy in GPMC and choose edit, this opens the Group Policy Editor (gpedit). This allows you to create or modify and individual group policy.
Sidh - please move this to a more appropriate forum. This is for WPF/WCF (and possibly CardSpace but that's a bit of a grey area) - and as these don't work with .NET 1.1 then you're out of luck with getting help there.
Deja View - the feeling that you've seen this post before.
My blog | My articles
I doubt the problem is to be found in the code you have provided here. I do not understand why class Two is setting m_sResult when it actually belongs to class One--Bad OO. Can you paste some more code?
Well if a modal MessageBox is open (that is shown in form_load) will of course hang the parent form (yeah the dialog is *modal*). And if I get you right you are publishing your form-object via remoting? You should not do something like this! Better use a static class and event with remoting.
The 'escape characters' are all in the format '\x'. \n is new line... etc. '\\' in a string represents a '\', a single '\' will look like an escape character. So you need to use: \n \r etc instead of \\n \\r. I've never use Regex before but I assume this is right. Hope it helps.
Matthew Butler
You can't group characters in a set, so [^\\r\\n] means any character except '\' or 'r' or '\' or 'n'.
Experience is the sum of all the mistakes you have done.