| Thread | Last Post | Replies |
|
| Outside of the client region! | 26 Feb 2007 20:15 GMT | 3 |
Consider a visual component that's being derived from Control, say MyCustomControl. This is opened-up whenever the user clicks a given button in the toolbar. How am I supposed to open up this control outside the ClientRectangle bounds?
|
| User Control inserts text in wrong place | 26 Feb 2007 20:09 GMT | 3 |
I have a user control with eight text boxes, if I start typing in the first text box in the tab order all is well, but if I mouse click into another box and start typing the text goes into the frst box rather than the one I put the focus in. The caret is in the right box, though
|
| Creating on-the-fly DataGridViews from SQL queries | 26 Feb 2007 20:09 GMT | 3 |
I am enamored over the visual designer's capability in VS2005 to create all the controls and customized code to fill and display a DataGridView just by dragging a data source onto the designer surface and then specifying a SQL query in the wizard. What I would like to know is how ...
|
| app written in .net 2003 beta version? | 26 Feb 2007 20:03 GMT | 3 |
I ran into a couple applications written in c#, but we do not have the full version of visual studio.net 2003, so I thought they were most likely written in the beta version. After some research, I found out
|
| Framework (1.1) installation issues | 26 Feb 2007 19:47 GMT | 1 |
(This was posted in the Framework.Setup group a couple of days ago with no response. Hoping someone here has an idea on this.....) Hello, I'm unable to install (re-isntall) the 1.1 Framework.
|
| Launch Printer Control Panel | 26 Feb 2007 19:37 GMT | 2 |
Is there a way to Launch the Printer Control panel from a C# application, and if so will the same command work on a Vista computer? I am thinking I will have to do a System.Diagnostics.Process.Start, but I don't know what I need to start.
|
| what does the @ do to strings and paths | 26 Feb 2007 19:11 GMT | 11 |
I see many c# code samples that relate to strings or using strings in file paths, that have an @ sign. eg string path1 = @"mydir";
|
| Fastest String Replacement Method? | 26 Feb 2007 19:02 GMT | 4 |
What is the fastest/most efficient way of doing string replacement in csharp/.net? An example would be: "Hello, my name is {FirstName}, and I live in the town of {City} with
|
| Multihome a NIC in C# | 26 Feb 2007 18:56 GMT | 2 |
Any one have examples of how I can multihome my NIC with and additional IP address and subnet mask in c#? Thanks B
|
| Socket error when passing a socket with an event | 26 Feb 2007 18:24 GMT | 2 |
I am trying to pass a socket object when an event is signaled. I have successfully bound to a network interface and listened on a port for incoming connection. I have also been able to accept that connection and get the socket. I try to signal an event when this happens and
|
| macro for __FUNCTION__ style information | 26 Feb 2007 18:12 GMT | 16 |
I realize there are no macros and no such thing as __FUNCTION__ in C#, and I know I can do this to get the current function name: System.Reflection.MethodBase.GetCurrentMethod().Name But, it's rather long. Is there a way to make something like a macro
|
| How to measure/monitor remoting performance | 26 Feb 2007 17:52 GMT | 1 |
I'm looking for help monitoring the communication of a client/server application. We are using the .Net default serialization/ deserialization with the binary formatter using .Net 2.0. I don't see any chance spying on what is going on during communication. We
|
| FileVersion and Assembly Version | 26 Feb 2007 17:48 GMT | 1 |
I want to know diffrence between File version and Assembly version.. thanks in advance
|
| Connect to a SQL database using console application | 26 Feb 2007 17:46 GMT | 1 |
I'm trying to connect to a sql database using C# console application but I'm having trouble to connect.. can someone help me? // Create an empty SqlConnection object. using (SqlConnection con = new SqlConnection())
|
| button's default BackColor | 26 Feb 2007 17:26 GMT | 5 |
In the IDE, I changed the BackColor of a button. Then, I changed it back to what I thought was the default, 'Control'. But, the bolded text didn't disappear (I think bold means the setting is not the default), and the button's color looks different from the other normal
|