Shared Folder Monitor In Program?

Jun 26, 2011

Can you give me a function or class which have properties?[code]...

View 5 Replies


ADVERTISEMENT

File I/O And Registry :: Shared Folder Monitor In .NET?

Jun 26, 2011

give me a function or class which have properties ?For example:I shared a folder (C:shared)

Dim clsObj as new clsSharedMonitor("C:shared")
'so that I can get its properties like:
clsObj.FullPath() 'Full Path of folder that client are accessing
clsObj.ClientIP() 'IP of computer which access to server

[code].....

View 6 Replies

Start A Folder Monitor Service At Runtime And Pass On The Folder Path To Monitor?

May 27, 2010

I have the following windows service file:

Imports System.ServiceProcess
Imports System.IO
Public Class fswService

[Code].....

2 problems: first, intellisense error saying: 'fswService' is a type and cannot be used as an expression. second, I can not figure out a way to pass on to the service the path of the folder to watch (which is stored at My.Settings.userPath).

View 2 Replies

Public Shared Function(folder In 'Dim Folder As Nvironment?

Aug 6, 2009

if you could see everthing but the thing I'm having trouble with the Public Shared Function(folder in 'Dim folder As nvironment.SpecialFolder' is the problem)

Option Explicit On
Option Strict On
Imports System.IO

[code].....

View 5 Replies

Application To Monitor Folder Within Programs

Sep 15, 2011

I created a vb.net 2008 application to windows 7 with some functions that monitor a folder within "Programs". Folder you created during installation of this application. But every time you launch the software (the exe, after installing the client package) I get UAC and I ask for confirmation. I tried to edit the manifest (with admin user) but it always comes out. I would like to depart immediately launch the EXE application, without uac.

View 5 Replies

Monitor Folder - Open And Edit Files

Feb 24, 2011

I want to be able to monitor a folder, and anytime a file is placed in it (in this case, a .jdf file) I want to edit a string within the file (it's just a text file), then save the file onto a network path and remove it from the hotfolder into a "done" folder.

View 1 Replies

VS 2010 Folder Monitor And File Conversion

May 11, 2012

I'm unsure if this should be in Office Automation or here, but I opted for here because I'm creating a VB.Net program to handle all of the office automation and my questions are a combination of the VB.net portion and some of the VBA formatting. At a high level I receive a file in email, put the attachment in a monitored folder, import the text file to excel, format the excel, and then email the excel file to a list of recipients. [code]Obviously the items above that are not complete are the bulk of the work, but I wanted to get some advice on what some of you think would be the best way to approach something like this. The import and formatting of the file are causing me some problems because I just can't decide what would be the most efficient way to do this. Having a template excel that contains all of the formatting already done for me and attempting to transition the data to this document (no clue if/how I can do this). Is it even feasible? Have the template already created and then import the text file to a new excel file, then transition that data to the excel template?

Something I thought about, in terms of formatting the document, was to record a macro of me doing all of the formatting that I'm going to need and then attempt to convert that macro into my vb.net code, but I'm not sure if that will work. I will need to verify that the text file comes in the EXACT format every time correct?

View 1 Replies

VS 2008 Get Username Accessing File With Folder Monitor?

Aug 27, 2009

How to use Folder Monitor (or something else) to get the username along with folder activity?

View 1 Replies

Use The Filesystem Watcher To Monitor A Folder On A Ftp Site For Files Added

Mar 26, 2010

I am trying to use the filesystem watcher to monitor a folder on a ftp site for files added. Does anyone know how to do this? I have even read that the filesystem watcher was not meant for ftp's but rather local monitoring, which doesn't make sense to me.

View 1 Replies

.net :: Shared Folder Permission?

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

Put Onto The Shared Folder Of Every System?

Jun 1, 2011

creating ones own folder structure through tree view similar to the windows explorer for a windows application,will the application work on all the systems over the network?? will the files added to the folders (of the treeview in the application),visible to all.or would the exe be required to be put onto the shared folder of every system?? what will be the exact architechture???

View 9 Replies

Trying To Set Shared Folder Permissions

Jan 30, 2008

I found how to create a share in C# using the ManagementClass to create an object to reference the Win32_Share class and the ManagementBaseObject class to access the members of the Win32_Share class.My problem is that I want the "Everyone" permissions to default to Read only.When I set the share via Windows Explorer it works fine but the code in my C# application is allowing Full Control and Change permissions along with Read permission.I tried using the DirectorySecurity class but that blows away the Security permissions (under the Security tab)without affecting any Share permissions of the Everyone group (under the Share tab).I don't want to change the Security permissions, I want to change only the Share permission (you know, the permissions that appear when you hit the Permissions button on the Share tab).

View 4 Replies

Can Get API To Just Create A Basic Shared Folder

May 25, 2010

NetShareAdd API from a VB.NET application (.NET version 2.0) and although I can get the API to just create a basic shared folder I now want to create a shared folder and specify its Share permissions (not NTFS permissions) as well, which means I have to pass in a SHARE_INFO_502 structure rather than just a SHARE_INFO_2 like I was previously doing for creating a basic share. I have spent over 5 hours solid just trying to get this working and am getting to the point now where I really cant think of anything else to try.I've encountered several problems whilst trying to make this work but the one I am finally stuck on is this: When I call NetShareAdd it returns the error INVALID_PARAMETER and the parm_ err object (which is supposed to specify which member of the SHARE_INFO_502 structure caused the error) holds the value 501. I know it is something to do with the security descriptor because if I comment out the line where I set the SHARE_INFO_502 structure's shi502_ security_descriptor field then the code works without an error (just obviously does not set the share permissons I want).I think posting all of the code here might be a bad idea as its currently over 150 lines long (yes that is only code for getting this API working...) so I'll just post my definitions of the SECURITY_DESCRIPTOR structure and the code I am actually using to call the various APIs involved: [code] Each of those API calls prior to NetShareAdd returns a non-error value in the Debug.WriteLine that is done after each one, but there is obviously an issue somewhere with the security descriptor.

View 2 Replies

Check If A Shared Folder Or Ftp Path Is Available

May 27, 2009

Is there a code checking that whether a shared folder is available?? Or check whether ftp path is available?

View 2 Replies

Creating One Folder And Making It Shared

Oct 7, 2009

i am doing a vb.net windows application. in that i am creating one folder and making it shared and also assigning shared permission to SYSTEM. My code is as given below.

[Code]...

View 1 Replies

Read A File In A Shared Folder?

Dec 2, 2009

I need to open a file on a shared folder which is in another computer that is conected to my computer through a network switch.

View 2 Replies

.Net - Open Remote Shared Folder With Credentials?

Sep 26, 2011

I need to open a folder on a remote server with different credentials in a window (explorer.exe).I managed to do it with no credentials (my credentials), but when I do it with another username and another password than mine, it opens a prompt to enter a username and a password, and it says "access denied".

In the access log on the remote desktop, it says that I tried to connect with my own username, and not the other username I entered. So, the process obviously did not work.

[Code]...

View 1 Replies

C# - ASP.NET's App_Code Folder And Shared/Static Classes?

May 15, 2011

If I have a 'Shared' object defined in the App_Code folder; is that object shared amongst all users/visitors of my website? Or is it shared on a per-user basis?I don't know if that makes sense or not; but I've got a puzzle/solver I'd written earlier that I'm trying to incorporate into a simple ASP.Net site. It's probably poorly written, but I'd used a Shared boolean to determine if a solution had been found. The code works, now as an ASP.NET site, but if two visitors to my site were both validating their puzzle at the same time, would they both be accessing the same boolean?

View 3 Replies

[2008] Find A Folder That Is Shared Between All Users Of A PC

Mar 9, 2010

I need to find a folder that is shared between all users of a PC, every body being able to read/write to that folder and below, without any errors. I think that the folder "C:Documents and SettingsAll UsersShared Folder" would do the trick. How do I find the path to that folder, regardless of the OS used (Xp / Vista / 7) and regardless of the Windows language (With a french Windows, this folder is called "C:Documents and SettingsAll UsersDocuments partag").

View 5 Replies

My.Computer.Network.DownloadFile From A Iseries Shared Folder

Nov 6, 2009

I have a problem when i use My.Computer.Network.DownloadFile from a iseries share path

View 2 Replies

Read And Write Files To A Shared Folder On A Network

Dec 2, 2011

All i am trying to do is read and write files to a shared folder on a network in visual basic (VS 2010). I can go to the folder through windows without a problem and without being prompted for a password. However when i try to do it through visual basic, it cant find the directory. Here is my small snippet of code that i (hope) is telling me that the program cannot connect to the folder. [code] Are there any known issues with VS 2010 that may cause this? Maybe something else in my code that could have an effect? This is in my form_load event though, so it is literally one of the first things that runs.

View 1 Replies

Unable To Connect To MS Access Which Is Placed In Another Systems Shared Folder?

Oct 30, 2009

I have web service which updates MS access database. Im using OleDB for Updating MS Access database

View 9 Replies

VS 2008 Create A Shared Folder On A Remote Machine?

Sep 30, 2010

Is it possible to create a folder on a remote machine that has no previously shared folders? I can do this...

vb
Dim fname As String = "\10.1.x.yDocumentsMyFolderName"
IO.Directory.CreateDirectory(fname)

[code].....

View 3 Replies

.net - How To Check If User Has Full Control Permissions On A Shared Folder

Oct 25, 2011

I use the following code in order to check if certin user exists in the DACL:

Dim l_managemantObject As ManagementBaseObject() = CType(securityDescriptor.Properties("DACL").Value, ManagementBaseObject())
For Each mObject As ManagementBaseObject In l_managemantObject
l_name = CType(mObject.GetPropertyValue("Trustee"), ManagementBaseObject).Properties("Name").Value.ToString
If CType(mObject.GetPropertyValue("Trustee"), ManagementBaseObject).Properties("Domain").Value IsNot Nothing Then

[Code]...

View 1 Replies

Open File From Shared Folder Protected By Username And Password

Jul 7, 2009

I am building archiving system, I store the files on shared folder on windows server 2003, the shared folder protected by one user name and password ,on LAN I need vb.net windows forms to open file inside shared folder, how I could open the shared folder and in same time providing windows server 2003 with user name and password for the shared folder

View 4 Replies

Build A Program Through VB That Creates A Folder In Program Files Folder?

Dec 28, 2010

Is it possible to build a program through VB that creates a folder in program files folder and behaves like any other usual program?If not, though witch program can i make this?

View 6 Replies

Forms :: Monitor - Possible To Work Out What Program Is In Use

Nov 13, 2011

I am trying to build a program that monitors how other programs are being used and as part of it I need to figure out if it is possible to work out using VB code what window, program or process the user is currently using or Focused on.

View 1 Replies

VS 2008 Program To Monitor Other Programs?

Nov 3, 2010

This question may be vague but I was wondering if anyone has ever implemented an application that basically creates a UI to list and monitor all running applications you have running. This applies to many developers who might have multiple programs running continuously and it would be great to have an app that monitors these programs..or does anyone think it is just unnecessary.

View 1 Replies

Make A Process Monitor Tool With WMI That Monitor The Processes Created Or Deleted - Code Will Not Work

Sep 9, 2010

I want to make a process monitor tool with WMI that monitor the processes created or deleted, but the code will not work. Note to reference System.Management,

CODE:

Code dowload:

CODE:

View 4 Replies

IDE :: VS 2008 - Setup Project : Adding Folder Structure To The Program Files Folder?

May 13, 2009

I am using Visual Studio 2008 Setup project. I need to copy one folder and the sub folders into the program files but when I tried to copy or add the folder to "Application Folder" in File System editor, I am able to add only files and not folders.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved