Search results for query: *

  1. C

    Problem Checking Write Permissions on file using impersonation context

    I have created a click once application that is designed to look for a specific xml config file and modify several values in the file if it is foud and if the user has access to write to the file. The xml modification code works the problem I am having is testing and generating an error if the...
  2. C

    Getting Search results and adding each result to treeview control

    I'm having a problem with part of my application I'm trying to get the directory entry for a computer object in AD (it could be mutiple computer objects based on whether or not the users passes a wild card for the object name). These names would be added add a child node of the parent node...
  3. C

    Question How to wait until element is loaded in a web page?

    Using Mozilla Try looking into this: Mozilla ActiveX control Quote: Visual Basic.NET The Mozilla Browser control should be usable from any automation control container. This includes Visual Basic .NET, so follow these steps to add the control to your VB project: Install the control / or...
  4. C

    Question Logins - What's the best option?

    You might want to take a look at this: Creating a Parameterized Query - Beth Massi - Sharing the goodness that is VB - Site Home - MSDN Blogs Building a Secure Login Form (Parameterized Queries Part 2) - Beth Massi - Sharing the goodness that is VB - Site Home - MSDN Blogs
  5. C

    Question How to wait until element is loaded in a web page?

    Here it is: I created a module called LoadWebPage which contains the sub procedure to load the web page. You could easily pass text from text boxes in one of your forms to the sub procedure. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
  6. C

    Question How to wait until element is loaded in a web page?

    Will this work for you? Is it possible to have button1 call a child form with the WebBrowser control if so I this should do it on "child" form load: WebBrowser1.Navigate("login.yahoo.com") WebBrowser1.Visible = True While Not WebBrowser1.ReadyState =...
  7. C

    Error Handling question

    Thanks for the heads up...
  8. C

    Error Handling question

    I saw several posts regarding error handling but was not sure where to post my specific question so went ahead and started a new thread. I am moving along well with my application thanks to help from others previously on this forum however I am up again a wall again and need a little...
  9. C

    Problem getting file names recursively.

    Resolved Thank you very much JuggaloBrotha! I found out that the reason nothing was being written to the text file is because the user account that I was running the app as didn't have the necessary permission to delete the files but I didn't have any error handling in my script...what's...
  10. C

    Problem getting file names recursively.

    Hello, I'm new to the forum and new to VB.Net. I am trying to create a small application that will pull values from a config file (which is working) and then based on those values will search through directories recursively for files with specified extensions. In the end I would like these files...
Back
Top