Find Rtree Program In .net?
Apr 27, 2010can i find rtree program in vb.net can i find rtree program in vb.net?
View 1 Repliescan i find rtree program in vb.net can i find rtree program in vb.net?
View 1 RepliesI'm making a program that will patch a program with a new Exe. Its all working with this code
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles patch.Click
patching = True
[CODE]..........
I get an "Could not find file 'System.Byte[]'." error.
Ok this is what I am doing, at a specific time (set by user) a program (chosen by user) will lauch. What I would like to do is after said amount of time kill that program that the user chose. I currently am using ".waitforexit()" but this disables my application.
View 3 RepliesI declared my Array:
Dim invoice_discountitems(100, 100) As String[code]...
I have a XML file. Inside the XML file where ever I find the string as ("C:Results est1_01") I need to replace it with ("B:final est1_01") and save it.
View 1 RepliesI need VB.NET tutorials and simple VB.NET examples. I am trying to implement click events like[code]...
View 3 RepliesI already got the processor specifiaction, like its manufacturer as well as its speed; i found it in registry . Now here is my point, how about for the other specification? like RAM specification, where can i locate it. I'm finding the processor, RAM, HDD, NIC, Video Card, and Motherboard.
View 4 RepliesI'm in Visual Basic to create an update center for the software I make.I must find out what the installation path of a program. Eg notepad (which I know), or another program.I can easily find the file of the updater (Application.ExecutablePath).
But how do I install so the path of a program
[code]...
How do I find all instances of frmNameHere created using the above code?
I am trying to make a program that backs up folders. I want to have say 5 folders, then if it is backed up again I want the oldest of the 5 folders to be deleted and the new one placed in it.
How would I find the oldest folder in a directory
I am using Visual Basic 2010 Express. I have a program that I need to have work in conjunction with the scanner software that our company uses. how to get my program to watch for when the space bar is hit and I have also figured out how to make sure that my program's "spacebar trigger" only works when the scanner software is running.
The problem is this: If for some reason the user decides to use some other program while the scanner software is running, my program still watches for any time the user hits the spacebar. As a result that triggers the "spacebar trigger." I only want that trigger to fire when the scanner software has focus. How do I do that?
I am new here, i want to get few websites or books which provide me vb.net source code and examples.
View 1 RepliesHow I can find program when accessed to folder... I know it show what file created, but I wish know WHICH program accessed to folder not what is created in folder !
View 14 RepliesHow to find start location of program VB.NET???
View 1 RepliesI would like to register a hotkeys/shortcut keys (e.g. Ctrl + Alt + A) and I would like to find out if other program is using it.
View 2 RepliesYeah, I want to make the program find a certain word, such as 10.5, in a textbox. It will have multiple lines. textbox5 is the textbox and a word, like 10.5 or longer such as 10.10.10.10.10.10. an IP.
View 1 RepliesTo Whom It May Concern, could I with this program, so far I think I got it to do what it asked, but I cannot get the program to continuously loop
' Declare TempInCelsius As Double
Dim TempInCelsius As Double
' Declare F As Double
[code]......
When using VB6 I could use (Windows Explorer, Programs), and find my installed program. I need to get to the database as I have entered a lot of data into it via my not quite finished program.
View 2 RepliesAre there any ways to make my program more accurate or faster? So far, I've been using multithreading and priorities.
View 28 RepliesI created a Class Library project in Visual Studio 2010 and created added the following VB.Net class[code]...
View 1 RepliesI want to make a program which first of all check whether a serie of programs is installed, if a program is installed I would like to find the installation path, so I will be able to work with it further..My first though was to check in the registry, there is theinstallation path also mentioned right?Another possible way was to search all the harddrives for a specific .exe fil. If then the file is found, the program is installed, and you should be able to find the path to the found .exe file. This is more "secure", right? - Because not all program is registred in the registry right? (E.g. if you move it from another location, and doesn't install it).
View 7 RepliesI wrote a program in VB.NET which uses several .dlls that I programed in c++. The dlls wrap some functions from an old version of the program. On my development computer everything works fine but I build a release version, copy it and the dlls onto the target machine and the .exe starts up fine. When the program tries to use a function from the .dll it throws an exception and says "unable to load DLL "c:/the path/my.dll" the specified module can't be found."I don't know if it makes any difference, but I am defining the dll functions in the main vb project using:Declare Function MyFunction Lib "c:/the path/my.dll" (ByVal in1 as Double, ByRef out1 as Double) as Integer.I have checked the .net framework on the target and version 4 seems to be installed same as the development computer. Both are windows XP machines. I have no idea if it is the way I programmed the .dlls or just something with my vb.net project.
View 1 RepliesI want to check for each item in list box if item exist then add it to listbox3[code]...
but it is very slow if there is way to search for list of items in listbox at once?
I have a customers List(of String) on which I am trying to find the duplicate customers.[code]...
View 2 RepliesSay I have a list and I have an object. I want to find the index of that object in the list.
View 1 RepliesHow do I determine which network domain I am connected to from VB.Net?
View 1 RepliesI just installed the Visual Basic 2010 Express and I have no idea how to start! The IDE is so new to me and I need the place or link where I can download or watch video tutorials about the IDE and its features. I also want to learn the VB 2010 Express language from the very basics of it.
View 2 Replies[code]...Find last rows each machine_id in mysql database with program?
View 1 RepliesBasically, I have an array of data with about 1000-2000 data points that form a rough Poisson distribution. What I need to do is take the maximum value of the distribution (which I know), and find the leftmost and rightmost values that are, say, 70% of the maximum. (I don't really care what the value of these numbers are. I want to know what index position they are in.) I then want to find the centerpoint between these two indices, rounding if necessary, and return all three values (left, right, and center).
View 2 RepliesI am trying to make a program to find some text on a website and fill a text box in the program with that website text.
The website is Generate a Random Name - Fake Name Generator
I would like to take the info generated on that site and fill in text boxes in visual basic.
WebBrowser1.Navigate("http://www.fakenamegenerator.com/")
System.Threading.Thread.Sleep(2000)
Dim theElementCollection As HtmlElementCollection
[Code].....