Search results for query: *

  • Users: Doug
  • Content: Threads
  • Order by date
  1. D

    Web Page Login Tester Fails When Scheduled

    My orgainization uses a simple windows form to test if our site is up. The form has a web browser control on it. After it loads, the browser control browsers to the site and logs in. Yes, it uses the document complete event to know when the pages are done loading. It verifies whether the...
  2. D

    Question How do I Drag-Drop multi-selected values from a listbox?

    I have a form with a datagridview and a listbox on it. I want to be able to select multiple items from the listbox and drag-drop them onto a row on the DGV. I have been able to do it fine with a single string usig the mouse_down event on the listbox. It does not work with a multiple...
  3. D

    Writing to "Application" in Event Log

    I need to write to the "Application" folder in the Windows Event Log, specifically on Windows Server 2003. We have a scheduled task that checks the Application folder and sends out notification emails. I must write to that folder or else my custom error will not be picked up. I created some...
  4. D

    Answered How Do I Raise Events From Dynamically Generated List(of class)

    I am dynamically adding controls to a form. The set of controls are part of a class. Since I can add mutliple instance of the class to the form, I am using List(of ) to contain them. As the last set of controls from the SearchCriteriaClass are "activated" a new instance is created and its...
  5. D

    Question Use Variable to Access Different Properties

    I am building a simple search application. It will go through files based on conditions that the user selects such as "Last Modified Date > 1/1/2013" etc. I want to allow users to use any of the fileinfo properties on either side of the condition. With 15 properties that can be on either side of...
  6. D

    Question Late Binding Warning With Excel Export and Option Strict

    I am exporting a two dimensional array to an Excel document. I have been able to successfully do it without Option Strict On. As soon as I turn Option Strict On, I get a Late Binding warning. How do I do this with Option Strict On? Here is the code that I am using from the internet: The...
  7. D

    Listbox Manual Databinding Problem

    I am creating a dataset from a simple XML file. A sample of it looks like this: <?xml version="1.0"?> <ProgrammerNotes> <Note ID="0"> <Title>First Note</Title> <Date>10/16/2012</Date> <Content>This is my first note.</Content>...
  8. D

    Question How Do I Record an Attribute's Path/Location?

    I am trying to update attribute values between two XML documents. The attributes are in the same node location in the two files but the value needs to be changed. I cannot search by attribute name because more than one node has the same name. This will be saved in an XML delta file. I am...
  9. D

    FileInfo Array Problem

    This morning is just not my morning. This seems pretty straight forward but for some reason I just can't get the syntax correct. Here are the lines of code that I am having issue with: Private _moveFiles() As FileInfo 'Inside the subroutine the code follows Dim counter As Integer Dim...
  10. D

    File Access Through RDP?

    Due to my organization's network security, we only have access to our servers through RDP. We have several different environments for development, testing and production which are all isolated form each other. When we are done with one phase of the SDLC we move code to the next environment. I...
  11. D

    Sequential Windows Clipboard Copy?

    I want to be able to put two strings, one at a time, into the Windows clipboard in order so that users can just paste them twice. The process would look like this: 1. User selects a row in a datagridview. 2. User clicks a button. 3. My application erases the current contents of the Windows...
  12. D

    Question User Control Not Updating

    I have created a user control and added it to my toolbar. I placed it in my project and found that I needed to modify it. So I made the changes then tried to reload it back into my project. But the problem is that it keeps loading the first version of my user control, not my new one. This is...
  13. D

    Dynamically Generated Form Problem

    Hi guys, I have a dynamically generated form. It is just a ListBox in a form container. It opens perfectly fine the first time but the second time I get an error. Here is the string of code that leads to the error: User closes the first mealForm and this executes: Private Sub...
  14. D

    Question Capturing Values From Two Lists Boxes During Drag and Drop

    Good morning, I am a beginner to VB.NET so please excuse me if I ask something that is obvious. Here is the situation: I have two list boxes. A users selects a value from each, clicks a button and the application creates a relationship between the two selected items by saving them in an...
Back
Top