Cannot Get The Group "comment" With WindowsIdentity.GetCurrent().Groups(0)
Mar 28, 2012
I am converting VC++ to VB.NET and I cannot find a way to get the group "comment" in .NET. I can get the list of groups which the user belongs to with:
Principal.WindowsIdentity.GetCurrent().Groups
However the group "comment" does not seem available. The VC++ uses Win32 NetGroupGetInfo() to get the info.
View 3 Replies
ADVERTISEMENT
Jul 22, 2009
I want to divide the content in my application to groups each group has its own rectangle border with the group name located at the top border, i've seen it before and i'm not sure what is the correct name of this control, anyone knows what I'm talking about ? EDIT: Ok, I found the Groupbox Control but how do i use it? should i just drag other controls inside it or i should add controls directly into it?
View 2 Replies
Sep 5, 2009
<edit> I think He has changed His mind. Please see the 3rd post in this thread instead. </edit> JohnGrove has started an msdn YAHOO group for casual discussions and anything else you might want to chat about.>> Feel free to join in [URL] It may take some of the casual chat away from these Vb.Net forums so that forum members can answer programming questions better.
View 2 Replies
Apr 30, 2012
I am using System.DirectoryServices.AccountManagement to try to add a local account to the local administrators group with the following code but am getting the error below on the group.Members.Add(usr) line. Both usr and group are created as objects and if I create a Test group, I can add the user to the Test group. I know the group object is the local administrators group and not the domain group because i changed the description on the local administratrors group and the group object is correct so it appears to be something specific to the local administrators group.
View 6 Replies
May 19, 2009
I'm in a ASP.NET application using Windows Authentication.I'm using HttpContext.Current.User.Identity.Name to get the username of the currently authenticated user, which gets me a username in the format DOMAINUSERNAME. This is working fine.Is there an easy way to convert this to a display name (e.g. "Richard Gadsden") like the one that appears on the top of my start menu in XP?If I have to, I guess I can go through System.DirectoryServices and query into ADSI, but surely there's an easier way?
View 2 Replies
Aug 26, 2010
I am using WindowsIdentity and WindowsPrincipal classes. Using IsInRole(String parameter) method returns with an error : "The trust relationship between this workstation and the primary domain failed."
The code works fine in different domain. I just copied the project and run in my machine, it results in error.
View 8 Replies
Oct 20, 2009
I have a web-app that will reside on a production server where I want to get the user's logged in computer name, circa DOMAINNAME/USERNAME Many people have told me that I must use Impersonation/Delegation in order to get this, but no details beyond that have been provided. Originally, my tests used:
[Code]...
View 1 Replies
Jun 26, 2009
We're in a strange situation with a legacy winforms VB.NET 1.1 application using ASMX web services. Trying to send a user Token from a WindowsIdentity object as a parameter to a WebMethod. I will be adding a 'HACK: comment. System.Security.Principal.WindowsIdentity.GetCurrent().Token
The token is of type IntPtr, the first problem is the WSDL being generated doesn't support IntPtr with the error of 'unsupported type'I'm aware this is a big WTF question and sounds insecure, so any simple helpful alternatives are welcome but there are a lot of constraints on how we can change this system, including complications with the hosting environment. So I would just like to get our piece of data over to the web service to save a lot of other headaches.
[Code]...
View 1 Replies
May 3, 2011
I'm trying to match up a specific group name and see if it exists for the currently logged in user using Active Directory roles. If the Group Name exists for the Current User, I want that group name to be displayed in a drop down list. Example: If current user is in BIG Group, display BIG in drop down list.Problem: All I am getting is SIDs and I'm not able to get anything to match up to the group name and nothing will show up in the drop down list.I also get the following Error:Error: Object variable or WIth block variable not set.How do I fix this?? here is the code I am using:
Private Sub GetMarketingCompanies()
' code to populate marketing company drop down list based on the current logged in users active directory group that
[code].....
View 3 Replies
Jan 31, 2011
Enumerate if an Active Directory group's member is user or another group
View 1 Replies
Jul 18, 2011
I'm running an application under an account that is not the account logged-on to the PC.
Within the application I need check if the logged-on user is a member of the Administrators group. Below is the code I'm using. From what I've read, WindowsIdentity.GetCurrent() should return an object associated with the logged-on user. It doesn't, it returns the same information as the call to System.Threading.Thread.CurrentPrincipal. Which is the information associated to the ID running the application, not the logged-on user.
[Code]...
View 8 Replies
Jan 1, 2011
I am writing an application and I do not know how to reference a group of controls inside a group box. I will include the code I have written so far and a picture with a detailed explanation as to what I am trying to do. Feel free to comment on any discrepancies that you may notice in my code.
Code:
Public Class Form1
' The following class-level constants are used
' to calculate the price of the model
Const decCOUPE As Decimal = 18000
[code].....
View 3 Replies
Sep 25, 2011
I want to remove a group (include all items in this group) in ListView, but unsuccessful, the code is below, why?
ListView1.Groups("GroupName").Items.Clear()
ListView1.Groups.Remove(ListView1.Groups("GroupName"))
View 4 Replies
Apr 6, 2011
anyone have some quick code on how to do this?
wmi is not a option.
View 1 Replies
Jun 22, 2010
What is comment in VB.Net and how to comment.
View 4 Replies
May 23, 2012
I found something weird in VB2010 a few minutes ago. The problem is making a variable called "rem". I searched on Google and found that "REM" is a comment, similar to single apostrophe '. Why is this the current behavior? Why not stick to ' only? Sincerely yours,
[Code]...
View 5 Replies
Oct 22, 2010
If we need to comment more than one line we'll use the following syntax in C#.NET.
/* this.comboBox1 = new System.Windows.Forms.ComboBox();
this.button1 = new System.Windows.Forms.Button();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.textBox1 = new System.Windows.Forms.TextBox();
[code]....
View 3 Replies
Feb 18, 2006
nice east one, how can i do a multiline comment ?
View 4 Replies
Jul 25, 2006
Is there a multiline comment in VB.NET besides '?
View 11 Replies
Aug 10, 2009
How do you retrieve a comment from an XMLElement using Linq in VB? For example:
<MyXML>
<event type="MyEvent" uid="3">
<start>2009-02-01T12:00:00</start>
[code].....
View 1 Replies
Nov 17, 2010
I am developing an application using vb.net which generates an xml file from Datagridview contents at the end. the datasource for DGVW is a datatable and i generate the xml file using method[code]....
View 2 Replies
Mar 31, 2009
I have an XML document that I am deserializing (VB .NET 3.5 Framework), changing some values, and the serializing again. The original document has several XML Comments in it. When I go through all the deserialize/serialize all of the comments are lost. Is there a way to preserve the comments? If not, is there a way to add comments on serialization without having to walk through with the writer and manually add all of the comments back in the appropriate place?
View 1 Replies
Jun 16, 2011
When reading and writing data to an XML file, in XML code, through a VB application, how does one go about commenting out a specific XML code line? From what I've gathered the original <!-- and --> tags aren't compatible. So what would be the VB alternative? Or is it just not possible to comment out a line of XML code using XML code through VB?
View 5 Replies
Mar 25, 2009
I have read that it is possible, but how do I use them in VS2008? I would like to start commenting class's commands and properties, but I can't find how to.[URL]
View 1 Replies
Apr 17, 2010
I would like to know how to show a customized comment everytime i declare a class, function, or sub routine. I just dont want to copy and paste the summary comments everytime i declare a class, function, or sub routine.
'''<summary>
'''Class Name:
'''Programmer:
'''Description:
[code]....
View 7 Replies
Apr 24, 2010
Im working on a comment control. I mean a control, that has an input area for text and images and a line or an arrow for pointing to something. It should a bit look like the comment control in Adobe Acrobat.
My first idea is to put four standard controls together:
1) a RichTextBox to hold text and images
2) a Panel to hold the RichTextBox and some GrabRectangles around it (the Panel needs to be a bit greater than the RTB for the GrabRectangles)
3) a little Panel (3x3 or 4x4 Pixel) to hold another GrabRectangle for placing and resizing the line (the arrow)
4) a LineShape for pointing (its startpoint on the RTB and endpoint on the little Panel)
I have added a drawing.My question is: what can I use to put these controls together? Another Panel would probably do a good job. But it would cover a lot of additional area around the contained controls and hide other controls, so that they dont get mouse clicks.
View 4 Replies
Feb 4, 2010
Does anyone know why there's no block comment capability in VB .NET? (Unless there really is
View 4 Replies
Jul 13, 2009
I saw the video from microsoft teaching the techique of programming and found out they can comment multiple line and the same time.
View 2 Replies
May 18, 2010
What is the Microsoft Standard for Code Commenting
1. In case of Class 'Class header Comments
2. Function Comments
3. Subroutine Comments
There are different ways to comments like XML Documentation using ///
CODE:
Which Stnd should follow? May be something else other than above?
View 1 Replies
Dec 15, 2009
i know in java and other nice languages it's possible to comment out a bunch of lines at the same time. is it possible to do this in vb.net?
View 5 Replies