Programmatically View And/or Modify The Permission For An Existing Share?
Nov 2, 2011
I'm looking for a way to programmatically view and/or modify the permission for an existing share. I'm speaking of SHARE PERMISSION, not NTFS PERMISSION, I know how to view/modify ntfs permission.
View 2 Replies
ADVERTISEMENT
Jun 11, 2011
I have the code to create a folder, does anyone have the code to share the folder and set the permission for everyone to have full control?
View 1 Replies
Jan 25, 2009
I want to check the Registry Permission of Subkey programmatically.Whether the Subkey has Read permission,Write Permssion, Delete Permssion.
View 1 Replies
Feb 7, 2011
I have created a folder in DotNetNuke programmatically on the root portal directory. I just want to assign permissions to it only one time, for example I want to make it read only for authenticated users. Any advice on how to accomplish this using C# or VB.NEt?
View 1 Replies
Sep 30, 2010
I have the following code works fine in Windows 2000, after i moved to Windows Server 2003, it shows "Permission denied"...
View 1 Replies
Mar 30, 2010
I have Client-Server environment and developed a project for Client-Server.I need to share a folder of my Server machine programmatically using VB.NET
View 2 Replies
Oct 24, 2011
In the same class I have
Dim WithEvents YMDChart As Chart
Dim WithEvents YMDChartArea As ChartArea
Then:
Public Sub PlotYMD() handles ButtonPlot.click
YMDChart = New Chart
[Code]...
But here at line 5 I have an error saying that I am not refering to an existing instance whereas I am.If think it is because at this step the YMDChart is dead even if it is present on my form. I have tried with the declaration "Static" but it is only possible within a method and is incompatible with "with event".
View 3 Replies
Sep 21, 2009
I've seen this great example of serial communication in VB.NET[URL]..I try to use it in a project I am working on but somethings are not clear to me.1: Now the send and received data is shown in one RichTextBox but I would like to split this into two RichTextBoxes (RtbSend and RtbReceived).It is unclear to me how and were data is assigned to the RichTextBox?
2. the received data is shown in the Richtextbox as one long line, I would like to get a new line for every send message.So for example: I I send "test" four times, I would like to see:The example describes that "comPort_DataReceived" is executed when data is waiting in the buffer. Where can I see the eventhandler responsible for this? How does it know data is waiting?The problem is this kind of coding is a bit to difficult for me. I want to understand the code before I implement it into my project. I understand most of the code but this is unclear to me.
View 10 Replies
Apr 3, 2009
When the registry subkey value of "Compact Check Count" Dword reaches 100,Outlook Express starts posting nag screen each time you close it asking if you want to compact all your emails The Following snippet Gets the current value of the subkey
Imports Microsoft.Win32.Registry
'Get Path of dword
Public Class Form1
Dim keyvalue As String
[code]....
View 2 Replies
Dec 18, 2009
I want to modify the third column of an existing excel file. The problem with below code is a new file is prduced with the new values in Column C and erases all other values in the orginal file. I want to update the orginal file with the new values.
Public oExcel As Excel.Application
Public oBook As Excel.Workbook
Public oSheet As Excel.Worksheet
[Code]....
View 4 Replies
Sep 10, 2009
We are translating UI of one VB6 application designed in English (US) into Chinese Language which contains API's, we need to know how to use the Unicode (Wide) versions of used API for new (Chinese) Language and how can we find is there any wide version exist for that used API and how to modify existing API with wide API.
View 1 Replies
Feb 4, 2012
is there a way to programmatically return who is using a particular file within a network share??
View 4 Replies
Dec 28, 2010
I am working in visual studio with a datagridview that is bound to a mysql database via the .net mysql connector. In my vb app I have some text fields that provide the necessary fields for building the connection string which I have defined as:
[Code]...
View 2 Replies
Jun 22, 2010
we have several applications in Vb.Net using the built in log system (My.Log) to write log information. Until now this system was configured by the application.config file before execution but now we want to let the user to choose some options.
Is there a way that does not requires to parse the XML file and process it? Is there available something like My.Settings that will do the dirty job done?
An example would be to be able to modify the DefaultSwitch value from Verbose to Warning or changing a property of the FileLog like the maxFiles attribute:
<switches>
<add name="DefaultSwitch" value="Verbose" />
</switches>
<sharedListeners>
[Code]....
View 1 Replies
May 28, 2012
I would like to create a program that will query all security permission to a given registry path. I attached the image so you have overview. I'm new to VB.Net 1/10 to rate my skill here. This will all the output I will put the output in a listbox or list view.
View 1 Replies
Oct 25, 2011
I want to programmatically change ACL for all the subdirectories into a containing one. Specially when ACL of a particolar user is found I want to duplicate that ACL, change the security identifier and add the rule.
Look at this code:
cDirectoryInfo = New DirectoryInfo(strPath)
cDirectorySecurity = cDirectoryInfo.GetAccessControl()
cAuthorizationRuleCollection = cDirectorySecurity.GetAccessRules(True, True,
[Code]....
View 5 Replies
Oct 4, 2007
I am developing desktop applications using .NET 1.0,1.1 thru VS 2002. I need your help. I want to view/modify file metadata like Author, Title, Company, etc. that file may be a txt / doc / exe / xml / html / pdf any format... I found an example for this in CodeProject site. In that project they give dsofile.dll and source code for viewing/modifying file metadata. I tried to register that dll using regsvr32.exe (regsvr32 dsofile.dll). But it couldn't be registered. even i tried to download setup file from microsoft site but it was not found. Please help me to view/modify file metadata info.
View 9 Replies
Mar 15, 2010
assist me to create a form in which i need to show the documets like "*.doc,*.xls,*.txt,*.pdf" which is in network share folder
View 1 Replies
Nov 18, 2009
My application using Ms Access DB. when i connect to DB from client machine it show error at conn.open. the error was "you need permission to view its data".If I login to the server, it works perfectly.
[code]...
Is there any way to access the DB from code without server login?
View 5 Replies
Jul 8, 2009
In visual basic how do you create a DataGridView Programmatically,for example i want to display 5 columns from my items table in sql server to a datagridview i just created ..
View 4 Replies
Jun 12, 2011
I have a program that gets some information from the user and updates the database.I also have two DataGridView, OpenOrders and ItemsInOrder When the user click on a cell in the OpenOrders a CellChange event is triggered and it updates the ItemsInOrder grid view. Now after I update the quantity of a product i want to cause that CellChange event to trigger again in order to refresh the ItemsInOrder grid view.
View 7 Replies
Apr 3, 2009
My.Computer.FileSystem.DeleteDirectory("folder location here", FileIO.DeleteDirectoryOption.DeleteAllContents)
I created a program which was deleting a particular directory for me. The program was compiled and working. Today I run the same program...did not do any system updates and now it won't delete my specified directory. I ran tests to make sure the directory is there when testing...I keep getting access/permission errors.
I rebooted system, ran my application...still gave me error. I turned off Windows Defender...still got error. If I manually delete the directory...no problem.
Is there a way to get system permission to delete the directory? I am being given an 'access denied' error...I do not have permission. I tried running my application as administrator...no good. - VB 2008 Express - VISTA OS
View 5 Replies
Nov 11, 2010
I need to make a program in vb that takes a 1 page existing pdf that i specify and inserts that into another existing pdf that i specify.
View 4 Replies
Mar 4, 2010
In my web application we have many users. I want to set permission for each user. In our windows application we used Database to store the Permission(Insert,Modify,delete and View). In web application can anybody tell me about where to store the permission. Somebody told that if we use database it will take so much time? In the case of XML it is easy and not taking much time. But if the client set permission for number of users,then it will create problem?.
(Permission means in case of "Category" page which user can view the Category page,which user can edit information about category,which user can delete information of category,which user can add new category)
View 2 Replies
Feb 28, 2012
Modifying a registry key we could 'write-protect' our USBs, and I wanted to make a program that would do such but I am getting a permission problem in adding a registry key to the local machine. My development machine is Windows 7 Ultimate 64 bit but I would want it that it will be able to run on other OS like XP and 32 bits. My thought is that I will use autorun and run my program so that upon insertion it will become 'write-protected' and be able to re-enable it also using the program.
View 2 Replies
Jan 12, 2010
I use this code to share folder:
Public Sub Share()
Dim managementClass As New ManagementClass("Win32_Share")
Dim inParams As ManagementBaseObject = managementClass.GetMethodParameters("Create")
[code].....
View 1 Replies
Feb 3, 2010
I was thinking of a function that returns boolean and using remove at.. but maybe removing all and only adding the ones have permission too? [code]But I have 15 pages and want to loop through these.
View 2 Replies
Mar 17, 2010
I am using Caspol.exe to install a custom Permission set and add Code Groups for my .Net 2.0 Windows Application.
I have created a Console Application that uses caspol.exe to add Permission Set and Code Groups. I first install the Permission Set and if I do not get an error, I continue to install the Code Groups
Now sometimes I need to add a new Code Group to the client machine, so I make the changes to the console app and it is executed on the client machine. If the client machine already has the Permission Set installed, it returns an error and stops the further processing.
So, I want to know if I can check whether a custom Permission Set is already added or not?
View 5 Replies
Jul 27, 2009
VB.NET application which allows user to split a file in smaller files. However the stand alone executable of the application,had a permission problem using filestream to read a file without an OutOfMemory exception, while selecting to split locatein certain directories like "C:".To solve the problem i checked My Project window and the "Security" tab, and i tried checking the checkbox: "Enable ClickOnce Security Setting" and selecting "fulltrust application". This added to my app.manifest these lines of code:
<applicationRequestMinimum>
<defaultAssemblyRequest permissionSetReference="Custom" />
<PermissionSet class="System.Security.PermissionSet" version="1" Unrestricted="true"
[code].....
View 2 Replies
Jul 28, 2009
I'm writing an application in which a user can add, change and delete members from a list of members, and the adding and changing is done in a dialog box with some input fields.The problem is that when the user presses the OK button it should test whether some combobox is still empty, since this will otherwise return nothing and that will create an error somewhere else in the program. I do this within the OK_Button_Click event of the dialog box by testing whether the selectedItem is equal to nothing, if not it calls me.close, but if it is equal to nothing it displays a messagebox indicating that the user should still pick something from that combobox.Now the problem: when the OK button is clicked in the messagebox the dialog box also closes, even though the me.close isn't executed. [code]
View 2 Replies