Search results for query: *

  1. S

    I need help to fix my array function to making multiple name in a textbox

    How about showing us what you've tried, thought of or considered so far?
  2. S

    Answered Need Help with Modify Registry Key

    It only webview 2 which is in WPF, and I do agree with you that this might be more suitable than what the OP is currently doing. It's webview which only belongs to Android if I recall. Anyway, getting late now. 4AM - Time to hit the sack. Good night!
  3. S

    Answered Need Help with Modify Registry Key

    Web browser control is based on settings from IE. I don't agree to changing the values of the registry of other programs, when their are a variety of other ways including events which can help with this. Besides, isn't is generally considered bad practice now a days to be storing data in the...
  4. S

    Answered How to Capture a click on WebBrowser1 Event ?

    Why would it mater if the mouse up event fires or not. What I gave you stops navigating if it's a URI you don't like. You only need to change the logic of the if statement to meet whatever conditions you want. Example : Private Sub WebBrowser1_Navigating(sender As Object, e As...
  5. S

    Answered How to Capture a click on WebBrowser1 Event ?

    Step into the code with your debugger and place break points on the first line of each and you will find out when you click a link and see which shall fire first...
  6. S

    Answered How to Capture a click on WebBrowser1 Event ?

    I already showed you what link was clicked. You can read it in the link being navigated too. Try what I gave you.
  7. S

    Answered Need Help with Modify Registry Key

    Start searching the interwebs for VB.Net encrypting a json file.
  8. S

    Answered Need Help with Modify Registry Key

    Let it be noted, that now-a-days, its generally not a good idea go editing the windows registry. Especially registry which does not belong to your application. Instead, I advocate you create your own config files in your own %appdata% folder instead. Find alternate methods to do what you want...
  9. S

    Answered Need Help with Modify Registry Key

    I'm surprised nobody corrected you on your approach. What are the consequences of editing these registry values for users who only use IE? How does your app restore the original values when your application is not in use, or if your program is removed from the computer? There is nothing...
  10. S

    Answered How to Capture a click on WebBrowser1 Event ?

    Private Sub WebBrowser1_Navigating(sender As Object, e As WebBrowserNavigatingEventArgs) Handles WebBrowser1.Navigating If Not e.Url.ToString.Contains("microsoft.com") And Not e.Url.ToString.Contains("about:blank") Then e.Cancel = True End If End Sub Now you...
  11. S

    Resolved How to cause run only one instance of IExplore ?

    For Each p As Process In Process.GetProcessesByName("iexplore") p.Kill() Next ;)
  12. S

    Resolved How to cause run only one instance of IExplore ?

    Sorry I misunderstood you. I thought your application was launching more than once. But if you have a browser control, and if you click on a link or something in that browser control, is it opening a new instance of internet explorer or something? If so, then cancel all new windows...
  13. S

    Resolved How to cause run only one instance of IExplore ?

    I'm not sure what you're asking. But if you want your app to only run once. Follow the steps 1-3
  14. S

    How to pass 3 parameters in http post method?

    You should know what your own code is doing. I'm trying to be rude, but if you don't know what your code is doing, how did you manage to write it? If you managed to write it, you should know what it's doing. Right? No, your parameters are not using encoding. Documentation ...
  15. S

    change forum theme color?

    You're welcome. (y)
  16. S

    change forum theme color?

    Yes. At the very bottom left of the page, you will find a link, it may say Shades of some color. Click it and change to the Light Theme.
  17. S

    WebBrowser1.DocumentCompleted , Error

    I find this site is better Technical documentation, API and code examples - that's the one you should be going by, and that's the one you should be using to learn, starting with the getting started guides. . .
  18. S

    How to pass 3 parameters in http post method?

    Are you posting to your own server or someone else's? If the request is on the same server, you should use the machine name instead. You can also use Fiddler - Web Debugging Proxy - Telerik to help with debugging.
  19. S

    How to pass 3 parameters in http post method?

    https://stackoverflow.com/a/8223079
  20. S

    Debug mode works, but not RUN mode

    And when you googled or binged around - what did you learn about this error?
Back
Top