Running VB Dotnet Applications With User Privileges?
May 17, 2009
I am running a client-server application and am having problems with privileges (I assume). The application is developed using 2005 Express. The Client is running Win XP Home whilst the server is running Win 2003. When the user on the client has Admin rights on the local machine, everything is OK; however when the user has only User rights, an error occurs: VB will not run.
View 14 Replies
ADVERTISEMENT
Jul 15, 2011
i am using vb.net express 2008, and i wanted to check if the user had opened the software as admin, or not. windows 7 and windows vista.
View 1 Replies
Jan 31, 2010
I found that snippet, edited it a little bit and now im trying to use it...the problem that ocurres, is that its never going into the first IF... so already there seems to be an error.Im working on XP SP3 with admin privileges..
Private Shared Function GetCurrentPrivileges() As Privileges
If My.User.IsAuthenticated() Then
If My.User.IsInRole(ApplicationServices.BuiltInRole.Administrator) Then
[code]......
View 7 Replies
Jul 2, 2009
I have an idea to make user machine no need to install dotnet framework to run a .net program
first,copy all the project refrence(with mscorlib.dll)to the program directory
then,make a bat file,"dotnet error fix.bat",inside the file includes the command that copy refrences to Microsoft.NET directory will the program run like this?how do i test?
View 4 Replies
Jul 24, 2009
Is there a way to, when a parent application is opened up, that at the click of a button, or anything of designated event, that this parent application can open a secondary one?
View 11 Replies
Oct 20, 2009
How can I get all of the running applications? If I have to use Process.GetProcesses, then how can I determine which are applications (appear in the task bar)?
View 4 Replies
Feb 22, 2011
i am having trouble executing applications that havent got the prefix .exe here is the code tat i mostly found in the internet can someone help so it will be able to play with all applications tried to make it play with msi but it wont play.
[code]...
View 12 Replies
Jul 5, 2010
I'm going to design an Application (C# or VB.NET) which use .NET Framework to run for very long time. It may be restarted every year or even more...Is there anything (using special design patterns or so) which I must care about in designing "Long time running applications in .NET"?
View 3 Replies
Mar 14, 2010
Anybody have an idea to list running programs ; not all running background process. I tried following code, but which list all process names. eg: notepad.exe, vb6.exe, svhost.exe etc. but what i need is the running window based programs( with windows.)
1st method
Dim process As Object
For Each process In GetObject("winmgmts:").execquery("Select * from Win32_Process")
Debug.Print process.Caption
[code]....
View 2 Replies
Sep 10, 2009
I developed an application I need to run exclusivly under DOS mode (no Windows), when I wrote the app I created it as a CONSOLE application, when I run this EXE under the DOS mode it says it can't RUN in DOS mode? Is there ANYWAY I can make this work?
View 5 Replies
Sep 7, 2009
I have seen that unsigned .net applications will not run on most college networks and as part of a school applications i am trying to let these applications run on a protected network. The app is written in VB 2008 and is signed strongly.
View 1 Replies
Mar 16, 2012
I have created an application that will run several other Engineering applications from within it.
I have my main form which will have a button on it for each application that has to be run. All the other projects are complete and have their respective '.EXE' files, which I have added to the main project.
I have coded one of the buttons to start an application, this is as follows;
Private Sub btnCoordsCalc_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCoordsCalc.Click
Process.Start(My.Computer.FileSystem.CurrentDirectory & "Hole_Coordinates_Calculator.exe")
End Sub
This method works OK and does start the application. So my question is; Is this the correct way to do it, or should I import the whole project into my main project?
View 1 Replies
Nov 19, 2009
i am a casual user of visual basic express 2008 and use Vista Home Edition Ive been using it for a while now, with no problems at all. Recently i started to take a look a WPF in my apps, again no problems.(visual basic express ran fine, debugging ran fine & finished apps ran fine)
However for some reason (and all of a sudden) i keep getting errors and none of my apps will start up.
The errors are:vshost.exe has stopped working (I get this when visual basic express starts)PresentationFontCache.exe has stopped working (I get this when visual basic express starts a wpf app)
(Application Name) has stopped working (I get this when running finnished apps)I've tried all the usual methods (Reninstalled VBE & .Net3.5)I cant see why it has stopped working all of a sudden?
View 7 Replies
Nov 19, 2009
he lack of VB terminology in the following question - this is all fairly new to me. Anyway, on to my question.I have 2 seperate applications running and they both need to access the same array. Is it possible? If so, how?
View 2 Replies
Mar 21, 2012
I have created a main application form that has buttons that start up various other applications.
Following advice on here from a previous post, I have imported all the files of each separate application into the main application.
There will be times when the user wants to run more than one of these applications at the same time. I know you can just import the '.EXE' file of each app, and you can then run several at a time. But because I have all the files without the .EXE, you can only run one at a time, you have to close one app to start another.
My question is simply; Do I have to import the .EXE file of each app, or is there some code I could put in my main form that will allow me to run more than one app at a time? (the reason for having all the files of each app is so you can make any alterations without having to open each app separately).
The code below is a typical code for one of the applications start buttons, all the buttons codes are the same, apart from the app name, the buttons are imported, so not standard buttons.
Private Sub btnCoordsCalc_ClickButtonArea(ByVal Sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles btnCoordsCalc.ClickButtonArea
Dim frm As New frmHoleCoordinateCalculator
[Code]......
View 2 Replies
Jan 29, 2009
I'd like to ask assistance for the following scenarios below:
1. I want to check whether certain applications are already running or not.
2. The applications i need to check are the ff:
a. MS Word
b. MS Excel
c. Notepad
d. MS Project
e. MS Powerpoint
3. If any of these are running, the window title of that application will be filled-in in a listbox.
View 2 Replies
Jun 18, 2009
I have created a simple windows forms application. I would like to be able to connect to that running application and view certain properties from a seperate windows form application. In VB6 I would have run the first application and then called GetObject to connect to the instance. Does anybody know how I could do this in .Net. I'm guessing I'd have to use reflection to get a list of applications running and then somehow connect to them but I'm not sure how to do this?
View 5 Replies
Jun 10, 2009
I want to get the detail of all the applications running in windows like
Application name : Status : User : Resources Usage : etc....
also I want to get the detail of all the users logged in at a time
View 7 Replies
May 12, 2012
I am wondering if it is possible to run an application from a domain account that has restrictions on running .exe files by coding in the local administrator details (username / password).
View 3 Replies
Jun 7, 2012
i would like to scan all the processes(aplications) running in a system before starting my program. and also need to close some programs before starting my program.how to read all the processes ruining in a system one by one.
View 1 Replies
Jul 22, 2011
I know this code will give a list of processes
ListBox1.Items.Clear()
Dim ProcessList As System.Diagnostics.Process()
[code].....
View 3 Replies
Jun 8, 2011
Using any version of .NET how do you find out which zone a particular share is classified under. I am having a problem identifying if a share where my referenced dlls reside is in the "intranet zone" or "internet" zone relative to some user machine that is running my .NET application. I suspect this is a problem because I am having a problem accessing referenced dlls from a share on some machines but not others. How can I tell which zone .NET is classifying that share in so I can adjust permissions accordingly?
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 24, 2011
i need an app that can download a table from the db, and when he click a button, i want to update the db with his "offline copy".
Problem is When i use DataAdapter.Update, it doesn't update all the rows. Now this is a problem, because even if his "offline copy" thinks that row 1 is "unedited", some other user may have edited row 1. so regardless of row state, i need to so called "replace" the entire "offline copy" with the database when the user clicks the button in a "last click overrides all" situation
View 2 Replies
Jul 25, 2010
I have developed a paging control that I would like to use in a variety of applications, both C# and VB.NET.I'd like to package the entire thing, markup and all, into a DLL which I can add as a reference from my other applications' bin folders. If this is not possible, or is a very bad idea, what is the recommended method for deploying a web user control amongst multiple applications?(I like how easy it is to utilize Ajax Toolkit controls from a single DLL, although I'm not sure if those are custom controls or web user controls)
View 1 Replies
Mar 8, 2012
I have created a vb application connected to MS Database. I have used try..catch statements to trap exceptions and display messages on the error found, but the problem is that these messages are too technical for the end users to understand. Is there a way of retrieving the error number or code of that exceptions thrown so that i can customize the message for the users?
View 3 Replies
Jan 18, 2011
Need to install a font on all user's machines that will use the application I am writing which creates custom documents in Word. It's a barcode font.I've successfully added the font to my solution and set its build action to Embedded Resource and have also successfully written code to check if the font is already installed on the user's system.
View 3 Replies
Sep 12, 2011
I am working on a project that is used for key broadcasting. Don't worry nothing illegal, I'm making a multibox application for world of warcraft. However I am having trouble when it comes to launching and manipulating other applications from another.
[Code]...
View 2 Replies
Jul 22, 2010
I am using VB .Net 2.0. I know I can detect the OS using
System.Environment.OSVersion
Can anyone tell me if there's a list somewhere where I can find what that generates for different OS versions.
Specifically I am trying to detect if a user is running Windows 7 64-bit.
View 4 Replies
Sep 25, 2010
How can I check if user running my application is running Vista or XP?I need to make it If XP then msgbox "XP" else if Vista then msgbox "Vista" endif.
View 3 Replies