Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
C

carlop

@carlop
About
Posts
6
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Interprocess communication
    C carlop

    Current Scenario: I have a long running application that gets a job list from sql, creates a child process for each request and exchange status data with those child process with a full-duplex communication. All processes runs on the same machine as the host application, currently all processes are Win32 and I use WM_COPYDATA. Future: It is likely that in the next future the Win32 application will be rewritten to .NET, child processes will remain untouched, new child processes will be written in any language/platform (.NET, Win32) depending on 3rd party specifications/libraries. Question: I would like to hear some rant on how to implement interprocess communication between .NET and Win32 application. TIA

    ---( carlop )--- web @ www.carlop.com blog @ carlop-dev.blogspot.com

    Design and Architecture csharp database com tutorial question

  • Woodhaven?
    C carlop

    Probably you're victim of a well planned trick

    ---( carlop )--- web @ www.carlop.com blog @ carlop-dev.blogspot.com

    The Lounge question csharp php wpf com

  • Keyboard & Mouse
    C carlop

    Hi folks My doctor has told me that I have a problem on my right wrist... well I bet you know what... Carpal Tunnel Syndrome, a classic ! I've moved my mouse to the left hand and, after a couple of weeks of training, works fine for the moment. But I'm trying to figure out how to definitively avoid the mouse, so I'd like to hear from you if you can share your suggestions, experiences on alternatives devices such as - Trackballs - External touchpads or keyboards with integrated touchpad - Tablets such as the Wacom Bamboo - Macro-keys keyboards such as the logitech G11 - Any other device or keyboard you've used - Software that may help in reducing mouse or keyboard usage Thanks for sharing.

    ---( carlop )--- web @ www.carlop.com blog @ carlop-dev.blogspot.com

    The Lounge help com tutorial

  • Collection was modified; Enumeration Operation may not execute
    C carlop

    It was only an example. You don't use foreach but probably the problem is that while DataBind() method enumerates over the TestCollection another piece of code (maybe the same but from another thread) is doing the same. So try to lock the code that acess TestCollection before use it: lock (TestCollection) { ddlTest.DataSource= TestCollection; ddlTest.DataBind(); } paco

    C# wpf wcf tutorial question

  • Collection was modified; Enumeration Operation may not execute
    C carlop

    Is not allowed to modify any item of a collection in any way while you're inside the foreach loop on that collection. You may try to lock the piece of code, something like the following lock(this) { ... } paco

    C# wpf wcf tutorial question

  • .NET Framework Book
    C carlop

    "Applied Microsoft .NET Framework programming" by Jeffrey Richter is a very good book that deepely covers both the framework and the CLR from a general point of view (strings, events, assemblies, GAC, Garbage collector, ..), it uses C# and IL to show some code snippet, there's nothing about windows forms, XML, ADO.NET and so on. paco

    .NET (Core and Framework) csharp dotnet architecture learning
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups