Search:

Type: Posts; User: teguh123

Page 1 of 13 1 2 3 4

Search: Search took 0.12 seconds.

  1. Out of memory exception when there are plenty of memories in 64 bit system

    I make a program.

    Part of the program is to set the "differences" between 2 large text files.

    The files aren't really that large. Like 10 million lines.

    I save them on a hashtable. Again I...
  2. Re: Why I got System.OutOfMemoryException when using

    Memory for my application?

    I bought a bunch of computers at 64 bits so I can handle large files.

    Hmm... how to improve that?
  3. Why I got System.OutOfMemoryException when using

    Dim output1 = System.IO.File.ReadAllLines(file).ToString


    The file size is only 1 GB. My Page file is 128 GB. Why out of memory? It's 64bit system.
  4. Using Webclient to read chinese characters

    The resulting effect is that the characters are garbled.

    I've been looking around and there doesn't seem to be any solution.
  5. How to Deal with Chinese Characters/Japanese Characters in VB.net

    I am collecting data from lots of website. Then put it on a text file.

    Sometimes the data contain chinese characters or japanese or korean character.

    What should I do so I can handle all those...
  6. Thread: Strange Site

    by teguh123
    Replies
    5
    Views
    800

    Re: Strange Site

    JM again to the rescue :) I can keep accessing the site if I use webbrowser. So why I can do that with webbrowser but not webclient is beyond me.
  7. Thread: Strange Site

    by teguh123
    Replies
    5
    Views
    800

    Re: Strange Site

    At i=2 I got exception. Just try it.



    buffer1 = webClient.DownloadString("http://google.com") 'this code is not problematic just for testing

    'buffer1 =...
  8. Thread: Strange Site

    by teguh123
    Replies
    5
    Views
    800

    Strange Site

    buffer1 = webClient.DownloadString("http://google.com") 'this code is not problematic just for testing

    'buffer1 =...
  9. Replies
    3
    Views
    590

    Re: XML with Attributes

    Where can I see more documentation on this?

    Yes I googled and bing the whole thing:

    This

    http://msdn.microsoft.com/en-us/library/system.xml.xmlattribute.aspx

    doesn't look like it.
  10. Replies
    3
    Views
    590

    [RESOLVED] XML with Attributes

    Say I have a class

    Class Business
    Name as string
    end Class

    The XML will be

    <Business>
    <Name>Hello World</Name>
  11. Re: Could not find type 'System.ComponentModel.IContainer'

    Not solved. The original vb.net file still produced this error and I still can't fix it. Another similar project file (that uses local files rather than remote) works fine.
  12. Re: Could not find type 'System.ComponentModel.IContainer'

    Hm... I'll try then.

    The problem is I opened a different project file (that points to the same files) and somehow it works. No question asked.

    I remember that this is not the first time I have...
  13. Re: Could not find type 'System.ComponentModel.IContainer'

    If I click add reference I do not find System.ComponentModel
  14. Re: Could not find type 'System.ComponentModel.IContainer'

    I got the same problem.
  15. Re: Visual studio bug at breakpoint keeps running

    No. I mean visual studio keep running my code even though it's already stopped at breakpoint?.
  16. Visual studio bug at breakpoint keeps running

    Often I reach a breakpoint. Then I want to move the run cursor above. unable to set the next statement to this location.

    Then visual studio keeps running even though we're in a breakpoint.
  17. Replies
    3
    Views
    768

    Re: How to Turn Classes into XML?

    Do I need to make the class serializeable first?
  18. Replies
    3
    Views
    768

    How to Turn Classes into XML?

    As easily as possible?

    How to parse and create XML easily?
  19. Re: Visual Studio Very Slow When Opening the Same Project

    It's a great idea. I load projects. Never load a solution. Also the slowness happens in like forever. Not just when doing stuffs.
  20. Replies
    1
    Views
    1,976

    Objective C vs VB.net

    At first I was very disappointed when I learn Objective C.

    What the hell. For every member object I have to declare the variable 3 times.

    One in the declaration. One for property declaration....
  21. Re: Visual Studio Very Slow When Opening the Same Project

    I found a solution.

    Open the project file in a scite or notepad. Then change /bin/ into something else /bin2

    Sort of work out
  22. Visual Studio Very Slow When Opening the Same Project

    Sometimes even if the projects open are totally different they're slow too.

    I wonder why.
  23. Is there Something Like iMac Core Data in VB.net?

    Hello
  24. Replies
    3
    Views
    763

    Is Int64 the Same with Long

    Always?

    Be it in 32 or 64 bit system?
  25. Parsing Date Without Specific Month Format

    Is there a way to do so?

    Say sometimes I see March 2nd, 1921

    Latter I see 2 March 2010

    Is there a function GetDate(SomeString as string) as Date?

    That will sort of recoqnize all those...
  26. Does Array.GetLowerBound Method always Return 0

    Is there ANY case it's not 0?
  27. Re: Inputting textbox text to web page - java formatted

    Interesting. Is this vb6? I'd avoid using javascript on programming enviroment. They're not stable.
  28. Re: Inputting textbox text to web page - java formatted

    There are several way to accomplish it. One way is to write that anyway. Another is to use ieheader or live http header for firefox and see what message actually sent.
  29. Re: What is the True Type of ihtmldomnode.childNodes

    I was like you guessing and guessing and I am tired of guessing.

    The object is actually system_com or something. Not ihtmldomchildrencollection. The latter is an interface.
  30. Re: What is the True Type of ihtmldomnode.childNodes

    The thing is if we press F2, the visual basic says that the type is object.

    Also http://www.dotnettech.net/BCL/VB.NET/mshtml.DOMChildrenCollectionClass/Class.aspx only says that there is a type...
  31. Replies
    7
    Views
    1,048

    Re: WebClient Timed Out after 10 minutes

    The URL. I used to use only one webclient. I changed that thinking it'll work better.
  32. Replies
    7
    Views
    1,048

    Re: WebClient Timed Out after 10 minutes

    Try
    theEnchancedWinClient.WebClient = New System.Net.WebClient
    System.Diagnostics.Debug.Print("Grab URL " + theEnchancedWinClient.PackedScannable)
    ...
  33. Replies
    5
    Views
    797

    Re: Why do I get error if I do val("&")

    And what's the replacement? Hand code parsing number?
  34. Replies
    7
    Views
    1,048

    Re: WebClient Timed Out after 10 minutes

    I believe the issue is that if loading fail I would terminate the thread. Webclient, uses webrequest inside. I think in webrequest you need to close connection or something.

    I do not think the...
  35. Replies
    10
    Views
    3,782

    Re: Break When a Variable Change

    I see but what about if I don't know where the value change? I am sure there is such feature in some old version of vb.net. I used it.
  36. Replies
    3
    Views
    959

    Re: Ctype Reloaded

    I need something where I can use template.
  37. Re: What is the True Type of ihtmldomnode.childNodes

    Thanks. How do youi know that Penagate?
  38. What is the True Type of ihtmldomnode.childNodes

    It's object

    But c'mon. I know I can ctype that thing into mshtml.IHTMLDOMChildrenCollection
  39. Replies
    3
    Views
    959

    Ctype Reloaded

    I am tired of turning one html object into another. One way to do so would be to convert them to ihtmldomnode and then back

    So here we go

    <Extension()>
    Public Function convertTo(Of...
  40. Replies
    5
    Views
    2,133

    Re: Cannot Import Namespace I Created

    Ah I see. What would really be cool is now that I am on the same namespace anyway, I should be able to do

    imports somename

    Yes there is no somename namespace

    What exist is...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width