Search:

Type: Posts; User: formlesstree4

Page 1 of 13 1 2 3 4

Search: Search took 0.20 seconds.

  1. Replies
    68,852
    Views
    17,962,291

    Re: Post Race!

    Boooooooo
  2. Replies
    68,852
    Views
    17,962,291

    Re: Post Race!

    Is there like a Discord server or something or is this all through forum still?
  3. Replies
    68,852
    Views
    17,962,291

    Re: Post Race!

    Same. But I am glad to have returned!
  4. Replies
    68,852
    Views
    17,962,291

    Re: Post Race!

    This thread's still going? Goodness.
  5. Replies
    3
    Views
    1,292

    VS 2013 Re: ForEachAsync VB

    Public Shared Function ForEachAsync(Of T)(source As IEnumerable(Of T), dop As Integer, body As Func(Of T, Task)) As Task
    Return Task.WhenAll(From partition In...
  6. Replies
    11
    Views
    1,302

    Re: Multiple threads

    A Task, in reality, is a promise to do something; that something will be completed in the future at some unknown time. You, as the caller, have no idea when that promise will be fulfilled. Task (and...
  7. Replies
    32
    Views
    6,444

    Re: VS 2010 - Integer to Roman Numeral

    Hello chrisa!

    If you're using 4,000 case statements, chances are you're doing it wrong. Not all the time, but most of the time that's definitely the wrong way to approach it!
    Now, Ian is a bit...
  8. Replies
    20
    Views
    1,905

    VS 2010 Re: Generator Order

    As SH said, we need a pretty clear and concise explanation of what you're trying to accomplish before we can adequately supply you with samples and demonstrations. Help us so we can help you! :)
  9. Replies
    3
    Views
    888

    VS 2013 Re: Threading for copy 1.000.000 files

    Throwing more cores at this will not speed up the actual copying in actuality when it may be the file system is the slow part. All you'd do is throttle your file system and slow MORE things down if...
  10. Replies
    13
    Views
    2,871

    Re: Random Word Generator

    Guys! You all are forgetting something very very important: The List(Of T) is backed by an Array internally! You can't possibly expect the teacher to be OK with that! You have to get creative! :D

    ...
  11. Replies
    1
    Views
    2,866

    Re: Google Cloud Storage API Examples

    Doing a little searching, Google has several sample JSON libraries for a variety of languages.
  12. VS 2013 Re: Pulling statistical information from a Thread?

    I figured that RAM capture would be rather difficult. That's fine. But if CPU time can be captured, then, I'd be really thankful if someone could point me in the right direction for that.
  13. VS 2013 Pulling statistical information from a Thread?

    Hello everyone! I've got a bit of a (potentially) obscure question regarding the Thread class in .NET vs. the Process class. I did some research on the MSDN website but I couldn't find a lot about...
  14. Replies
    3
    Views
    979

    Re: i need sdk dll for facebook

    Literally the first result on Big for FaceBook .NET SDK: FaceBook SDK
  15. Replies
    4
    Views
    2,320

    VS 2013 Re: IRC Chat Client

    IRC Clients are not simple. The IRC protocol isn't exactly simple either. It's been around for a few decades (IIRC), and there are many chat clients that have spent a lot of time trying to get things...
  16. Replies
    5
    Views
    1,063

    VS 2012 Re: How to Extract Specified Text

    I feel bad for saying this, but you have horrible grammar, one post, and you've registered this month...and you want to extract e-mail addresses from a webpage with dynamic content.

    Why don't you...
  17. Replies
    4
    Views
    1,092

    VS 2012 Re: Basic 'Lives' Class

    The simple answer is you don't code that way. You break things out into classes. All the form does / is is a display member and an interaction member. The form allows you to interact with the class...
  18. Replies
    6
    Views
    1,180

    Re: Developer SMS account

    Interop with a GSM Modem via SIM card could, theoretically, work. However, your mobile phone provider would probably have a word with you if your text activity is much higher than a typical consumer...
  19. VS 2010 Re: IOException was unhandled??????

    What the heck is Print()? I have not a clue, but if you're trying to show what the result is, you should be using MessageBox.Show()
  20. Replies
    8
    Views
    10,505

    Re: web scraping

    No big deal. It's evolved a bit since I first started using it but I'm quite happy with it so far.
  21. Replies
    8
    Views
    10,505

    Re: web scraping

    var html = new HtmlDocument(); // HtmlAgilityPack.HtmlDocument
    html.LoadHtml("html content goes here");


    There's also a Load() method that takes a variety of different sources.
  22. Replies
    6
    Views
    4,343

    Re: JavaScriptSerializer Deserialize Issue

    Using JSON .NET (pardon it being in C#):



    var content = JObject.Parse(Console.ReadLine());
    Console.WriteLine(content["relativeDate"]["propName"].Value<string>());


    Console.ReadLine() would...
  23. Replies
    8
    Views
    10,505

    Re: web scraping

    You can pull the HTML from whatever source you want and use HtmlAgilityPack to do the scraping.
  24. Replies
    6
    Views
    4,343

    Re: JavaScriptSerializer Deserialize Issue

    Have you tried using JSON .NET? It's a much better alternative than using the internal JavaScriptSerializer. I've got no experience with the internal JavaScriptSerializer class, but JSON .NET...
  25. VS 2013 Re: Comparing two DataTables of identical schema for change detection

    Thank you so very much! This here has given me exactly what I need to make this possible. Thank you so very much!!
  26. Re: Invalid WMI Namespace in deployment package

    Dim searcher As New ManagementObjectSearcher( _
    "root\CIMV2\TerminalServices", _
    "SELECT * FROM Win32_TerminalServiceSetting")

    Your root\CIMV2\TerminalServices...
  27. VS 2013 Re: Comparing two DataTables of identical schema for change detection

    This is where I failed to explain the business reason why we need to know the changes.

    We have a rule engine that will trigger downstream processes depending on what exactly was changed, hence the...
  28. VS 2013 Re: Comparing two DataTables of identical schema for change detection

    That, unfortunately, will only get me part of the way. It only would (easily) get me add/remove records. The updated records, however, are much more difficult to acquire (if I am remembering this...
  29. VS 2013 Re: UserPrincipalsEx class does not seem to work in VB

    Then the guess is as good as a crystal ball under the perfectly aligned stars unfortunately. Without looking at what UserPrincipalsEx does under the hood, I couldn't tell you why it's failing to...
  30. VS 2013 Re: UserPrincipalsEx class does not seem to work in VB

    Does it blow up?

    EDIT: Actually what is UserPrincipalsEx?
  31. Re: return last result of windows scheduled task

    It's in perl but this might be a good starting place.
  32. Re: Searching Records by a combobox from database

    What line of code is the exception occurring on? And what is having the IndexOutOfRange exception? And what else in your code are you not showing? There's more here.
  33. Re: Invalid WMI Namespace in deployment package

    There was a solution here on these forums that might assist you. Without looking at the WMI query, we really can't do much to help you.
  34. Re: problem passing a ref to a string to a dll both platforms x64

    What's the error when it crashes?
  35. VS 2013 [RESOLVED] Comparing two DataTables of identical schema for change detection

    The title is the tl;dr.

    Long version incoming.


    Essentially, at my job, we process reservations from a source system to mesh with our standardized model. I'm at a certain stage in my process...
  36. Replies
    22
    Views
    2,362

    Re: [RESOLVED] XNA Shading/Stencils

    Hey Shaggy, you might be able to extend this program to allow you to compile .fx files:
    XNA Content Compiler.
  37. Re: [RESOLVED] OnCreateControl Conundrum ReLoaded

    Hey Shaggy, have you considered looking at the Reference Source for Control.OnCreateControl()? It might give some insight for you.
  38. Re: Send message to clients with IAsyncResult?

    So what's going on here? You've posted your code but I don't see what's wrong.
  39. Replies
    7
    Views
    27,228

    VS 2012 Re: Slow drawing DataGridView

    Thanks for the suggestion SJ. Thankfully, I don't think I'm going to need to go that far. What I ended up doing was changing 11 properties on the DataGridView and received HUGE performance gains:
    ...
  40. Replies
    7
    Views
    27,228

    VS 2012 Re: Slow drawing DataGridView

    Well, the thing is I'm not having issues populating the DataSet at all! It's past the data loading aspect and onto the binding / loading. I've got the loading done asynchronously and done before the...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width