I'm trying to understand how I would retrieve information about a running process on my machine from a VB.Net routine.For instance, Assume I open Task Manager and see a process called "Bob.exe".From Task manager I can see the PID for Bob.exe, the memory it uses, the I/O information, etc.I want to be able to query the machine for this information for Bob.exe from a method within VB.Net.
Given a list of DLL paths, find their version number and all assemblies referenced. Some may point to the same DLL but with a different path or version.
My Code:
Dim otherDomain As AppDomain = AppDomain.CreateDomain("otherDomain") otherDomain.DoCallBack(Sub() Assembly.ReflectionOnlyLoadFrom("filePath")
how to collect a piece of information from a web page. Here is the web page I want to retrieve the information from: RuneScape - The Number 1 Free Multiplayer Game
I would like to retrieve the first "Price" of the item and collect the price every time I execute the code.I understand how to retrieve the source code of the webpage and split strings but how would I retrieve that price?
Is there away to retrieve the Logged In state of a machine?I made a vb.net service with some monitoring functions and I wanne know if a windows server or computer is logged in by a user.
Am using MS Access as my back end and I am having a table called "Dept" with 2 columns (dename & cname). In Vb.Net when I click a command button, all the data's of the first column should be displayed in ListBox1 and the Second column in ListBox2. I do not know how to proceed
I have been working for some time on a service that will act as a task scheduler and perform a shutdown action at one of 3 given shutdown times. Before you cringe and ask why not use the task scheduler, I should explain that permissions do not allow users to "create" scheduled tasks and therefore a creative work-around is required. In any case, I am still new to VB, but am including my code below. I want the service to check an alarm time every minute and launch a shutdown application (in the user's context - if logged in) if that time is NOW.
Is there a way to identify the source of a WCF call ?I'm trying to find a realiable .Net property that will let the service know the address (URI) of the calling Web Service.Especially in the case where two Web Services are hosted on the same machine.
I want to create a program in Visual Basic Express which will log into a website by inputting the user name and password for that site and then retrieve certain data from
I need to pull hardware info and display into some type of a control like a ListView. I've been doing some general research and found that most people have used WMI. I would like to avoid WMI if possible because of possible compatibility problems.However, if that's the best way, then that's the way I'll go.I was wondering if anyone knew of other methods, perhaps an API or other unmanaged code?
If I create a scheduled task for my vb.net program, and run it under another user, and it runs when logged off, as long as the user has full rights, will the winforms application be able to call web services over the web?
I have an import program which I run manually everyday. I want to automate it but i'm not sure whether to make it a windows service or add it as a scheduled task. It needs to run at 11:00 and again at 16:00. Please advise
I need to have a windows service that capable of monitoring constantly whether my application is running or not. If not, the windows service will RUN it for me.
I want to create some sort of method of creating a web service that will run automatically and run DB queries and some API calls which will then store data that I can use/call without taking the processing or time penalty of doing it every time a user access my web service. how to implement something like this
This is annoying. I'm trying to put a wrapper around some functionality that uses a web service to return some information. The intention is to wrap all of that communication into a dll such that the user can simply call functions from the dll to get back information, without needing to care about the service.As far as I can tell, that isn't possible, because the service information, as far as bindings and endpoints, HAS to exist in the app.config of the program that references the dll. That means that anybody using this dll won't just be able to add a reference to it and use it, like they would with any other kind of dll, they must also edit their app.config to add in a bunch of information. That's a simple copy and paste job, but it's incredibly unfriendly, and exposes some of the internal workings of the dll to casual inspection.
Right now i have a form in the VB where there are 2 combobox in it. user can choose from a range of products that comes together with some description and these are to be stored in a database table.. when i retrieve these data from another form in VB, i'm only able to retrieve the first product and it repeat e same product in my second textbox.
Currently I have been using mysql connectors to send and retreive information from my database. Someone suggested that a web service (wdsl? etc) would be a more efficient way of sending information both ways.
is it guaranted that a task A started before TaskB will be completed before task B assuming the task do the same level of operatons?or in other words is there a chance that a task B will finish before tast A in the assumption that the task calls the same procedure?
i have a Windows service that is hosting a WCF service through net.tcp and this is working great. I have also created a WCF service application. I am trying to add the net.tcp service reference to the service application. Then I add it to the GAC that goes ok but if I try to RegAsm the WCF service application to allow it to be called from Server.CreateObject I get the error:
Warning: Type library exporter encountered a type that derives from a generic class and is not marked as [ClassInterface(ClassInterfaceType.None)]. Class interfaces cannot be exposed for such types. Consider marking the type with [ClassInterface(ClassInterfaceType.None)] and exposing an explicit interface as the default interface to COM using the ComDefaultInterface attribute.
It does not work. I have tried to call it through a class library but this does not work either as the end point is not set correctly.
I have a VB2008 application which can control a windows service i.e. start, stop, pause etc. This runs ok on a Windows XP machine but not on a Win 7 machine (message is - Service error cannot open <service name> service on computer '.') ( if I stop the UAC then it runs ok ). It seems to be a rights issue,
The program is currently trying to pull information from three different database tables and compiling the information onto one screen, to do this i am using three different connections and a function to handle the data at each stage. The issue is as my code hits PageLoadStage of "2" and runs the QueryDatabase() Function i am encountering an error of: "OleDB exception unhandled: No value given for one or more of the required parameters." This occurs on line 15 of the first code snippet. Can anyone explain this and/or identify any code issues if that is the cause.
I was looking for some stuff online, and i was looking through my reference sheets for vb.net, but it seems in the code i have found, there is declare in methods. Below is an example i am talking about. The thing is, that i dont recognize it and believe that it is an earlier version of Visual Basic ( 6 or earlier) which used it. Should i just keep looking for different code?
Public Declare Function RegOpenKey Lib "advapi32.dll" Alias "RegOpenKeyA" (ByVal hKey As Long, ByVal _ lpSubKey As String, phkResult As Long) As Long
Goal: Find information on how to implement a method which will check if a certain DSN exists, and then if it does, extract the information and use the information for connection purposes.
I have a text box where i am entering numbers of double datatype andon the Keytdown event of the textbox some checks take pace and in certain circumstances I want to be able to stop the user from entering other information until they enter the right information in the textbox (where it says right here) . now when I say exit sub the textbox somehow loses focus . but this is not how I want it to be I want the textbox to remain with the focus so the user can change the information . How can i go about this. And the other thing is why is my txtDestPayRate1.Focus() just befor the exit sub not working?
Private Sub txtDestPayRate1_KeyDown1(sender As Object, e As System.Windows.Forms.KeyEventArgs) Handles txtDestPayRate1.KeyDown
I am designing a backup/restore utility for work.atm i have been able to populate field for PC name, IP address, MAC address, number of printers installed on the PC but i am wondering is it possble to get all the printer information 'with the click of a button' to print all information like the prnmngr.vbs script down.I am able to run a batch file but i wanna get it to go from that app or even embed to batch file to the app and run it form there .
I got this warning that I don't know what it means.Warning1 The service System.ComponentModel.Design.IInheritanceService already exists in the service container.Parameter name: serviceType00
I am trying to communicate with a Windows service on a remote machine on the network but i keep getting an exception saying the following: "System.InvalidOperationException: Cannot open Service Control Manager on computer 'machine001'. This operation might require other priviledges. ---> System.ComponentModel.Win32Exception: Access is denied.
Is it possible to have a dotnet windows service which monitor other services and upon stop of any service, the monitoring service would be able to start the stopped service.
This is a bit of unusual problem that I'm experiencing, but recently one of the users of a production application started reporting errors in the system. These were traced to a 503 Service Unavailable error when making a call to a web service used by the application.
Now here's the odd part, only the one user is affected by this issue. Other users of the application have not reported any errors. When the user logged on to a different machine that worked for another user, they still received the error.
i was trying to make my service act dynamically... i have set time for my service about for 2 min ,if suppose it was doin huge amount of work means it will exceeds that 2 min time limit then we need to check the service condition if work is pending means we need to run that instance until upto finish.
public static void StartService(string serviceName, int timeoutMilliseconds) { ServiceController service = new ServiceController(serviceName);[code]............