Search results for query: *

  1. S

    Regex Issue - Nested Matches?

    Hey everyone. Sorry if this is in the wrong forum. After, no joke, 2 weeks of wrestling this problem I have finally given up, defeated. I'm currently writing a macro system, and need to be able to match things in the params of the called macro. So for example, assume someone types this: I...
  2. S

    Control not updating from cross thread call?

    Just incase anyone (For what ever reason) ever runs into this problem, this is how I solved it. Added this to frmMain: Private Sub frmMain_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'Set the control array up setControls()...
  3. S

    Control not updating from cross thread call?

    Hello everyone. First off, I hope this is in the right section. Sorry if its not. I have a few classes. One of the classes handles everything to do with updating controls (Such as adding items to a listview, etc.) and another is handling loops. I'm trying to add something to a richtextbox from...
  4. S

    Question Multiple Downloads?

    Like I said, it starts the download of all the files. All files show up as 0kb. Each file downloads one after the next, although rather slowly. After so long windows (by default as far as I know) cleans 0kb files. It's not downloading the files concurrently, but rather, after the last finishes...
  5. S

    Question Multiple Downloads?

    While I appreciate the input, the 0 byte and single-file download problem is still here. The problem wasn't the amount of threads. The amount varies from 1 to 200, with 200 being abnormally rare. However, with that being said, even with the change: ThreadPool.QueueUserWorkItem(AddressOf...
  6. S

    Question Multiple Downloads?

    Hello, This seems like a simple question, but I've been struggling with it for awhile now. I'm writing something to download about 200 small (Around 200kb) files at a time. I pass the file urls off to a class which starts the downloads. The problem is that it'll start the download (Just...
  7. S

    Checkboxlist Help please ; ;

    Changing it to CheckedItems I get the following errors:
  8. S

    Checkboxlist Help please ; ;

    Okay this is what I'm working on. This program keeps track of Linkshell[Guild] mates in the game Final Fantasy XI. Points are given for attendance. I want to add bulk points to many members via a check box, but for some reason it only adds points to the person I have selected. Code a picture...
  9. S

    Count total number in listbox?

    yes its written to a XML file
  10. S

    Count total number in listbox?

    I tryed : txtTotalMem.Text = lstInfo.Items.Count but its giving me 0 when I have 13 items in the box at the moment :( any idea?
  11. S

    Count total number in listbox?

    Hi again, sorry for another post asking a question ^^; still learning.. I need to get a total number of items in a listbox and display then in a text box :O any idea on what to do? I tryed lstInfo.Items.Count(txtTotalMem.text) but ive got nothing, I tryed google with prob 100 differnt...
  12. S

    Please help, Multiline string? [urgent]

    Can someone please help seriosly I gotta get this done :(
  13. S

    Please help, Multiline string? [urgent]

    Im not totaly sure why this was moved I have all the XML working, that isnt the problem so much, I use a class(example:) clsPerson: <Serializable()> _ Public Class Person Public Name As String Public MainJob As String Public SubJob As String Public Secondary As String...
  14. S

    Please help, Multiline string? [urgent]

    its gotta be on another line, do you know how to do it? It has to be exactly how it was typed [first example]
  15. S

    Please help, Multiline string? [urgent]

    Sorry I dont really know how to explaine what im doing and I know my code is really sloppy, this is the first "real" program I have ever made, Ill try my best to explaine but I dont know very much about coding so its going to come off as a bit 'wack'. First off background of what im trying to...
Back
Top