Search results for query: *

  1. S

    Rich Text Box Question

    THis is the code that works. thanks for the help. Dim GoodLines As New List(Of String) For Each s As String In frmMain.rtbEditor.Lines If Not s.Trim.Equals(String.Empty) Then GoodLines.Add(s) End If Next frmMain.rtbEditor.Lines = GoodLines.ToArray
  2. S

    Rich Text Box Question

    Thanks, but the code i have works fine. I pull the file into a RTB to enable the user to manually edit it. This made it easy to also pull it in when a line is being Added, Changed, or deleted in batch using a pause so the user can see the files being changed. I have no idea why they wanted this...
  3. S

    Rich Text Box Question

    I wrote a little app that has the ability to change, add, or delete a line of text in multiple txt files by pulling each one into a rich text box, changing the text line, and then saving the changes back to the file. Every thing works seems to work ok. The only issue i have is that when i add...
  4. S

    Updating Access DB

    I found this code at http://www.startvbdotnet.com/ado/msaccess.aspx but for some reason i can not get it to work. I am using Visual Studio 2005 with Vista 32. I have all the patches for Studio installed. I get the error A first chance exception of type 'System.InvalidCastException' occurred...
  5. S

    Record Traffice on Port 80

    I would like to write a simple program that monitors port 80 and records all HTTP traffic. (From IP address to URL) I have never attempted any thing like this and could use some guidance. thanks in advance for any help. Scott
  6. S

    DOS Window in VB

    I can open a Dos command prompt window by using shell, but is there any way to open a command prompt and lock it onto a vb form? So that the form controls the size and location of the window. thanks Scott
  7. S

    ADO conversion to ADO.net

    Thanks for the help
  8. S

    ADO conversion to ADO.net

    I have a very good simple example on using ADO that I found on the internet by Beacon. But I believe it was for ADO not ADO.net so I am trying to convert it. There is one line that I am having problems with. rs.Open "tbl_master", cn, adOpenKeyset, adLockPessimistic, adCmdTable I have...
  9. S

    Running Seperate Application in a Windows Panel?

    thanks i will give it a try. I was thinking more in the line of hosting an Remote Desktop RDP session. but I will give it a try. Scott
  10. S

    Running Seperate Application in a Windows Panel?

    I know how to execute a seperate program from my VB.net application. But is it possible to display an executed program in a control, such as a Panel? I am looking at maybe a Command Prompt Window or something like an RDP session. But I want to display it inside my program in a Panel or...
Back
Top