Search:

Type: Posts; User: Teunjack

Page 1 of 3 1 2 3

Search: Search took 0.05 seconds.

  1. Replies
    4
    Views
    616

    Re: Characters not reading/writing properly!

    I can't rate your post, but I wanted to rate it as the best solution possible! Thank you very much :)
  2. Replies
    4
    Views
    616

    Re: Characters not reading/writing properly!

    [removed] <- There you go! :)
  3. Replies
    4
    Views
    616

    Characters not reading/writing properly!

    I have a code to rewrite an ini file, but characters such as '&#241;' will get changed to '?'. This way my whole ini file will get ****ed up, I have no idea to fix this and this is a serious issue for my...
  4. Replies
    7
    Views
    796

    VS 2010 Re: [RESOLVED] Rewriting an INI file

    Don't think my method is really that good as it is really slow, you'll see it soon when I'll post a thread asking someone to speed up my code. ;)
  5. Replies
    7
    Views
    796

    VS 2010 Re: Rewriting an INI file

    Thanks for your effort jay20aiii, but I've already found out how this works. :)

    Now let's close this 'illegal' thread.
  6. Replies
    4
    Views
    570

    VS 2010 Re: Remove item from a string()

    Dim AllLines() As String = IO.File.ReadAllLines(CurDir() & "\BunkerBuilding.ini")

    For i = 0 To AllLines.Length - 1
    Dim CurrentLine As String = AllLines(i)

    If...
  7. Replies
    4
    Views
    570

    VS 2010 Remove item from a string()

    Hello,

    I am trying to remove an item from a String() (just splitted a text into lines to that string()), and could not find how to do this. Are there even ways to do this?

    Thanks.
  8. Replies
    7
    Views
    796

    VS 2010 Re: Rewriting an INI file

    Still we would bump to the problem that I can't know if the part I am in has the RPGPlayerDataObject header, that's mainly the hardest part where I need help on. I don't want to remove the earliest...
  9. Replies
    7
    Views
    796

    VS 2010 [RESOLVED] Rewriting an INI file

    Okay, so I am making an application so I can easily clear up this ini file. The ini file contains such data as playerlevels, abilities they own, abillities available, conclusion: it contains all...
  10. Replies
    9
    Views
    2,231

    VS 2010 Re: Timer to check if directory exists

    Okay, so what I have now is:

    Public Function IsUModelRunning() As Boolean
    Return (From X In Process.GetProcesses _
    Where X.ProcessName.StartsWith("UModel") Select...
  11. Replies
    9
    Views
    2,231

    VS 2010 Re: Timer to check if directory exists

    Okay, so what I do now is checking if the process closed, because whenever each file is dumped, the process closes, that means this is even a better way to check! Again, the same problem, it's stuck...
  12. Replies
    3
    Views
    599

    VS 2010 Re: Watching for new processes

    I'm sorry, I explained it all wrong.. What I meant was listing processes that were created during the application running, not a realtime process list, sorry :(
  13. Replies
    3
    Views
    599

    VS 2010 Watching for new processes

    Hi again,

    I am trying to make an application which will list all processes in a string when it starts. After it has listed them all I enable my timer, and in the timer there gets checked if the...
  14. VS 2010 Re: Running application in background

    Thanks!
  15. Replies
    9
    Views
    2,231

    VS 2010 Re: Timer to check if directory exists

    Okay, sorry, but again, I do not really get it how to include this in my code :(

    I guess it couldn't hurt for me putting my code public, as I know no one else making applications like this for...
  16. Replies
    9
    Views
    2,231

    VS 2010 Timer to check if directory exists

    Hi again!

    I have a security timer to check if the directory exists which I want to access after it's been created by an external application, but what I have done doesn't seem to be the solution...
  17. VS 2010 [RESOLVED] Running application in background

    Is it possible to start an application not being visible? This application is a batch application and my application would look way better if I could hide this batch.

    Thanks in advance!
  18. Replies
    10
    Views
    1,117

    VS 2010 Re: Can't parse 'h1' to integer?

    Works like a charm! Thank you very much!

    EDIT: I can't rate your post since I've rated a post of you not too long ago to, sorry!
  19. Replies
    10
    Views
    1,117

    VS 2010 Re: Can't parse 'h1' to integer?

    Only if someone could tell me how to do this, as this is about the most important part in my application :)
  20. Replies
    10
    Views
    1,117

    VS 2010 Re: Can't parse 'h1' to integer?

    I'll be more clear at my point, I currently have a ascending sorting code, where the string can be different, for example ABC8 or H1, that's why my arrange 'array' sub needs to be changed at this...
  21. Replies
    10
    Views
    1,117

    VS 2010 [RESOLVED] Can't parse 'h1' to integer?

    I am trying to parse several strings to integers where I both tried cINT(string) and Integer.Parse(string) but it seemed to fail at the string 'h1', I think I need to use substring for this, but as...
  22. VS 2010 Re: Sorting string in ascending/descending order?

    Thanks a bunch, both! :D
  23. VS 2010 Re: Sorting string in ascending/descending order?

    Okay, so what I did is this:

    Dim strTemp As String
    Dim strArray() As String = AllFiles.Split("|"c)

    For i = 0 To strArray.Length - 2
    For j...
  24. VS 2010 [RESOLVED] Sorting string in ascending/descending order?

    Hello!

    I am performing some filescans in a directory where I always neither get ascending or descending order of filenames. What I currently have is a logical order, but what I want to make of it...
  25. VS 2010 Re: The given path's format is not supported.

    Oh, sorry, already found my problem there, still thanks for your time!
  26. VS 2010 [RESOLVED] The given path's format is not supported.

    Yeah okay so, I am sure my directory exists, I just do not understand why this errors gets sput out..

    code:

    For Each file As String In My.Computer.FileSystem.GetFiles(CurDir() + "/"...
  27. Replies
    2
    Views
    535

    VS 2010 Re: Quick mass edit in Treeview

    Works like a charm! Thank you VERY much, just the solution I needed!
  28. Replies
    2
    Views
    535

    VS 2010 [RESOLVED] Quick mass edit in Treeview

    Hi folks,

    I am currently editing a big mass of items, which is taking very long to do. Even loading up my Treeview from a file is faster. That's why I am asking this, is there a better method for...
  29. Replies
    13
    Views
    2,838

    VS 2010 Re: StartsWith not working!

    This works VERY fast and is even better than I expected my solution to be! Only thing wrong is that when it has looped through everything that indeed starts with it, it throws an exception:...
  30. Replies
    13
    Views
    2,838

    VS 2010 Re: StartsWith not working!

    No errors, just not returning true when it DOES start with it..

    Thanks for your time
  31. Replies
    13
    Views
    2,838

    VS 2010 Re: StartsWith not working!

    That's what I meant and didn't work, had messed around before posting the coode so thats why it's messed up on this page now..
  32. Replies
    13
    Views
    2,838

    VS 2010 StartsWith not working!

    I am trying to check if the string starts with certain words before I even add it to my item list, but it doesn't seem to return true even when it should return true..

    File I am reading through...
  33. VS 2010 Re: Tagging certain strings in items (in listbox) with colors/bold/etc

    Well, for example, when the time is 14.14 at my location, the time can be 15.14 somewhere else, I didn't think your method had this, so I switched to a string.
  34. VS 2010 Re: Tagging certain strings in items (in listbox) with colors/bold/etc

    Oh, damnit, have been trying around and trying more, but I can't fix this one.. Time dates are not showing correct, and yes I changed it to a string so I could make it timezone compatible, but please...
  35. VS 2010 Re: Tagging certain strings in items (in listbox) with colors/bold/etc

    That sir, was very helpful, I am having some problems now first:

    1) The top message is bugged and is only 3/4 of the size so I can only read the half of the chatmessage.
    2) The date/time tag is...
  36. VS 2010 Re: Tagging certain strings in items (in listbox) with colors/bold/etc

    Thank you very much!
  37. VS 2010 Re: Tagging certain strings in items (in listbox) with colors/bold/etc

    Does it also wrap the text, otherwise I will lose my text wrapping :(
  38. VS 2010 Tagging certain strings in items (in listbox) with colors/bold/etc

    Hello everyone, I have made a little application for me and my friend to be able to chat with eachother, but now we have some unclear strings as you can see on the image below:
    ...
  39. Replies
    0
    Views
    454

    VS 2008 Download/Uploading issues

    I am currently making the clientside of a remote plugin installer for my minecraft server. Here my idea is that you can add new urls to plugins, my serverside application will download the URLs to do...
  40. Replies
    2
    Views
    562

    VS 2008 Re: Character adding

    Thank you very much :)
Results 1 to 40 of 120
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width