| Thread | Last Post | Replies |
|
| XML Data binding? | 29 Sep 2005 16:47 GMT | 3 |
Is there a way to bind a top level element in an xml file to a combobox, and then reveal the child elements in a datagrid? I'm trying to store menu items (ie: their names) in the combobox, and then retrieve the results in the datagrid. Now, the datagrid needs to hold the
|
| Difference between event and delegate field | 29 Sep 2005 16:46 GMT | 1 |
Given an delegate type as in public delegate MyDelegate() Does anyone know the difference between an event public event MyDelegate MyEvent;
|
| How to use File.Exists and Handle Insufficient Permissions | 29 Sep 2005 15:50 GMT | 2 |
I am using the System.IO.File class to determine if a file exists on a network share. The File.Exists method keeps returning false, even though the file does exist. The MSDN documentation states,
|
| LinkButton event handler and Page_Load problem | 29 Sep 2005 15:42 GMT | 1 |
The Idea: Page1.aspx sets a property value to an arraylist. Page2.aspx retreives that property (using a Context.Handler) every time the page loads. It then iterates through the arraylist and builds a table
|
| What rong witht his simple snippit of code? | 29 Sep 2005 15:28 GMT | 5 |
Whats wrong with the below code? On every loop it seems to be jumping 3 sometimes 4 records. As you can see the SQL query is asking for all records with no filters. I want to loop each record as I asked. Is there something with wrong with my code? Thanks in adavnce, Steve.
|
| Oh No a Global Variable | 29 Sep 2005 15:03 GMT | 17 |
This is for a Win form. Currently I have several connection strings that are identical through out my application. Is a global variable the best choice for this situation? If so, what is the code to make a global string variable, and where do I put it,
|
| [GDI+] how to know the height of a text line | 29 Sep 2005 14:14 GMT | 2 |
I'm in difficulty with this: I need to know the height of a text line that is written with Graphics.DrawString(). In theory I need just to get the Graphics.MeasureString() result. But this works if the string is on a single line.
|
| Q: How to get the users document folder? | 29 Sep 2005 13:35 GMT | 1 |
How do i get the path to the current users document folder? I can't find any method in the .NET framework?!? Any one got an idea? Regards
|
| Brand new to C#, requesting book recommendations | 29 Sep 2005 13:22 GMT | 5 |
I am planning on purchasing VS2005 to learn C# very soon, and I need good book recommendations. I realize this is a question that may be asked a lot, but please consider my background: I have been a ClassicVB/ASP programmer for about 7 years. I have never done
|
| print selected pages from printpreview | 29 Sep 2005 13:21 GMT | 1 |
is it possible to configure a printpreview control so that I am able to print selected pages (for example 12-20 like by Word)? Thanks ew
|
| Is there a way to find out whether two EXEs are same? | 29 Sep 2005 13:18 GMT | 2 |
If you rebuild a solution without change anything, the new generated EXEs still has some difference. Is there a way to find out whether two EXEs are functional same?
|
| Obtain no. of instances of an application from within the same app | 29 Sep 2005 13:12 GMT | 2 |
Is there a clever way to get the number of instances started of an application within the same application. Is it possible to implement an event handler to key on the change in numbers of running application of same type. I saw this implemented in c++ with a static integer in the ...
|
| ExecutionEngineException | 29 Sep 2005 12:25 GMT | 7 |
Hi people, In my code I get an ExecutionEngineException. I don't know what to do with it, and I can't seem to get rid of it. How can I figure out what is causing it? It always appears on the exact same line of code.
|
| Regex - Memory performance | 29 Sep 2005 11:41 GMT | 22 |
I have an .Net application which processes thousands of Xml nodes each day and for each node I am using around 30-40 Regex matches to see if they satisfy some conditions are not. These Regex matches are called within a loop (like if or for). E.g.
|
| How to convert a date string to datetime value with custom date format? | 29 Sep 2005 11:12 GMT | 1 |
How to convert a date string to datetime value with custom date format? e.g. Date String Date Format Result (DateTime value) "05/07/2004" "MM/dd/yyyy" May 7, 2004
|