Search results for query: *

  • Users: JD2369
  • Content: Threads
  • Order by date
  1. J

    Visual Basic 2008, why cant i click on this button on this webpage?

    Hi im trying to write a program to automate a process but i cant get my program to click on this website's button Here's the website's button code: <input type="button" class="w10pt" style="width:136px;display:block;font-weight:700;" value="Login"...
  2. J

    Same Progress bar show in 2 forms - VIsual basic 2008

    I have 1 form with the progress bar and 4 buttons with the following code. I would like to create another form that shows the same progress bar with the same progress. Please help Here's my code for progress bar form load code is: ProgressBar1.Minimum = 0 ProgressBar1.Maximum = 100...
  3. J

    I finally figured out how to click a button on a webpage but this 1 button isnt....

    VB2008 I am trying to click a button on a website but its not working for some reason. I've used this code on another site but the html code doesnt look the same. Here's the HTML Code <input type="submit" onclick="return fnbValidateLogin()" value="Login" name="Login"> Here's what i Tried...
  4. J

    A Program the finds Element by ID with a single click

    Is there a program where i can launch a website, click on a button or textfield and it will give me the getElementByID? I searched around for this and i have found nothing? Why doesnt this exist? I am writing a program that will enter information into a copiers web interface for scanning. The...
  5. J

    Login to a Website and click on a Submit Button Using Webbrowser - Visual Basic 2008

    i am creating a program that will log into a copier's web interface and automatically enter information without the user seeing. I found a code that will log into yahoo mail and click the submit button WebBrowser1.Navigate(TextBox1.Text)...
  6. J

    Visual Basic 2008 here is a code that will show you your smtp server but how do i....

    Visual Basic 2008 here is a code that will show you your smtp server Dim info As New ProcessStartInfo("nslookup", "-type=mx -timeout=30 sendmail.org") With info .RedirectStandardOutput = True .UseShellExecute = False .CreateNoWindow = True End With Dim proc As Process =...
  7. J

    VIsual Basic 2008 Input information from textbox into a website

    I have a form that has 5 text fields... TextField1 TextField2 TextField3 TextField4 TextField5 I need to automatically input those fields into a website via a button. The Website link is http://192.168.2.23 -Next i have to click login -enter a password Admin00 and select ok -Click on Basic...
  8. J

    Linking Comb Box Items to a Button to load a new form

    Linking Comb Box Items to a Button to load a new form Combo box 3 has 2 items.....Item 1, Item 2 i want it so if you click on the button when item 1 is selected it will load form3 and if item 2 is selected the same button will load form 4 Thanks for your help
  9. J

    Visual Basic 2008 Search Network For Printers IP addresses

    i am trying to find a code that will do a search and find the ip address of any printer on the network with a ip address? Please help thank you
  10. J

    Please Help, Linking 2 Combo Boxes Together

    Hi i've been searching everywhere to try to get this setup. I am running Visual Basic 2008 I have 1 Combo Box that Has 3 Entries, Kyocera>Konica>Toshiba I have a 2nd Combo Box that has entries for each of those manufactors...Kyocera has 3035,4035,5035....the konica has c250,c352,c452......the...
  11. J

    Visual Basic code to find SMTP Address

    Is there a way i can write this into a command button? In a CMD Prompt if you type: nslookup set type=mx set timeout=30 emailaddressdomain.com it will give you the outgoing mail server address is there a way i can write that into a command button and display the results into a textbox...
  12. J

    Visual basic code to setup your program to expire after 30 days

    Is there code in visual basic 2008 where i can set my program to expire every 30 days ? Thank You
  13. J

    Visual Basic 2008 share a folder

    I have the code to create a folder, does anyone have the code to share the folder and set the permission for everyone to have full control? Thank You
Back
Top