Click here to Skip to main content
15,884,176 members
Everything / MultiHandle

MultiHandle

MultiHandle

Great Reads

by Shuqian Ying
The source code and a simple demo program for a plug-in in Microsoft Managed Extensibility Framework (MEF) that provides visual display of email messages.

Latest Articles

by Shuqian Ying
The source code and a simple demo program for a plug-in in Microsoft Managed Extensibility Framework (MEF) that provides visual display of email messages.

All Articles

Sort by Score

MultiHandle 

31 Jul 2012 by Shuqian Ying
The source code and a simple demo program for a plug-in in Microsoft Managed Extensibility Framework (MEF) that provides visual display of email messages.
5 Dec 2011 by OriginalGriff
Use the Tag property:public Node(){ _nodeID = -1; _nodeName = String.Empty; _nodeLastMessage = new DateTime(1, 1, 1, 0, 0, 0); _nodeExpiredTimer = new Timer(); _nodeExpiredTimer.Tag = this; // Add this line. _nodeExpiredTimer.Interval = 10000; ...
25 Jul 2011 by #realJSOP
Add a menu item to your File menu with the label "Open New Instance...", and when the user slects the file to be opened, spawn a new process.I shouldn't have to say this, but if I don't someone else will...That's a fairly bizarre requirement since an MDI app, by it's very nature, allows...
28 Jan 2016 by Albert Holguin
Yes of course, sockets accept a collection of bytes, how those bytes are assembled and where they came from is not their concern, that's the application's problem.
5 Dec 2011 by Duy Dam
The problem is that I have created a "Node" class inherit from Microsoft.VisualBasic.PowerPacks.OvalShape. I added a timer "nodeExpiredTimer" in this class.class Node: OvalShape { private int _nodeID; private string _nodeName; private DateTime...
29 Feb 2012 by Jackie00100
Hey everyoneI've here lately been going around and wondering if it i possible to have focus at multiple windows at once?now you may ask why the... do you want that, well my answer is kinda simple, because i have 2 screen connected to my pc and i wanted to have 2 mice and keyboard/input...
29 Feb 2012 by #realJSOP
No, not if the monitors are connected to the same machine.
27 Mar 2014 by agent_kruger
How to save multiple records in one connection by using access database in c#. Like saving 3 records by making only one connection.For saving 1 record at one connectionstring Data = "Insert Into Tbl(Field1,Field2)values(0,1)";Thanks in advance
28 Mar 2014 by Mr.VJ
see here sample example which i used in my project works well.change your column values whichever you wantcmdd.CommandText = "INSERT into...
28 Mar 2014 by ZurdoDev
I don't think Access supports batch statements, meaning INSERT ... followed by another INSERT ... So, all you need to do is open your connection and then submit the sql statements one after the other or depending on what you have you can do them in a loop. Then when you are done you close the...
27 Mar 2014 by OriginalGriff
There are a couple of ways to do this: the simplest is:INSERT INTO MyTable (ColumnOne, ColumnTwo)VALUES (1,2), (3,4), (5,6)
25 Jul 2011 by Kalyani Kailasamoni
HiI have a MDI application with a Main form and menu associated with that. When "Open" menu item is pressed, the application allows the user to select a file and opens the same. Once a file is opened, if the user clicks "open" again and selects a second file, I want another instance of the...
27 Jan 2016 by venkat28vk
Hi,Is it possible to select multiple files and send in a single socket programming in C program? I am using TCP/IP Protocol.