|
See this[^] tutorial on user controls at MSDN.
/ravi
|
|
|
|
|
+5, as it is the correct answer. As it reads, the user wants to put something in a UserControl.
Bastard Programmer from Hell
|
|
|
|
|
You create usercontrols in the same way that you created the chat-controls.
ChandrakanthGaddam wrote: I want to create a chat control as a user control in c# by assigning some
properties like chat name, chat width, chat height.How can i create this.
class MyChattyControl: UserControl
{
public string ChatName { get; set; }
}
Location, height and width are already part of the UserControl , so you needn't implement them.
Bastard Programmer from Hell
|
|
|
|
|
Hello,
i have the following code, which redirects the
output from a unmanged dll into a file:
[DllImport("Kernel32.dll", SetLastError = true) ]
public static extern int SetStdHandle(int device, IntPtr handle);
FileStream filestream;
StreamWriter streamwriter;
void Redirect()
{
int status;
IntPtr handle;
filestream = new FileStream("logfile.txt", FileMode.Create);
streamwriter = new StreamWriter(filestream);
streamwriter.AutoFlush = true;
Console.SetOut(streamwriter);
Console.SetError(streamwriter);
handle = filestream.Handle;
status = SetStdHandle(-11, handle); // set stdout
// Check status as needed
status = SetStdHandle(-12, handle); // set stderr
// Check status as needed
}
But I want to write the output to a winform-control
(textbox).
How can I do that?
Regards
Andreas
|
|
|
|
|
Form1.textbox.text = object_containing_textstring;
Binding 100,000 items to a list box can be just silly regardless of what pattern you are following. Jeremy Likness
|
|
|
|
|
If the DLL's running in process, its console output should go to your stdout/stderr already. That means that you shouldn't need to explicitly redirect it with SetStdHandle; try removing that and see where its console output goes. (It should still go to the file through the redirected Console.SetXxx in your app.)
Then you need to create a wrapper for TextWriter that will give you write events; inheriting from StringWriter and overriding Write(char) should do it, but you might need to override Write(string) as well.
Pass an instance of this subclass to Console.SetOut/SetErr and hook up the event to write into your control.
|
|
|
|
|
Hello,
thanks for your anwer.
The dll is not running in process, the dll runs
in a another process.
The code works for me, but redirects only into a
file.
I tried out also "alternatives" to the filestream,
like memorymappedviewstream (MemoryMappedFile), get
the handle, but nothing works.
Regards
Andreas
|
|
|
|
|
How do According to xml export excel?
|
|
|
|
|
You need to explain your problem more clearly.
Binding 100,000 items to a list box can be just silly regardless of what pattern you are following. Jeremy Likness
|
|
|
|
|
thank you,this problem have resolved:
1、writexml of Datatable Save a file.
2、I use excel 2003 or later Open.
3、OK.

|
|
|
|
|
This night I try the asp.net mvc framework which is ASP.NET MVC 2 Empty Web Application. I create controller class, model class and view page. Its successfully run. But I can't find configuration file for classes and page mapping.
Actually I want to mapping classes and views by custom on xml based file like spring bean xml configuration on Java environment.
thanks your advice...
|
|
|
|
|
WCF- Service
CF binding is a set of binding elements and each element specify, how the service and client will communicates with each other's. Each binding must have at least one transport element and one message encoding element.
Different types of WCF bindings
WCF has a couple of built in bindings which are designed to fulfill some specific need. You can also define your own custom binding in WCF to fulfill your need. All built in bindings are defined in the System.ServiceModel Namespace. Here is the list of 10 built in bindings in WCF which we commonly used:
Basic binding
This binding is provided by the BasicHttpBinding class. It is designed to expose a WCF service as an ASMX web service, so that old clients (which are still using ASMX web service) can consume new service. By default, it uses Http protocol for transport and encodes the message in UTF - 8 text for-mat. You can also use Https with this binding.
Web binding
This binding is provided by the WebHttpBinding class. It is designed to expose WCF services as Http requests by using HTTP-GET, HTTP-POST. It is used with REST based services which may give output as an XML or JSON format. This is very much used with social networks for implementing a syndication feed.
Web Service (WS) binding
This binding is provided by the WSHttpBinding class. It is like as Basic binding and uses Http or Https protocols for transport. But this is designed to offer various WS - * specifications such as WS – Reliable Messaging, WS - Transactions, WS - Security and so on which are not supported by Basic binding.
wsHttpBinding= basicHttpBinding + WS-* specification
WS Dual binding
This binding is provided by the WsDualHttpBinding class. It is like as wsHttpBinding except it sup-ports bi-directional communication means both clients and services can send and receive messages.
TCP binding
This binding is provided by the NetTcpBinding class. It uses TCP protocol for communication be-tween two machines with in intranet (means same network). It encodes the message in binary format. This is faster and more reliable binding as compared to the Http protocol bindings. It is only used when communication is WCF - to – WCF means both client and service should have WCF.
IPC binding
This binding is provided by the NetNamedPipeBinding class. It uses named pipe for Communication between two services on the same machine. This is the most secure and fastest binding among all the bindings.
MSMQ binding
This binding is provided by the NetMsmqBinding class. It uses MSMQ for transport and offers sup-port to disconnected message queued. It provides solutions for disconnected scenarios in which service processes the message at a different time than the client send the messages.
Federated WS binding
This binding is provided by the WSFederationHttpBinding class. It is a specialized form of WS binding and provides support to federated security.
Peer Network binding
This binding is provided by the NetPeerTcpBinding class. It uses TCP protocol but uses peer net-working as transport. In this networking each machine (node) acts as a client and a server to the other nodes. This is used in the file sharing systems like torrent.
MSMQ Integration binding
This binding is provided by the MsmqIntegrationBinding class. This binding offers support to communicate with existing systems that communicate via MSMQ.
<pre lang="c#"><pre lang="c#"> Choosing an Appropriate WCF binding
. Depending upon your requirements, you can choose a binding for your service as shown below in the diagram:
Vasudev Choudhary
modified 10-Mar-14 14:56pm.
|
|
|
|
|
|
How to deal with the critical region in the programming language C #. Is there an example of this case or reference explaining that
|
|
|
|
|
|
|
The Thread class has a critical region method[^] that you could use.
There are other constructs like Mutex etc that could help you setup a critical region.
|
|
|
|
|
I'm trying to write a client for a webservice method, which responds with byte[]
I would like to stream it because byte[] will be failed if there is large file. I changed Transfer Mode and Encoding to Streamed and Mtom respectively. I commented XMLTypeAttribute declaration in reference file for the byte[] class. Please correct the code.
Reference.cs
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.4016")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
public partial class echoBinaryDataResponse : object, System.ComponentModel.INotifyPropertyChanged {
private byte[] paramField;
[System.Xml.Serialization.XmlElementAttribute(DataType = "base64Binary", Order = 0)]
public byte[] param
{
get {
return this.paramField;
}
set {
this.paramField = value;
this.RaisePropertyChanged("param");
}
}
My client call
-----------
ServiceReference1.echoBinaryData echo = new ServiceReference1.echoBinaryData();
MemoryStream str = new MemoryStream(myByteArray);
echo.param = str;
ServiceReference1.echoBinaryDataResponse echoResp = new ServiceReference1.echoBinaryDataResponse();
ServiceReference1.SamplePortTypeClient sample = new ServiceReference1.SamplePortTypeClient();
sample.echoBinaryData(echo);-----getting exception here
Note: myByteArray is of type byte[];
|
|
|
|
|
NarVish wrote: sample.echoBinaryData(echo);-----getting exception here
What exception?
Binding 100,000 items to a list box can be just silly regardless of what pattern you are following. Jeremy Likness
|
|
|
|
|
Sorry, forgot to add the exception
Exception:There was an error reflecting 'echoBinaryData'.
|
|
|
|
|
You need to trap this with your debugger or add some more code to identify the inner exception. "There was an error" tells us nothing.
Binding 100,000 items to a list box can be just silly regardless of what pattern you are following. Jeremy Likness
|
|
|
|
|
Irrespective of above exceptions, can u just guide me to stream byte array (which comes as response of webmethod)
|
|
|
|
|
Sorry, not something I have much experience of. Try the articles section or the MSDN documentation.
Binding 100,000 items to a list box can be just silly regardless of what pattern you are following. Jeremy Likness
|
|
|
|
|
|
Hello,
I was trying to connect to a machine(192.168.1.194); using powershell using the following query Enter-PSSession 192.168.1.194. But I got the following error.
Enter-PSSession : Connecting to remote server failed with the following error message : Access is denied. For more information, see the about_Remote_Troubleshooting Help topic.At line:1 char:16
+ Enter-PSSession <<<< 192.168.1.194
+ CategoryInfo : InvalidArgument: (192.168.1.194:String) [Enter-PSSession], PSRemotingTransportException
+ FullyQualifiedErrorId : CreateRemoteRunspaceFailed
Can you help me to solve this? Any help would be appreciated.
Thanks & Regards
Sebastian
|
|
|
|