VS 2008 Write A Small Application That Simply Monitors Website Watching For Specific Hyperlink Text To Appear?

Feb 11, 2010

I am trying to write a small application that simply monitors my web site watching for specific hyperlink text to appear. I have been searching around and trying different approaches for a few days and have to accept defeat on this.Basically I need to be able to type in part of a hyperlink or the actual text of the hyperlink into a textbox to be watched for. When it is seen it opens the link in a new window.

Dim theElementCollection As HtmlElementCollection
theElementCollection = WebBrowser1.Document.GetElementsByTagName("a")
For Each curElement As HtmlElement In theElementCollection

[code]....

View 1 Replies


ADVERTISEMENT

VS 2008 : Write A Small Application That Is Able To Read What Button Is Pressed On The Gamepad?

Sep 13, 2009

I have this gamepad: [URL]I want to write a small application that is able to read what button is pressed on the gamepad.I've seen this thread:[URL]but this does not read the input of the controller, it only initialize it.[URL]

View 7 Replies

Write An Application That Monitors Internet Usage?

Mar 11, 2010

I am trying to write an application that monitors internet usage. So it sort of needs to act like a firewall/proxy, recording each site the computer goes to. It will record all these sites in a log file. Using a proxy server on the network is not an option, each computer running this software needs to be self sufficient. Do you have any suggestions on what to use for this project?

View 1 Replies

[2008] Write A Small Application That Just Writes In Certain Cells Of A Set Page Of An Excel Sheet?

Feb 17, 2009

Basically, i have to write a small application that just writes in certain cells of a set page of an excel sheet, the sheet will always be the same layout.

View 2 Replies

Making Specific Text A Hyperlink?

Jun 22, 2010

is it possible to have specific text in a listbox line to act like a hyperlink?

dim sLocation as string = "\serverfoldersubfolder"
LstOut.Items.Add("text text text" & sLocation)

I would like this to open in explorer.

This is not an ASP application, just a plain old winform.

View 2 Replies

Write A Program To Go To A Specific Website?

Oct 20, 2009

Is there a way to write a program to go to a specific website, enter some things injto textboxes, and then click a button? I want to use this to log into some of my accounts for other sites once a month, Instead of entering the username and password manually.

View 2 Replies

File System Watcher - Application That Monitors A Specific Folder For File Changes Such As Modify Deletion, Update

May 4, 2011

I am developing an application that Monitors a specific folder for file changes such as modify deletion, update, etc. The only problem I have is , the application doesn't fire up File events.

Here is the code:

Imports System.IO
Imports System.Diagnostics

Public Class Form1

[CODE].............................

View 8 Replies

Write A Small Application That Will Show GPU Temperature

Oct 19, 2011

I'm trying to write a small application that will show the GPU temperature.I'v found the following documentation about the subject: url...according to this documentation, I can use the nvcpl.dll file (which is a part of the NVIDIA driver) like this:[code]Now the problem is that this code keeps sending back 0, which means somethin is wrong here and the function is not working.

View 1 Replies

Automate A Webpage (e.g. Retrieve Page Text, Login Website, Search, Click Button Or Hyperlink) Via WebBrowser?

Apr 11, 2009

How do I automate a web page (e.g. retrieve page text, login website, search, click button or hyperlink) via WebBrowser?

Please remember to mark the replies as answers if they help and unmark them if they provide no help.

Welcome to the All-In-One Code Framework! If you have any feedback, please tell us.

View 1 Replies

Asp.net - How To Make Hyperlink.Visible=False If Hyperlink.Text = 0

Jan 20, 2011

I am trying to hide Hyperlink visibility in Repeater if there isn't any Text value in Hyperlink. Something like this:

Protected Sub rptReferenca_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.RepeaterItemEventArgs) Handles rptReferenca.ItemDataBound
Dim lnkThumb As HyperLink = CType(rptReferenca.FindControl("lnkThumb"), HyperLink)

[Code].....

View 3 Replies

Make An Application That Searches A Certain Website For A Specific String?

Nov 1, 2009

I was wondering how I could make an application that searches a certain website for a specific string. Or, if I could, list the search results in a listbox. Reason for: I wan't to make an application that searches serial websites for certain serials. Like 'Craagle'.

View 2 Replies

Get The Text From A Specific Textbox From A Website?

Dec 9, 2010

what I want to do is get the text from a specific textbox from a website then copy it and paste it into an textbox(into my.exe) .

*With those code i get alway and error that clipboard is not supported ! *

my codes :

Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
WebBrowser1.Navigate("http://10minutemail.com/10MinuteMail/index.html")

[Code[,,,,,,

View 2 Replies

Write Text From Textbox Control To Text File .txt At Specific Location?

Mar 10, 2011

Is it Possible for me to read text from textbox control and write it to .txt file at specific location.

for an instance.... say below with quote is my Text in .txt file:

"THE QUICK BROWN FOX JUMP OVER THE LAZY DOG"

and with programming code I want to change some text in the same sentance become....(see below)

"THE QUICK GREY FOX JUMP OVER THE LAZY CAT"

so you can see the word BROWN change to GREY and word DOG change to CAT

View 7 Replies

Write A Simple Program Which Will Simply Have Buttons To Open Spreadsheets?

Jan 12, 2009

I am trying to write a simple program which will simply have buttons to open spreadsheets, and a search facilities to look for spreadsheets with a title which is an invoice number. I have my basic forms layed out, all a need now is help with the code.

I am using Visual Basic 2008 Express, and just need a line of code for a button to open an application/spreadsheet. Also, is it possible to have a search box open a file automatically?

View 9 Replies

Create A Small Application That Can Make Small Calculations?

Feb 1, 2010

On form 1 , i have a number of buttons that open up different websites.What i want to do is when i click a button on form 1 , i want forum 2 to show ( Form2.show() ) , Form 2 will have a list (Buttons) of internet browsers.

View 4 Replies

Write Text Between Specific Html Tags?

Sep 26, 2010

Is there a way to write text between html tags?like <textarea>TEXT HERE

View 7 Replies

VS 2005 Small Console Application That Writes (TARGETDIR) From Msi Installer To A Text File

Oct 30, 2009

I have a small console application that writes the [TARGETDIR] from my msi installer to a text file.If I choose C:Program Files as the installation folder, it only writes out C:Program..What would you use so that it doesn't stop writing when there's a space? [code]

View 3 Replies

Read And Write Specific Line From Text File

Jul 26, 2009

I have two part in text file. Let say Part 1 and part 2. I want to write part2 in different file and part 1 in different file.

View 5 Replies

VS 2008 Creating A Small Application - Loops ?

Mar 24, 2010

I am trying to learn by creating a small application to help my son learn math. It works but I know there are better ways of accomplishing what I need.

For example:

'Declare variables
Dim num1 As Double = CDbl(frmMath.txtNum1.Text)
Dim num2 As Double = CDbl(frmMath.txtNum2.Text)
Dim answer1 As Double = CDbl(frmMath.txtAnswer.Text)

[CODE]...

I imagine I would need something like a do while loop?

View 1 Replies

Write To Specific Pos In Binary File In VB 2008?

Oct 26, 2010

I'm amazed at this situation. In QBasic, you could just easily GET and PUT whatever you wanted at the exact position in the file that you wanted. Now in Visual Basic 2008 I'm just completely stumped.

I can't use FilePut or FilePutObject because of a twisted issue. It adds a couple of bytes to describe the length of the data being written: what's the point of BINARY read/write if it won't allow you to write EXACTLY what you want and nothing less or more? There's a way to turn off this issue, and that's by setting the parameter StringisFixedLength to TRUE, but that's where the twisted part comes in. You can't do that. As far as I can tell you have to redefine the function using SUB, for example:

[Code]...

My.Computer.FileSystem.WriteAllBytes. To my amazed surprise, this function doesn't even bother to include the possibility that I might want to put the data in a specific position within the file! I can't believe this. You can either specify to APPEND at the end or not, in the latter case apparently resulting in a write to the beginning of the file. No option at all to specify where in the file you want to put the data. I can't believe this.

How do you write to a SPECIFIC position in a binary file in VB 2008, and do it without the program deciding to add a few "informative" bytes to your data before it's written (totally undermining the whole point of binary files)?

View 1 Replies

Control Multiple Monitors From My Application?

Aug 11, 2009

I have build custome windows in my application with cust contorl box on the top right corner. Minimimize, maximaize and close button are made by me.

I want to make another button beside that one which will control displaing of windows in multiple monitors environment. So, cllick on that button will list monitors and I send that window to second monitor.

View 2 Replies

Write A Small App To Show OS Install Key?

Jun 13, 2011

I'm trying to write a small app and I want it to show the OS Install key. How can I pull this? I'm using Visual Basic 2008.

View 8 Replies

Write A Small .exe App To Add A Line Item To A List?

Apr 28, 2009

Is it possible to create a windows application in VB to take form input of a text box and put that to a sharepoint server as new list item?I want an exe that when ran, opens to a form with a text box or two and a submit button, that creates a new list item on a sharepoint list.I am using VS 2005 , code in VB. All my google searches come up with stuff that seems to run on the sharepoint server itself, not a program i hand out to people to run from the desktops.I've tried so many permiations of what i found through google searchs and my brain just hurts atm. I'm new to VB + VS, my background is in VBA on Excel, and i have an solution that works in vba, but causes headaches due to macro security etc.

View 1 Replies

Write A Small Program For ITunes Using Windows COM?

Apr 20, 2010

I are trying to write a small program for iTunes using Windows COM. We are able to talk to iTunes and create popup boxes that show the current track, and a few other small things. However, when we try to set this info to a Label for example, we get:

InvalidOperationException was unhandled by user code Cross-thread operation not valid: Control 'Label1' accessed from a thread other than the thread it was created on.

The program then hangs and locks iTunes from closing. I believe the issue is the event handler I have created, which I know very little about. We are using VB 2010, so that may change some things. We followed a rough example from a forum post HERE. If you scroll down the orange text, you will see a reply right after by Will Hughes with a "Handles iTunes.OnPlayEvent". If I add this to the end of my event handler, I get:

Handles clause requires a WithEvents variable defined in the containing type or one of its base types. Not sure if its important to the issue or not, but I found it curious. Our code is shown below.

Imports iTunesLib
Public Class Form1
Private iTunes As New iTunesApp

[Code].....

View 3 Replies

Write Small Single Function Wrapper?

Jul 15, 2009

I am looking to write a small application that will mount an image using imagex and show a progress bar as to how much of the image has been mounted.

View 2 Replies

Write A Small App That Finds The Local Machine's IP Address?

Feb 26, 2009

I'm trying to write a small app that finds the local machine's IP address (and SNM, DefGW, 1st DNS server, etc) then displays this nicely.

I don't want to go down the route of doing a Shell "ipconfig /all > somefile" then reading it in as I *know* this can be done another way.

I'm using VB 2008 Express Edition.

View 8 Replies

Write A Small Program That Copies A File From A USB To Another Directory?

Feb 4, 2009

What I'm trying to do is write a small program that copies a file from a USB to another directory so a program already installed on the computer can load this data.Usually copying files from one directory into another wouldn't be an issue.

[Code]...

If possible i would also like to change the code i have written so it just loads January2009.txt from the "root directory" of the USB rather than having to specify H: because if i put the USB in someone elses computer this could change to G: and then it wouldn't work.

View 4 Replies

Write A Small Program That Shows A Clock Using A Timer In .net?

Feb 24, 2011

I am trying to write a small program that shows a clock using a timer in vb.net, I want the clock to display the time and date as a binary display i.e. if it's 10:01:21 the clock would display boxes or buttons in rows going from 1 to 2 to 4 etc upwards and changing colour when at certain times. the example time above would be a button for 8,a for 2 to make the 10 o'clock, a button for the 1 minute and a button for the 16, 4 and 1 seconds making 21 seconds.

View 1 Replies

VS 2008 Embed A Application In A Website

May 8, 2009

Is it possible to do this so I can embed a VB .NET application in a website. Or is this something which is more suitable for doing in a WPF broswer application?

View 1 Replies

VS 2008 Visual Studio 2008 Randomly Crashing When Simply WRITING Code?

Oct 25, 2009

i'm running Visual Basic 2008 Express Edition (latest service pack ... 9.0.30729.1 SP) on XP Pro SP3 with .Net Framework version 3.5 SP1 I have a rather large project I've imported from Visual Studio 2003 (Standard).The project compiles and runs just fine ... my compiled program itself never crashes.

But while I actually have the code up in the IDE, and simply adding/deleting code the whole IDE will randomly crash (usually without warning) and I loose my changes since last save.If/when I do get some hint of why it crashed, I get a window about illegal whitespace or something.... but that's rare ... usually it just crashes without warning and the whole IDE completely shuts down instantly. just deleting/adding a character is enough to trigger it maybe once every 30 minutes.

This is on a computer that is otherwise very rock solid .... no other program ever crashes, etc.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved