| Thread | Last Post | Replies |
|
| Very peculiar problem with GetHostByAddress on W98 | 22 Jun 2006 14:55 GMT | 2 |
I don't suppose anyone will be able to help with this, it's most odd. I use IPHostEntry hostInfo = GetHostByAddress(ipAddress) to resolve an IP address to a name (in this case it is actually the local computer, if that's relevant). The call is made on several occasions as the
|
| how to limit textbox to text only | 22 Jun 2006 14:52 GMT | 6 |
what is the code to limit a textbox that will accept only text and not number private void button1_Click(object sender, EventArgs e) { if (textBox1.Text = "numbers")
|
| Webbrowser control (AxWebBrowser) keeps disappearing.... | 22 Jun 2006 14:44 GMT | 2 |
I have a C# win program with a couple of browser objects on the page. Every once in a while when I go in to edit it, the browser objects disappear from the page and I have to put them back. This last time, the objects where there but the dll reference was invalid.
|
| Platform For The.Net | 22 Jun 2006 14:15 GMT | 5 |
The .NET framework or platform or visual studio.net must be run on an operating system and alot tell me its must be run on microsoft win OS is that right? and if one who is can program with c# can't use them if he using a a
|
| Xml Node Access | 22 Jun 2006 14:04 GMT | 4 |
I have a problem to accessing the right clindNodes from the xml. I have many "step" elements with id. I want to get the attributes from the 5 "matrix" elements, depending on parent "step" id ( example - if some var(MyVariable) = 2, the code
|
| backgroundimage problem with flickering | 22 Jun 2006 13:37 GMT | 1 |
I am trying to use the example in codeproject (http://www.codeproject.com/cs/media/flickerFreeDrawing.asp) called Flicker free drawing using GDI+ and C# which all well and good but I am trying to also draw a background image.
|
| Newbie Data grid question. | 22 Jun 2006 13:23 GMT | 2 |
Trying to use the classic CommandBuilder and datagrid binding method under c# to update add and remove records form a single table database, I keep getting the error. "CS0117: 'System.Web.UI.WebControls.DataGrid' does not contain a
|
| Data from one stream to another | 22 Jun 2006 13:01 GMT | 2 |
I have the following piece of code to take data from one stream and put it into another... Int32 bufferSize = 100; Int32.TryParse(ConfigurationManager.AppSettings["bufferLimit"].ToString(),
|
| Compiler erro CS0006 during a dynamic compilation | 22 Jun 2006 12:03 GMT | 1 |
Good morning everybody, I have been dealing with this strange issue for almost two days: I got stuck and I can't get out of it. I built up for the first time in my life (I'm quite new in stuff like .NET, C#, Visual Studio, windows programming
|
| Calling COM.... | 22 Jun 2006 11:47 GMT | 1 |
Hai All, Is it possible to call a COM from c# windows application by linking such that without running the COM in component services. Any suggestions? If yes, how can we do that?
|
| Class/Form scope question | 22 Jun 2006 11:25 GMT | 5 |
Like http://groups.google.dk/group/microsoft.public.dotnet.languages.csharp/browse_th read/thread/1ac280aaeed78de0/ and http://groups.google.dk/group/microsoft.public.dotnet.languages.csharp/browse_th read/thread/f7fea4d944b12bf0/
|
| How to get custom controls to show in the toolbox | 22 Jun 2006 11:24 GMT | 2 |
My project has a number of custom controls and I would like for them to be in the toolbox, but they dont. But searching google I found that they should show automatic but this does not seems to work for me.
|
| Convert FieldInfo to Dictionary<string, string> | 22 Jun 2006 11:00 GMT | 7 |
How do get the Dictioanry object from FiedlInfo ? my code : fieldInfo = this.GetType().GetField("dictioanry1"); ??Dictionary<string, string> dicTemp1 = (Dictionary<string, string>)fieldInfo;
|
| Embed Open File Dialog | 22 Jun 2006 10:45 GMT | 1 |
I would like to embed an OpenFileDialog right into my Windows Form. Is this possible? Regards, Andrew
|
| Datagrid right to left behaviour of cells only works when a cell has the focus | 22 Jun 2006 10:43 GMT | 1 |
When a datagrids RightToLeft property is set to true, as expected, it right aligns the caption text, and reverses the order of the columns. When typing text into a cell, the text is right aligned. However, when a cell loses focus, the cell's alignment returns to left aligned.
|