Track IP's Using A WebBrowser In Program?
Jun 10, 2010
Is it possible to track IP's using a WebBrowser in my own program? My program connects to the site but how can I add a text in the site?
I want it to add the text (what the users typ in my Textbox) to the website and then click the button.
[URL]
View 1 Replies
ADVERTISEMENT
Jan 2, 2012
I am having an issuse with weither i should make 15 different fourms or just make 15 text boxes three for each round plus creating something that would add the doubles and triples I do not know what to use for a code, I have just started programming. this is what i have tried to do.
CODE:
View 4 Replies
Sep 8, 2009
I'm trying to make a program where you can keep track of your progress through various projects your doing. I'd like to have it so they can add a new project via the text box/button and then when they click on that project from a listbox or something(still trying to figure out the best way) it shows the notes they have typed etc. I know how to make it so its saved when they exit and all that good stuff but I'm not sure how I would do everything else.
View 10 Replies
Oct 20, 2010
I am trying to use a power meter to track the progress of my program; this will be for my use only and will be removed later. I would also like to display the percentage run in the meter. I already know what the start and end points will be for the meter. What do I need to search for? I have been looking and haven�t been able to find anything that suits my needs yet. I am running VB 2005.
View 7 Replies
Mar 18, 2010
I have created a little program that helps me keep track of tons of data by inserting it into sql. I created 5 forms and all 5 can insert data at the same time, but mostly just 1 of these is working continuously. I have noticed that the program will run, then at random times it will stop responding (can't minimize/click on anything/data entry stops), and the only way to stop is to kill the task. I can't even click in the debugger to set a break point when it happens, and setting breakpoints before debugging is useless as the program could run 2 hours and stop, or 10 minutes and stop. 5 forms, they open different excel files, insert data into sql, and repeat.
View 5 Replies
Apr 27, 2009
I want to make a program that will track Do Not Rent (DNR) People.I'm a intremediate vb6 programmer and have not coded in a long time.I do have and wanting to do this on VS2008 professional in VB2008.I did a simular program from a vb6 book about 12 years ago. it was a address book that i changed a little to add some things I needed it to keep track of, and it saved everything in a text file.I want to know what the pros and cons are for using a text file? xml file? or a data base?the data i be keeping track of will be vital statistics as name, state id number, id type, ect. and a picture of the id from a scanner or import from a .png, .jpg, or tiff image.If i use a data base file either Access 2007, MySQL, or SQL 2005/2008 file, do i need to have Office, MySQL, SQL 2005/2008 programs installed on the the computer im doing the programming on? do i need to have the above programs installed on the target computer?i do not think a txt file will work for me because of the picture i want to keep with the data not seperatly. So to make it a little more clear I want to be able to add, append/update, not to be able to delete a record, and be able to search the file for a record.I want to be able to navigate the records or file with first, previous, next, and last. each record will be showed seperatly.I would like to have a STATUS (lol thingy) that only my wife or I can change but let my employees be able to enter the rest of the information on there own. the STATUS Levels will be like 1st warning, 2nd warning, 3rd warning, DNR, and Rentable at our discression. I want it to only allow changes to status if they have the proper password. so i do not know if this also elimates txt files or xml files as an option.and when the wife, my employees or I make an entry I wanted it to add the time and date with the comments we entered in with the initials of the person whom entered the data. so i was thinking i will need to have security levels in my program and give each person a password so the program can fill out most small data itself.
if i do decide to use a database file to store the data, picture, and employee information can it be done with 1 table, or should i try to seperate the data in seperate tables? should i use one to one or one to many? I do not think one to many would be the best solution? it been like 12 years since I did any database programming in school and it was dBase3. If u think it be best to use multiple tables could u give me an example as to how to seperate the data.The client info would be like a address book with a picture and a comment box that will automatically add a date/timestamp and the users initials with a space between every updated or appended entry., and the employees would have there login in name and password, and initials.I was thinking of making a wizard to enter the data in for both employees and the DNR's as for people changing the date on the computer and entering info so to make it look they entered data on an earlier date I was thinking of having it log onto the internet time server and setting the date/time of the computer in the background as it loads up.
View 2 Replies
Oct 31, 2008
I want to create a program that will keep track of the amount of (network/internet download) data that has been received, but I have know idea how to go about doing it.Where would be a good place to start with this type of development? Or could some one give me example code that will get me started.
View 1 Replies
Dec 4, 2009
I have to write a program that will allow a usert o track the invitation list for a party. The user can enter the name of a person to be invited. When the send Invitatin button is clicked, the name appears in the checked listbox. This counts as an invited person.When an invited person confirms that they will be attending, the user will check the name in the checked listbox. this counts as a confirmed person.
What I am having a hard time figuring out is the codes! What would I declare my integer variables to hold the count of invited persons and the count of confirmed persons? And how would I code a loop to check if the name enetered in the name textbox already appears in the list box, if so, display a message telling the user that this person has already been invited?
View 3 Replies
Oct 16, 2009
I would like to integrate AIM in my program, but I have no idea whatsoever how to! I would rather do something that doesn't just put a web browser in with AIM Express.
View 1 Replies
Jun 3, 2011
I'm trying to find a way to make backgroundworker do what's in the webbrowser. There is a time-consuming part in the webbrowserdocumentcompleted event that I want backgroundworker to tackle. Unfortunately, I don't know how to link that part to backgroundworker so that BW can do that job instead of webbrowser.
Here's what in the webbrowserdocumentcompleted event:
Sub WebBrowser1DocumentCompleted(ByVal sender As Object, ByVal e As WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
If CheckBox1.Checked = True Then
[CODE]...
The time consuming part starts from line 2 to line 30. My program freezes whenever webbrowser tries to do this job, so I need BW to do this specific job instead.
View 4 Replies
Nov 12, 2010
Is there a way to disable javascript webbrowser in vb.net?
View 2 Replies
Aug 14, 2009
how to enter a page with a webbrowser like program. All I entered was this.
[Code]...
View 6 Replies
Mar 30, 2012
I am trying to fill out a form using data from form fields in my application. I believe the form is in Java script.[code]...
View 7 Replies
Aug 12, 2009
Im gonna make a program to a webbrowser game. There is a captcha, there with pictures of cars. i need to compare these two pictures and i want the result of equalnes in PERCENT. So if the picture are 75% equal then it click on the picture.
View 1 Replies
Jan 17, 2012
How to restart webbrowser control in vb.net
i am try WebBrowser1.Dispose but i dont know what the code re it to work
View 2 Replies
Jan 19, 2012
I have a simple code that visits web pages. It's done in VB2010 & it's just a simple form with a web browser control built in. After leaving it on for a few hours, it goes from using about 50mb of RAM to 700mb. All it's doing is visiting 1-web page per 2 minutes from a txt list of url's.
What can I do to flush/reset this un-needed RAM usage without re-starting the program itself?
View 9 Replies
Mar 28, 2009
I am having trouble submitting a form with my program which is using the WebBrowser control.
WebBrowser.Document.All("follow").InvokeMember("click")
I tried this but it did not work. The result is that the WebBrowser displays "This program cannot display the webpage" error page. The problem I think, is that the page is using javascript when it comes to submitting the form.This is the code for the submit button:
<input type="button" onclick="submitIt()" value="Follow" name="follow"/>
And this is the javascript for the onclick="submitIt()"
function submitIt(){
document.formx.submit();
}
Is there any way to invoke that javascript submitIt() method through VB.net?
View 4 Replies
Nov 19, 2011
The code for the button is:
<input name='trening' type='submit' value='Tren' /></td></form>
My question is what is the code I need to get my program press that button. It's on a web browser.
View 2 Replies
Feb 7, 2010
[code]I have web programming background and trying to learn windows programming....any guide or tutorial to make the transition smoother ?
View 2 Replies
Aug 31, 2009
For example how do u delete on row <tr> in a table <table>?how do you remove a <img /> entry?
by remove means not just set the innerText to?
View 4 Replies
Oct 16, 2011
I'd like to know if it possible to show HTML page created in VB using WebBrowser object without using files on disk.That is, create HTML file in memory and show it within WebBrowser object.
View 3 Replies
Nov 19, 2009
Does anyone know how to select one cell and mulitple cells in a table using the webbrowser control. Eg. If the web page (local) that I'm viewing in the webbrowser control has tables present in it. When i click on a cell in the table I want to be able to edit the attributes of the cell like adding an align or a class attribute. I think this is possible without using mshtml which I'm tryign to avoid as I can't find much user friendly documentation on it.
View 1 Replies
Aug 3, 2011
im trying to make my program click an link on the webbrowser control. The link changes everytime.Basically its an email and when opened in webbrowser its a google account versidication email.
HTML
<div id="message" >
<br>Welcome to Google Accounts. To activate your account and verify your email<br>address, please click the following link:<br><br><a href="https://www.google.com/accounts/VE?service=adwords&c=CMO6x5mUxoPQrwEQ9cmZvL-J1cWgAQ&hl=en_GB" target="https://www.google.com/accounts/VE?service=adwords&c=CMO6x5mUxoPQrwEQ9cmZvL-J1cWgAQ&hl=en_GB">https://www.google.com/accounts/VE?service=adwords&c=CMO6x5mUxoPQrwEQ9cmZvL-J1cWgAQ&hl=en_GB</a><br><br>
[code]....
View 1 Replies
Mar 13, 2010
I am using a Webbrowser in my program.
In the page source of a certain URL is the following: <input type="text" name="email" maxlength="50" value="email@email.com">
I'm trying to get the value part from the source and have it printed out to a TextBox on my program. I'm not sure how to do this but I tried. I made a new HtmlElement called email. Then I did email = WebBrowser1.Document.All.Item("email") However, when I try to add it to my textbox it doesn't work.
View 9 Replies
Mar 24, 2012
Before anyone tries to close this thread thinking this is for malicous purposes, let me tell you that it's not. What i'm working on is an application to save screenshots to files as soon as the 'Print Screen' key is pressed, as Jpegs or what ever. What i want to do is be able to minimize the application and I still want the application pick up on any 'Print Screen' presses, and save the screenshots. I've tried using the KeyPress event, but I soon realized that it only worked when the application had focus. I plan on using it to save screenshots every time I press 'Print Screen'
View 2 Replies
Jan 23, 2010
how can i import more than one track?
it only allows me to add one at a time, whole folders wouyld also be helpfulll
i wonder is someone called trujade will answer me :P or somone else...I like.....
Understandable Answers
1 2 3 4 5
- - - - - Rate yourself And Have A Kitkat
5 5 5 5 5
View 4 Replies
Aug 6, 2009
want to make a program to keep track of my emails sent in Outlook. I want to know what email I read (the email title and the email sender name) and what email I sent (the email title and also the name of the recipents) at the end of the day. Is that possible to do that?
View 2 Replies
Dec 17, 2010
Anyone ever set anything up to keep track of inventory?I need to check 1 time a month:
-Printers
-Barcode scanners
-labels
Am I just best to use Excel or is there better options?I need to keep track of repairs, part replacements, and orders.
View 3 Replies
May 3, 2011
i came a across a forum. it states the use of progress bar as track bar but that's after using mouse
Private Sub ProgressBar1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles ProgressBar1.MouseMove but i wanted to have it in click eventi.e.Private Sub ProgressBar1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ProgressBar1.Click
View 6 Replies
Oct 1, 2010
Is there a way to track all url's that browsers are going to?
View 3 Replies