| Thread | Last Post | Replies |
|
| Why is an uninitialised string not empty? | 21 Jun 2006 23:15 GMT | 6 |
I came across something strange a few moments ago when testing some strings. In my application a particular object has a name and a title, and is displayed on a webpage thusly:
|
| Problem with EventHandlers | 21 Jun 2006 22:39 GMT | 3 |
Please, I REALLY need help with this one. I've been banging my head about it for three days now. Here's the situation. I have a form that runs some queries and functions and such. When all
|
| Handling Updates in DataGrid | 21 Jun 2006 21:56 GMT | 2 |
I did have a save button for a datagrid that is bound to a tableadapter, but I wanted to remove the button and instead save updates everytime a user finishes editing a row. So I moved the update code to the below RowLeave event. However, the problem I have is when
|
| Is there a timeout issue with HttpWebRequest | 21 Jun 2006 21:29 GMT | 12 |
I try to set the timeout property on my HttpWebRequest object before lunching the request. It seems like any value above 100 seconds is discarded. Has anyone observered malfunctional with this class?
|
| Splitting long XML file into smaller pieces | 21 Jun 2006 20:44 GMT | 2 |
I have a long XML file that I should transmit to other computer using http. Problem is that the whole XML Document is too large for one transmitting. What is the nicest way to split XML document into smaller pieces e.g. to 10
|
| loading unmanaged dll | 21 Jun 2006 20:29 GMT | 5 |
I have C# application "applic.exe" and a dll "dyna.dll" whenever "applic.exe" or "dyna.dll" is loaded, I need them to also load "test.dll" (unmanaged c++ dll). I do not have sources of "applic.exe" or "dyna.dll"
|
| How Should I Do Bitwise Complement with Byte? | 21 Jun 2006 20:29 GMT | 3 |
I'm trying to set the first three bits to zero on a byte. For some reason, the compiler is casting the number peculiarly when I use the bitwise complement operator. Here's what I think should work but doesn't:
|
| using Type | 21 Jun 2006 20:18 GMT | 3 |
I have a function, which accept two parameters, one is a object, another is a Type. I need to cast the object to the type define by Type. is it possible? void MyFunction(Object O, Type T)
|
| Disable tab pages | 21 Jun 2006 20:13 GMT | 4 |
I have a program with a tabControl which contains 6 tabs. During the execution of the program I want to Enable/Disable some of the tabs but I did not find any way to do that. I've tried to use the Hide/Show methods but without success.
|
| [newbie] Incapsulating a function | 21 Jun 2006 19:31 GMT | 2 |
I have some different functions taking a double[] as their input data and returning a double value as their output data. Which implementation do you think is better? --first:
|
| BindingSource, Custom DataSource and DataGridView driving me mad! | 21 Jun 2006 19:22 GMT | 2 |
OK, I've got a DataGridView, I've created a BindingSource from one of my Business Entity object (based on generated classes from EntitySpaces) I've left the default column setup so that all the columns are displayed. My DataSource objects are composed like this:
|
| How do I use XmlReader on an XmlDocument passed as a parameter | 21 Jun 2006 18:43 GMT | 10 |
All of the XmlReader examples assume that the XmlDocument is being read from a file. However, I would like to use it with an XmlDocument passed as a method parameter, but am not sure how. Any suggestions?
|
| chdir equivalent | 21 Jun 2006 18:38 GMT | 1 |
How do I do a chdir in C# ?
|
| Set enabled property of private field by name? | 21 Jun 2006 18:38 GMT | 3 |
I am trying to locate a field (ToolStripMenuItem) by name in the current form and set its Enabled property, but I'm having no luck (skill) so far. Any help you could provide wold be greatly appreciated. This is the code I have so far. The line using (ToolStripMenuItem field =
|
| XML Documentation | 21 Jun 2006 18:33 GMT | 4 |
I have ticked the XML Documentation option in my project properties and when I compile my project I just get an XML file in the bin\debug directory. How can I convert this file into a help file? Thanks.
|