Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Sorwen

    Parse text with dashes and dates

    Just saw your message. Cool. I'm half awake and it really annoyed me I couldn't think it through right. -I hate Microsoft! -Forever and always forward. -My kingdom for a edit button!
  2. Sorwen

    Parse text with dashes and dates

    I seriously need more sleep. That isn't right because that will always leave the last item off. In this instance that would be a blank so it isn't noticeable. Here. Private Sub test() Dim pStr As String = "2/1/2012 - 321 2/1/2012 - 213 2/1/2012 - 21 2/1/2012 - 321 2/1/2012 - 231...
  3. Sorwen

    Parse text with dashes and dates

    Oops. You don't need the last part in there. For Each curstr As String In colDate ListBox1.Items.Add(curstr) Next -I hate Microsoft! -Forever and always forward. -My kingdom for a edit button!
  4. Sorwen

    Parse text with dashes and dates

    A few things. How are you getting the string in the first place? Next, do you know for sure the data will always be in this format? No 02/01/2012 dates, always date first, etc? The last item has nothing after the dash. Can that happen or did you just cut off your example too early? Finally...
  5. Sorwen

    Updating a list(t)

    I also forgot to mention it beggs the question do you want people(or yourself if it is just you) actually setting Total. Think about making it ReadOnly. -I hate Microsoft! -Forever and always forward. -My kingdom for a edit button!
  6. Sorwen

    Updating a list(t)

    Oops! Add to mTotal not Total(mTotal += value). -I hate Microsoft! -Forever and always forward. -My kingdom for a edit button!
  7. Sorwen

    Updating a list(t)

    Since they are properties fire an event each time one is changed to update the total. Public Class typeList Private mType1 As Double Private mType2 As Double Private mType3 As Double Private mType4 As Double Private mTotal As Double Public Property Total() As Double...
  8. Sorwen

    BitConverter with CType

    How are you reading in the data being sent? Is your program doing it directly or is it saved some where frist? -I hate Microsoft! -Forever and always forward. -My kingdom for a edit button!
  9. Sorwen

    Find TextBoxes with Equal Values

    First, I would suggest showing what you have so far. Second, what is the end result of this? What do you want to do once you find the matches? This could make a big difference on what you might want to do. -I hate Microsoft! -Forever and always forward. -My kingdom for a edit button!
  10. Sorwen

    Check that active directory group exists...

    There are lots of places in the Active Directory where "group" data can be stored. Use this to find where the group data is stored first. It puts all the variables you can access for a given name in a RichTextBox. Private Sub ActiveDirectoryToolStripMenuItem_Click(ByVal sender As...
  11. Sorwen

    StartupPath property

    You can also specify the start path in any standard shortcut or it is automatic for click once deployment. I could have sworn there was a way in code as well, but if so I can't remember it now. -I hate Microsoft! -Forever and always forward. -My kingdom for a edit button!
  12. Sorwen

    Problems using System.Diagnostics.Process.Start

    That is mostly true. However, the other thing though is for VS2005 and VS2008 at least when no path is supplied and one is required the program will first check the startup directory. By default that will be the directory the current running program is in unless you specify differently in the...
  13. Sorwen

    Unable to download via WebClient now.

    Well that was stupid I didn't even notice I was calling the responce twice and that is why it is blank. So I've actually made no progress at all. :( -I hate Microsoft! -Forever and always forward. -My kingdom for a edit button!
  14. Sorwen

    Unable to download via WebClient now.

    This is the closest I've come to possibly something right. It at least doesn't respond with the login page. The problem is that it doesn't respond with any page. Dim request As HttpWebRequest = CType(WebRequest.Create(Link), HttpWebRequest) request.CookieContainer = New...
  15. Sorwen

    pocket pc compact .net framework signature image class

    Wow I need to slow down a bit. Hehe. That last part should read: The only other suggestion I can make is to inherit from a picture box instead. I helped someone with that before, but couldn't find the original thread. Here as a drawing version of it to look at for a starting point...
  16. Sorwen

    pocket pc compact .net framework signature image class

    You seem to be correct. You are missing the part that say 100% what is happening (SignatureData in SignatureBites isn't declared anywhere in that code sample), but _lines is nothing more than an Array of points. What you are saving is a map of how the signature is drawn not a picture of it...
  17. Sorwen

    Get file asp url.

    I found the problem isn't with the at all link, but with the security. Now the problem is that I can't get anything including the httprequest to login and make a secure connection. Setting network credentials, uploading values, and passing the session cookies all fail. Still it is definitely...
  18. Sorwen

    form resize problem after upgrading to vb 2010

    It sounds like the controls are not anchored correctly. You want to make sure that anything that is close enough to the right side of the screen to be effected by resizing is anchored to the right and not the left. That is the only thing I can think would cause that. -I hate Microsoft...
  19. Sorwen

    form resize problem after upgrading to vb 2010

    Do you mean the form isn't resizing now or that when you resize the controls are no longer visible? What happened if you manually resize it? Also screen shots would be helpful as well. -I hate Microsoft! -Forever and always forward. -My kingdom for a edit button!
  20. Sorwen

    Unable to download via WebClient now.

    A site we use to get data files from has recently change how their security works and my window program no longer works. Before I was able to use the IE web browser plug-in to login and navigate to the download page. I would collect all of the links and then download the files using the...

Part and Inventory Search

Back
Top