Search results for query: *

  1. B

    Easy Question about Browser

    It Was Link Labeling Private Sub HomePageToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles HomePageToolStripMenuItem.Click Try VisitLink() Catch ex As Exception ' The error message MessageBox.Show("Unable to open link that was clicked.") End Try End...
  2. B

    Easy Question about Browser

    I need to add a link in my about page and have it open an external browser "the users default browser" This may sound silly, but what code should I use for this, and how to I make it show in my about page. Thanks, Brandon
  3. B

    Question about adding user authentication

    This may be a question for a different area, I'm not sure. Anyways. What my software needs to do now is load a page that requires a user to login first before the main application would run. There are a few things I'm not sure of so I've listed them here. 1. The user would register for the...
  4. B

    Add image to tab control

    I have a program that is running several tab controls. The problem is I can't seem to add an image to the tab. Does anyone know how to do this. It doesn'ts seem to be in the properties. Thanks Brandon
  5. B

    Getting information from a site

    Try htmlagilitypack. I think it will bring it in and then you can parse it. http://www.codeplex.com/Wiki/View.aspx?ProjectName=htmlagilitypack
  6. B

    Colordialog return html value in Text Box for VB.net

    Cost me $7.00 dollars, but got the solution. Thought I would contribute Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click If ColorDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then TextBox1.Text =...
  7. B

    Colordialog return html value in Text Box for VB.net

    Could you elaborate. I am so new to this. This was the advice, or at least what I made of the advice from my MSDN database. Thanks Brandon
  8. B

    Colordialog return html value in Text Box for VB.net

    here's a screen shot of what I'm running into Thanks so much for the feedback so far, I feel like I'm getting so much closer. colorValue is a textbox that is in the form.
  9. B

    Colordialog return html value in Text Box for VB.net

    PrivateSub Normal_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Normal.Click Dim instance As ColorTranslator Dim Color As ColorDialog If Color.ShowDialog() = Windows.Forms.DialogResult.OK Then YourColorVar = instance.ToHtml(Me.colorValue.Text) EndIf That didn't...
  10. B

    Colordialog return html value in Text Box for VB.net

    Here is what I have, but it's still not working PrivateSub ColorSelect_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ColorSelect.Click Dim instance As ColorTranslator Dim Color As ColorDialog If Color.ShowDialog() = Windows.Forms.DialogResult.OK Then...
  11. B

    Colordialog return html value in Text Box for VB.net

    I'm not sure if this post is supposed to be in this area but here it goes. I have this application that is kind of a WYSIWYG application. I'm trying to create a popup colordialog box so the user can select a color, have that colors html value stored in a textbox, then they can click a button to...
  12. B

    Copy information from one form into another.

    Here it would work like this, if it worked. this doesn't function. It's just an example I've setup. If you can make the code work and then repost it that would be awesome.
  13. B

    Copy information from one form into another.

    This might be really simple but it's been plagging me. Here is a general problem I can't seem to hack. Lets say you have two forms. Form1 and Form2. Form 1 contains three text fields. Username.Txt, UserPassword.Txt and UserPurchaseID.Txt. Now the user needs to be able to click the open...
  14. B

    Control Internet Explorer

    Nope just trying to extend the question. Just trying to extend the question beyond the basics. No threads tend to elaborate on auto navigation so I thought we could. This forum was setup for merchant services on my site. So i thought I would use it as an example.
  15. B

    Control Internet Explorer

    Thanks, that Helps. But lets take it a step further Lets say that you don't have this luxury of knowing what the home page is. For instance you are trying to log in to several different sites, as some people might be. The login link has to be clicked on from any page. Reason being in this...
  16. B

    Control Internet Explorer

    Ok but how do you do this Lets say you are not on the registration page. In the source the login button <a href="login.php. Lets use my forum for example. If the user is on the homepage http://www.merchantcheckrecovery.com/phpbb Now they want to login to the site. They want there form in VS...
  17. B

    Paste before and after highlighted text

    My button looked like this. This worked perfect. Thank you for your quick response. This forum rocks. PrivateSub BoldBtn_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BoldBtn.Click C.SelectedText = "<b>" & C.SelectedText & "</b>" EndSub C was the name of...
  18. B

    Paste before and after highlighted text

    Within my application i have a text editor which is kind of like a WYSIWIG editor. Does anyone know how to make it so you can highlight text and have button that will place text around it. For instance. I click the bold button with the words "hello world" highlighted After clicking the...
  19. B

    How do I copy data from one control to another

    Solution.... Thanks everyone Thanks for the help. Read the problem is resolved I've included a sample application http://brandonbarclay.com/FormsExample.zip you can download to see how it works. Thanks for everyones help.
  20. B

    How do I copy data from one control to another

    Ok here's what I mean On the left side of my form I have a multiline textbox which allows the user to type in any information that they want. Then when they place their cursor on the right side of the form "the web browser built into the application" Then they can place their cursor in the text...
Back
Top