Make A External WoW Addon?
Jul 24, 2011
im trying to make a external WoW addon, but i keep getting an error when im using the hwnd function.Here's my code and i keep getting declare, findwindow, and SetFocusAPI underlined.
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Public Declare Function FindWindow Lib "user32.dll" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
[code]....
View 1 Replies
ADVERTISEMENT
Dec 9, 2011
Trying to make a simple browser with some simple addon's. What Ive done is setup a menu(forum) for the user to enter their email providers web address and it will save it in a xml file. When they click on the email link, it should load the email xml iformation and place that info in the tb_html.text and navigate. I keep getting a null exception and im not sure what going on here. Here is the code:
Browsers:
Private Sub btn_Email_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_Email.Click
'Load Action
Dim SavedEmailObj As Storage
[code].....
View 2 Replies
May 2, 2011
How does one go about creating their own toolbar for Internet Explorer, or something along those lines? I've been doing some digging around the web, but nobody has really made it clear whether or not it's possible to do with vb.net. I tend to keep in mind that there is almost nothing that isn't possible in vb.net but that's almost.
View 2 Replies
Jan 19, 2010
I'm trying to create an IE addon that allows me to just switch proxy settings. I'm sure there is something like this already, but for me it's an exercise in programming and learning as well.
View 1 Replies
Jan 23, 2011
I recently started a project and I have successfully completed the autoclicker part. But I am wondering how to add on to the autoclicker to make it locates a color and then click on that color. So for example:
User presses find color button (color the mouse is currently over)
Cursor finds color red,
Cursor locates and clicks all color reds until new color is clicked,
Repeat.
View 7 Replies
Feb 17, 2009
Anyone know of a way to do addon's with a visual basic program? I want to create a program that has some basic functions, but to stay away from bloatware and unused functions. How would you create a main program when it is installed and then be able to add and remove features to it?
View 4 Replies
Jul 23, 2010
I would like to do the Post method in visual basic, is this possible ?Here is an addon that I truly like for Firefox, just to get a sense of what I'm talking about.[URL]..
View 3 Replies
Aug 17, 2011
doses microsoft hav graphic charts to add on tools
View 1 Replies
Mar 23, 2009
My idea is that i want to create a auto-shutdown app that will allow me to auto-shutdown after downloads have completed using IE6. Third part download managers have these built in for example however i would like to make one for IE download dialog. Any ideas on how do start. Detect when a download is active, set time, autoshutdown etc.
View 3 Replies
Jan 8, 2011
i am trying to make a program where it copies files to a certain external drive, but i cant figure out how to make it to where you enter your drive letter for the external drive and it copies it.
View 6 Replies
Apr 3, 2009
I'm trying to make an application to edit an external exe's icon, and other resources, much like ResHacker.
View 3 Replies
Feb 26, 2011
Question 1: How to make 'Button1' open a external program of there choice using the File Browser.
Question 2: How to send 'TextBox1.Text' to an external process
Question 3: How to save data in a .dll file made from Visual Basic
If anyone has source codes that I code edit for Visual Basic 10/08,And If you could sort of walk me through what I would need to edit to make it work for my programs
View 3 Replies
Feb 3, 2012
I wanted to know if it is possible to Zip a folder without any external dll nor any external references - just with native features.I've been able to Zip files with System.IO.Packaging, but it does not include folders and I cannot tell it to Zip the parent folder.I know there are external dll and so, but I'd like to know if it's possible to make it from a native way.
View 1 Replies
Jan 23, 2010
I use SetParent to make an external application a "child" of my Main .Net application. This works fine.What I need to know is why can't I use Me.MDIChildren(0)I thought that using SetParent would increase the number of children by 1, thus allowing me to reference it with the above code, but it shows there are no children in the array.I have been trying, without luck, for 2 days to try to maximize an external app being displayed in my app. I can get it to display, but I would love it if it could Dock to the same size as its container (a panel)
View 3 Replies
Jul 7, 2011
Is it possible to run a ( external program/process ) in a thread of your vb application?
so you don't see the process in taskmgr?
View 12 Replies
Oct 1, 2010
im working in a windows app that execute another apps.. writing the name of the app in a text box (i.e firefox.exe) and click enter to run it im using >> (System.Diagnostics.Process.Start(app_name.Text)) to run apps it works fine with me .. but it didnt with some apps like when I write for example ares.exe it says:Win32Exciption was unhandled :The system cannot find the file specified
View 1 Replies
Jun 9, 2010
There are tons of examples of how to access the process environment block (PEB) from C++ code but I'm wanting to do it from VB.NET and am seriously struggling.I call NtQueryInformationProcess and get a Process_Basic_Information structure back from that which has a member named PebBaseAddress and this holds a pointer to the PEB (I have verified that this member does hold a valid pointer at runtime). The problem is that when I try to read data from the address that this pointer references I just get nothing. One important thing to mention is that it works fine if I try to use it on my own process, its just when I try and read the PEB for an external process that it gives me no data. I've enabled the SeDebugPrivilege (and confirmed it is enabled for my process in Process Explorer) but this made no difference. I've also tested it on Windows XP x86 as I'm currently testing on Windows 7 x64 but XP had the exact same issue, only sometimes the XP one would just crash completely with a memory access violation and thats the other thing, I am getting fairly inconsistent results - even on the Windows 7 machine sometimes I end up with no data but other times I get memory access violation errors, and other times I get the data for my process even when I have passed in the handle of a different process..
View 2 Replies
Apr 1, 2012
I want to develop a function that will return the external [public] IP from my router.
Not the Internal [local] IP, something like 192.168.1.X.
But something like this 216.XXX.XXX.XXX
View 3 Replies
Oct 3, 2009
I have a quick, yet simple (i think?) question. How can i use the address bar to send commands to a external application?
Example:
AOL Instant Messenger I havent used this application in a long time. But i remembered if you wanted to add a friend to AIM from their online profile it directed them to a link such as:
aim:addfriend=contactID and AIM would pick this up and add it the contactID to the application. The link i posted is more than likely not the correct link they use but it shows what im trying to accomplish.
Im looking to achieve something along the lines of: myApplication:command=commandValue
View 3 Replies
Nov 27, 2009
I have a dll file which is reading a in.txt file and write a out.txt file. No need pass any variables to dll. Dll file runs alone.
I could not add this dll as referance. What I nned to do to just run this dll?
View 11 Replies
Dec 17, 2011
I'm creating an installer program. As part of the install process, I need to run/install the "AccessRuntime.exe" file.
How do I run this external EXE file from within my installer program?
View 6 Replies
Aug 16, 2010
i am creating a visual basic program, which acts as a very simple GUI for another program. I have built the whole Visual Basic project, but i am unable to do one part, the most important part you could say.I have a button(button1) on a form, when the button is clicked, i want it to run a program, named 'mover.exe' which is located in the SAME FOLDER that my visual basic program will run from. The directory of this folder will change. So, there are two problems..i have:
1 - to make the program run the .exe program when button1 is clicked (it also must be run with administrative privelages).
2 - to make the program always look for 'mover.exe' in the folder in which it is started from.
View 7 Replies
Oct 28, 2009
I have a visual basic file with a number of functions I want to use inside my XSL. I can build it as a dll and reference in my XSL project but I don't know how to reference it in my XSL file. I am using visual studio.[code]...
View 1 Replies
Jul 23, 2009
I've been working on a program and the final step in it is to run an external exe. This particular exe is a video game exe. What happens is the code will run fine, the game starts up, and right when the screen blinks to go into the game, the game stops stops. I don't even get to the logos in the beginning.
This game in particular is Star Wars Battlefront II, and I'm trying to run the main game file (BattlefrontII.exe). I've tried TONS of ways to try and get this work.
System Diagnostics, MyProcess.StartInto blahblah.....
View 5 Replies
Mar 30, 2010
I just want button1 to make label1 the external IP when you click it.I found this:[URL]..and it is just your ip when you go to it.I don't know how to make this work and I have looked around a bit.
Dim wc As New Net.WebClient
Dim html As String = wc.DownloadString("http://whatismyip.com/automation/n09230945.asp")
Label1.Text = html
View 6 Replies
Apr 23, 2011
I keep trying different things I find on the net, but I can't get VB.net express to wait for exit. Hopefully someone can point me in the right direction here. Here is my code and all of this works but there is no way to tell when mugen stops.
[Code]....
View 6 Replies
May 3, 2009
So I have my form, I add one combobox (combobox1) and a button that says "Launch..."Button 1's
Process.Start(ComboBox1.SelectedItem)
When you select a program from the combobox (combobox1) and click launch, it launches that program, for example, cmd.exe (command prompt) when I click the button, it launches the command prompt, but if I select a game (for example chess.exe, for vista), it says it can't find the file, this is because the search for the file is only: WindowsSystem32, how can I change that? OR, how can I add a reference that searches the WHOLE Disk, not just WindowsSystem32?
View 6 Replies
Jul 25, 2011
How do you maximize a external minimized application that is already running?
iMatthiWare
MatthiWare N°1 .NET Freeware & Shareware site! Title: Project leader, Owner @ MatthiWare Current project: MW Virtual Desktop Contact: Admin@matthiware.net.ms Website: MatthiWare " MatthiWare... What else?!? "
View 3 Replies
Jul 22, 2011
I have a DLL that I made in FORTRAN to do some number crunching. It works in VB6 and in VBA within Excel. But I cannot get it to work in VB2008 or VB2010. If I try to access it the subroutines in the DLL I get either, 1) Structure of DLL invalid error or 2) Cannot find the DLL error.
Here is my VB2010 code for a smaller demo app that came with the FORTRAN development system. Again, this works with VB6 and VBA but not with VB.net
vb.net
Imports System
Imports System.Runtime.InteropServices
Public Class Form1
[code]....
View 3 Replies
May 20, 2010
I'm attempting to call an external public sub from another dll. I've added the dll as a reference and in VS Express 2010 it shows in my intellisense, however, it errors "Non-shared member requires object reference.[code]...
View 1 Replies