Unless I'm mistaken you are looking for this: http://www.eterlogic.com/Products.VSPE.html[^] I used the free variant and it works perfectly fine. You can create any number of serial ports and connect them virtually on the same machine or remotely over tcp/ip. You can also create gateways and bridges. Very neat. I guess you have buy it, the server variant is not free.
micke andersson
Posts
-
C# Receive from TCP send to COM2 -
Reading Excel from different processes in different computerIt sounds like you are taking every step possible to overcome some very common problems with network shares. The FileSystemWatcher and sleep(3000) may not be enough. Try creating a locked file (FileStream with Non-Sharing Mode) that your "listeners" try to access. Remove the lock once the message has been added and the excel file is written. But my guess is that you will never get rid of this problem. File access using network shares are never reliable when accessed from multiple computers simultaneously (in my experience).
-
C# obtain data from file namestring.Trim()
-
i cant fill table with data i pull from sqlSo you copied your classmates solution. There is an error in your original code so technically its not the same. Your new assignment is to find the difference and post it here ;P
-
How to get the select value in a multiple dropdownlistMake sure you have focus on the control. MSDN says:
Quote:
Items appear selected only when the ListView control has focus. To select items in response to a user action such as a button click, be sure to call the Focus method in addition to setting this property.
-
Problem getting data from a stored procedure (Oracle)Maybe you need two orclParam variables? You create it with:
OracleParameter orclParam = new OracleParameter("sHash1", OracleDbType.Char, 100);
But later you assign a new object to it:
orclParam = new OracleParameter("sHash2", OracleDbType.Char, 100);
I would be very surprised if this fixes your problem but it might be worth a try? If it fixes your problem then the Add() function is implemented... in a peculiar way.
-
Use axFrameControl to open the ppt encountered the errorIf you would bother to use Google for 30 seconds you could have found this:
The DSOFramer control is for demo purpose, we did not provide support for it.
NOTE: This sample is provided "AS IS" with no warranty or support from Microsoft. It is a demonstration, provided for informational purposes only, and has not been rigorously tested with all environments and ActiveX document servers. It is up to you to make it "production ready" if you use it in any development solution.
Visual C++ ActiveX Control for hosting Office documents in Visual Basic or HTML
http://support.microsoft.com/Default.aspx?id=311765
If you still have any concern, please feel free to post here. -
need the project code in c#I command you to do this task I have been assigned and used google translate on.
-
SaveFileDialog and OverwritePromptIt might not be your code, It might be this: Windows 7, new windows opening behind other windows[^]