VS 2008 Listing All Installed Programs?
Apr 22, 2009
I'm trying to find a way to get all of the programs that are installed by accessing the information from the registry. I googled it and was able to find the following code
Private Function Getinstalledsoftware() As String
'Declare the string to hold the list:
Dim Software As String = Nothing
[code].....
View 8 Replies
ADVERTISEMENT
Aug 10, 2010
The last thing that is bugging me and hopefully I will pronounce this project finished after this. I have code to get all the software installed on the machine. Its all working however I have noticed if I open Control Panel and Programs and Features not all the software listed there is picked up in my software.
View 9 Replies
Dec 2, 2009
I'd like to mention that getting a list of the installed programs via the registry is not a viable way to receive a full an accurate list. The two main areas where the programs in the registry are stored, are mainly MS programs. Some manufacturers put their keys here as well, but most don't. And since it's impossible to know where the manufacturer has stored the key, let alone the name of the key that would give the list and the uninstall capability, it's not ideal to use the registry.
That being said, I was told that there is a COM API that Microsoft has made and uses in the Windows OS and was hoping someone knew what that API is and how to maybe implement it in VB.
View 38 Replies
Aug 31, 2009
I'm currently using the following to code to grab the installed programs and list them in a ListView:
vb.net
Dim SoftwareKey As String = "SOFTWAREMicrosoftWindowsCurrentVersionInstallerUserDataS-1-5-18Products"
Using rk As RegistryKey = Registry.LocalMachine.OpenSubKey(SoftwareKey)
For Each skName In rk.GetSubKeyNames
[Code] .....
What I don't understand is when I run the code, I get a NullReferenceException was Handled on this line:
vb.net
If name.ToString <> "" Then
I haven't been able to find much on the error. It seems like it is a pretty generic one and can fit into a lot of different scenarios.
View 9 Replies
Oct 12, 2009
I want to view all installed programs in a listview. and 2 buttons ''refresh'' & ''delete''
View 2 Replies
Nov 23, 2009
I have build an application in Visual Studio en publisched it so dat people can install the program. Now I would like to access the installation on the client computer from an other application so that the user can start the application from a menu item within an other application. But in what folder is the application installed of how can I refer to the exe?
View 4 Replies
Jun 8, 2011
How to get list of installed programs into my listbox?
View 5 Replies
Aug 15, 2011
instead of all listed in the registry key, "Microsoft Digital Image Library 9" doesn't even show in installed programs list. [Code]
View 2 Replies
Nov 22, 2011
How do I activate/use the runtime debugger in a program that has been installed on a remote computer.Is there some way to include the debugger during the build sequence?
View 1 Replies
Oct 20, 2009
I know that all installed programs and updates can be found at HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstall key in the registry.
But how can I differentiate between installed programs and installed updates?
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
Aug 16, 2011
I need to get the current install version for several apps installed on my machine (The same thing displayed in the Add/Remove Programs list)....how do I get this version info programatically?
View 4 Replies
Jun 3, 2010
i want to make a simple program where i can add/edit or delete a shortcut from an installed programs in my computer.
let say c:program filesmicrosoft officeoffice11winword.exe.
the purpose of this is i want some of my selected programs to be in a single window where i can click to open so i don't need to go to start then programs and open that specific program.
i want to run that program in startup so everytime i start my computer the shell or the program is already running and i could click the program that i want on that window.
View 2 Replies
Jun 1, 2011
I have been trying for days now how to create a process to the user to easily create a connection to any installed data types they have installed. I have found an example right inside vb2008. I never use this because I code my own connections, but this would be real nice if I could include it or duplicate it.
View 1 Replies
May 8, 2010
All I am trying to do is write a simple program that will let me choose a directory and get a listing of all files in that directory and its sub-directories and show it in a RichTextBox. I got as far as being able to select the directory but when I click "OK" I get "access to c:documents and settingsstevedesktopmp3 is denied".The code I am using is listed below.
Imports
System
Imports[code].....
View 10 Replies
Jun 12, 2009
how would i go over an external directory listing (like an external computer that i am connected to through winsock or likewise) with a server and client..i would like to hear some suggestions on what libraries to use also (winsock, unolib,...)I need this for a school assignment so help is more than welcome. I'm planning on letting the client download files from the server through this directory listing or something likewise..it doesn't matter really if it's a directory listing or something else, it just has to be user-friendly.
View 4 Replies
Jun 10, 2009
I am having trouble with code for list box of Leap Years between a certain start date and end date.I understand the cose for finding out if a particular year is a leap year, but what I need to to is have all leap years show in a list box, once one has entered a start date (year) and an end date(year).
View 25 Replies
May 12, 2010
it's possible to list items in a specific folder....Let's say I have items, located in a folder at "C:TestData" and let's say all the item is a .doc file such as 'test1.doc', 'test2.doc', test3.doc' and many more...How would you list those items in a VB form?!Do i use Groupbox, ListBox, or something else..
View 1 Replies
May 27, 2011
I am sure this can be done, as Visual Studio is basically built this way. What I want to do is simply make a class that my other workmates can use. But rather than have it in a code form, I want to build it (partially), and then my workmate can add it into their programs (sort of, like the add reference for the .NET stuff).
View 4 Replies
Feb 5, 2010
i have a problem with trying to make a textbox goto the next line evrytime i add something. ive been trying for a while, and came up with the script
[Code]...
View 3 Replies
May 30, 2010
I'm almost sure that I've seen this somewhere, but I can't find it anymore. Or maybe I'm imagining it, which would'nt be strange either.
When creating a sub or function and adding parameters used when calling it.
-Is it possible to list the parameters that I can enter when using it somewhere in my code?
E.g.
Public Sub MessageMain(ByVal Message As String, ByVal MessageType As String (List of possible values for MessageType)) Same for example as when you have boolean values in a sub/function. As soon as you use that somewhere in your code intellisense will present you with True/False to select.
I'd like the same for parameters in subs or functions I create and calling them from somewhere in my code. Saves me the trouble of remembering which options are available for those parameters.
View 8 Replies
Feb 2, 2010
I started with VB 6.0 back when i was 14, I was mostly into coding programs that interacted with other programs. Recently I installed VB.net 2005 pro i got from school, and i grabbed few source codes that teach show interaction, I feel so dumb, i dont remember anything lol. It be great if you guys can share some source codes and other stuff in this field. also other day i was in dream spark and i am able to get copy of VS.net 2010 ultimate edition, are there a lot of major changes, cause i got 2 thick book for VB.net 2005..
View 1 Replies
Feb 23, 2009
When you've finished a program and you're trying to distribute it to the mass public. How is the best way to go about doing this? What sites would you post your program on and getting the word out that there is a new program on the block and it does xyz. This is directed to freeware so there wouldn't be any advertising.
Sorry for not explaining it very well the first time.
View 2 Replies
Sep 21, 2011
I am trying to move my programs from VB6 to VB 2008 Express. My initial problen is with getting data from my Jet database. I've searched for samples but haven't been able to find anything to help me. I would like to be migrate the Jet database to the vb 2008 system.
View 3 Replies
Jun 15, 2011
I have a Windows Form Application which has been developed in vb.net 3.5. It is a charting program and shows stock market charts to users. Now I have made another program in vb.net (same .net version) and I want this program to interact with the one I made before. The new program is like a small scripting language. So for example: if I run a script then its output should be reflected in the other program. How can the two programs communicate ? Both will be running on same systems. No remote stuff. I mean passing arrays,strings or possibly structures.
Plus I have several functions which are written in first program. Is it possible for the other program which is an .exe also to call the functions of the other one if I make sub/function public or something. The reason is we can calls functions or subs if we include a dll. But can one exe calls functions/sub of another exe (if both program are in .net).
View 10 Replies
Apr 1, 2011
the only way I can get reading from an instrument is through proprietary software. even though it is connected with USB. the instrument - a Cary 500, with a GPIB interface.the problem is with instrument commands, like "reset" or "change wavelength" or "instrument reading" They reside inside a primitive Basic shell provided by the instrument software. I'm looking at expencive National Instruments, is there another solution with VS/NET?
View 3 Replies
Nov 28, 2009
I recently installed vb express 2008 and with that download i also installed Sql server 2008. Earlier i have been working in MS Access so i have no experience in SQL server. My first problem is how to start sql server. I can see only following:
Start>All Programmes>MS SQL server 2008>Configuration Tools, Import and Export Data(32 bit)>SQL server configuration Manager,SQL server Error and Usage Reporting,SQL server Installation Centre. Moreover in Programme Files i have two folders:
1. MS SQL SERVER and
2. MS SQL SERVER COMPACT EDITION
how to start to create a database in SQL server with Vb express 2008.
View 2 Replies
Mar 31, 2009
They are all working on my computer,but they are not working on any other computer(I tested it on about 10 computers). They are working when i start making it,but after they are not working. When i try to run it on other computer it is not opening(there is not any error message), or there is a crash report(application crashes). So they are working on beginning of programming, and after they aren't.
View 1 Replies
May 27, 2010
I know there are compatibility problems with 32 bit code running on 64 bit machines, but this doesnt seem like it should happen.
View 3 Replies
Feb 22, 2009
I will do a program then save it and close it out but when I go back to open it it won't open. It just sits there. I'll click on Recent Projects and they won't open. I'll click on Open Project and select a existing file and it will just put it in Recent Projects but won't open it up.
View 2 Replies