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
ADVERTISEMENT
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
Sep 6, 2007
I would like to place the code below in a click event for a button to open a word file. I have added the document (group2.doc) to the Application folder of the target machine in my setup project. how do I write a dynamic file path that will open the file?
[code]....
View 3 Replies
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
Oct 12, 2009
How would I program a monitoring application so that whenever a program is executed or a folder is opened, it will keep track of this information in a log?
View 1 Replies
Jan 14, 2009
I am trying to create a windows service that sits in the background waiting for programs to be started. When the programs start I want to be able to check a unique bit of information for each program (I believe GUIDs may provide this) to see what the program is. If the program is not allowed, I aim to provide a warning to the user and possibly close the program. The aim of the application is to identify when users are attempting to install additional software on to the computer so simply monitoring for a certain executable wouldn't work as msiexec is called for all MSI's and as I only want to stop blacklisted programs...this wouldn't work.
View 4 Replies
Apr 14, 2009
I have made this installation program and everything work just fine, but I wish to improve it a little. Atm. all the files being installed is in a seperate folder, and the installation program simply move them to the right location.There is a builder program too.I would like it to add all files from a list to the programs resource.folder instead of a seperate folder.Atm I add the installation file to the destination folder with the following line. [code]
View 2 Replies
Jun 26, 2011
Can you give me a function or class which have properties?[code]...
View 5 Replies
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
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
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
Aug 27, 2009
How to use Folder Monitor (or something else) to get the username along with folder activity?
View 1 Replies
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
Mar 22, 2010
how to remove a Folder created in Users Program Menu under File System, when an application is uninstalled? During installation of the Application, a link is created at the users desktop and also in Users Program Menu. However during uninstallation the link for the Users Desktop and User Program Menu is removed, but the Folder created in the Users Program Menu remains.
View 4 Replies
Mar 16, 2011
I have an application that I'm creating that uses VB6 for the maintenance programs, and visual studio 2005 to create the reports. At work we use reporting services to host the reports, but in my application I want to run the report from a menu within the application, not in reporting services. (A) Is this possible? I think I've read about a report viewer that can be embedded into .net applications. If I create a menu system in .net, that shells to execute the maintenance programs that are from vb6, or fires off the report viewer, does this sound feasible? The application is supposed to run connected to their SQL 2005 server via a VPN; I get blank looks when I ask them if they have reporting services installed...
View 9 Replies
Apr 20, 2011
I have put together an app to monitor several directories. The basic principle is to replicate from a Master directory to a Shared directory when specific criteria is met (specific file types are changed, renamed or deleted within the Master directory)Everything seems to work fine with excpetion to MS Office documents. e.g. If I work on a .bmp and save it, it will trigger a changed event. However, with office documents (Word in this example), it appears to rename the MYDOC.DOC file to <freefile>.TMP then rename a different <freefile>.TMP to MYDOC.DOC. This would not be a problem if it was to trigger the Changed or Created event for MYDOC.DOC, but it doesn't. It wouldn't be so bad if the first TMP file was named the same as the second TMP file as I could mirror the process using the Renamed event.I can not filter out TMP files as we use TMP files within the Master directory, albeit for a different purpose.I would use an off the shelf produt, but the files need to be copied to different shared directories based on specific criteria so I can not seem to find a suitable product that fits my needs.
View 1 Replies
Dec 30, 2011
I need to monitor KeyDowns outside of my application (probably running in a NotifyIcon) so I can detect a certain key combination to do something. How can I do this? I read somewhere before about using a process.
View 10 Replies
Oct 8, 2009
how to close application root folder or sub root folder at the time when application is in running mode?
View 7 Replies
Apr 28, 2009
In VB 2008, I am using the class 'process' to launch and external application with a few parameters. Does anybody knows how can I send it programmatically to second monitor?
View 1 Replies
Jun 6, 2010
is it possible to monitor my RAM-memory use of my application using a PerformanceCounter? If so, I've been looking around on the web, but my knowledge about memory isn't enough to understand what precisely I have to use
View 1 Replies
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
Apr 7, 2010
These days I'm working on a VB.NET application which can be used to edit, compile and run C programs. how I can call a cl.exe process from within my VB program and also that how do I run the program in the console widow itself.
Presently I have only the editor ready. With that one can type in a program and save it with a ".c" extension. Now there are 2 buttons on my form - "Compile" and "Run". When the user clicks on the "Compile" button, the program should be passed to the cl.exe process and the errors should be displayed in another textbox or the DOS(black screen itself). And when the user clicks on the "Run" button, the ".exe" file which just got created should get executed.
Is there any way to attach some files along with my program so that the people who do not have "C" installed in their computers can also edit, compile and run C programs using my application?
View 2 Replies
Dec 13, 2009
I'm new in VB, and plan to developed an application that can monitor the network according their subnet and display the network utilisation. Can anybody guide me what is the needed to develope this application on VB..
View 2 Replies
May 3, 2009
I know how to run forms in second monitor, but I dont know how can I lauch and external exe program in second monitor. How can I do this?
View 9 Replies
Dec 20, 2009
Is it possible to monitor how much traffic my application has used? I'm interested to see how much data that has been sent and received over the internet from/to my own vb.net application.
View 2 Replies
Jan 31, 2011
Can I monitor the registry for changes similar to how sysinternals process monitor does it in VB? I have checked many different articles and C# samples but not come any closer to getting an answer, I would like to know if there an easier way (a VB sample perhaps)that you folks can share. Ultimately I'd like to be able monitor other things too like file system, processes etc but wonder most about how the registry can be done in VB...Would using system.management be a start? Or WMI? if so is there a nice VB sample..
View 3 Replies
Jun 16, 2011
how do I adapt the my application area to the user's monitor resolution?I have created a winForms application on 1280*768 resolution monitor and the application is generally used on smaller laptops (10inches). Now I need to a scrollbar on my entire application so that the spacing remains the same as I have designed. For this, there has to be a scrollbar (Both Horizontal and Vertical) on the application.
View 1 Replies
Oct 22, 2010
I would like to know the exact location of the mouse by pixels.How do I detect and write the X,Y pixels?I like to do have two sets of numbers.Firs set is for the application and second set for location in the monitor.The existing monitor is 1280x1024. (I hope the code is not monitor specific.)
View 1 Replies
Nov 27, 2010
I want the user to have the option to choose between a lot of pictures in a project folder. So I made a new project folder called: Images.
And when the user presses a certain button this folder should be opened.I want to achieve this like this:
[code]...
View 2 Replies
May 25, 2010
I need to get a list of installed program on local machine with application icons. Below is the code snippet that am using to get the list of installed program and installed directory path.[code]....
View 1 Replies