Jump to content
Xtreme .Net Talk

HJB417

Avatar/Signature
  • Posts

    612
  • Joined

  • Last visited

2 Followers

About HJB417

  • Birthday 04/17/1981

Personal Information

  • .NET Preferred Language
    c#, c++, j#

HJB417's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. A ManualResetEvent for each class w/ a call to WaitHandle.WaitAll should do the trick. Each thTcpListener thread will have a ManualResetEvent and will call the ManualResetEvent.Set event when it reaches a point where the thRemote thread should continue. The thRemote thread will call WaitHandle.WaitAll which will make the thRemote thread block/wait until all thTcpListener threads have invoked ManualResetEvent.Set. http://msdn2.microsoft.com/en-us/library/z6w25xa6.aspx http://msdn2.microsoft.com/en-us/library/system.threading.manualresetevent.aspx
  2. What database are you using and what DbDataAdapter are you using? Iterate through the DataTable rows and see if there are DataRow obejct's whose RowState is Deleted.
  3. Probably need to update the browser caps http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/gngrfbrowsercapssection.asp In the past, I've just copied/pasted from http://slingfive.com/pages/code/browserCaps/ into my machine.config.
  4. http://dev.mysql.com/doc/refman/5.0/en/insert-select.html
  5. http://groups.google.com/groups/search?q=detect+usb+dotnet&start=20&ie=UTF-8&
  6. the former... make an icomparer that compares the record id, another icomparer that comapres the class id and another that compares the sort order. The reason why is, if you have a bunch of objects stored in an arraylist, you can just pass the icomparer instance to the arraylist.sort method.
  7. Have you tried using the Anchor property? http://www.c-sharpcorner.com/winforms/AnchDocInWinFormsGAG.asp
  8. imageResize.Save(ms, Imaging.ImageFormat.Bmp) you're just saving it back to the memory stream.
  9. A random guess but seeing how you're accessing the treenode for reading on a postback.. it must reconstruct the treenode and maybe that's where the issue is... It's maybe using it's builtin classes to reconstruct the treenode.
  10. why was joe mamma banned? if u cant say puiblicy just private message me why.
  11. You should look into mysqldump... try using the --compatible flag.
  12. I believe mysql has a msi installer. msi has several flags, one of them I believe is /silent. MSSQL for example supports this.
  13. parse the data from the link.
  14. Unless directory browsing is enabled, you can't =/
  15. http://msdn2.microsoft.com/en-us/library/ms190750.aspx should work in access jet.
×
×
  • Create New...