| Thread | Last Post | Replies |
|
| Un-Normalized unicode string! | 25 Sep 2007 05:43 GMT | 2 |
I'm writing an application which is used in arabic countries. I use the normal textbox. My problem is that when I try to get the chars inside the entered text, I get them in normalized form, not in contextual form. The text is shown in contextual form in the textbox and when I ...
|
| Need explaination of BeginInvoke timing | 25 Sep 2007 04:17 GMT | 3 |
Found some code that works for me to allow me to highlight text when I re-enter a textbox. I was curious if someone could explain how BeginInvoke is working??? I know it causes execution in a separate thread but how is the timing set
|
| displaying bitflags as enumerated text and not int | 25 Sep 2007 04:08 GMT | 7 |
i am trying to make a small mdoification to and exisiting dll control, in its source code. Im trying to expose one of its internal properties so the user can set it in the ide at designtime, but the property consists of enumerated
|
| Explain this about threads | 25 Sep 2007 01:40 GMT | 35 |
"Instead of just waiting for its time slice to expire, a thread can block each time it initiates a time-consuming activity in another thread until the activity finishes. This is better than spinning in a polling loop waiting for completion because it allows other threads to run ...
|
| Altova Software Version 2008 available | 25 Sep 2007 01:34 GMT | 1 |
This is just a quick not to announce availability of Altova's 2008 product line, which includes C# code gen and Visual Studio integration in multiple tools. A few new features in v2008 are:
|
| Improve an IEnumerable function | 25 Sep 2007 01:32 GMT | 6 |
Hi group, imagine I want to count the number of a word in a text. See my actual code (don't pay attention to the int factor) : List<KeyValuePair<string, int>> listThingsToFind = new
|
| FrontPage and c# application... | 25 Sep 2007 00:49 GMT | 2 |
Is there a way that I can incorporate FrontPage into my c# application? This project is used to edit the products description of an eCommerce site
|
| do release builds have the same amount of info in exceptions? e.g. will exceptions cought in release builds contain stack trace etc.? | 25 Sep 2007 00:14 GMT | 1 |
do release builds have the same amount of info in exceptions? e.g. will exceptions cought in release builds contain stack trace etc.?
|
| Tidy up blank methods | 25 Sep 2007 00:09 GMT | 6 |
Good morning is there a method using the C# ide to 'clean up' all methods which have nothing inside them. EG sometimes I make an event which later I clear out - the project is full of them. Normally, you can go to properties, events, right click and 'reset' but
|
| Microsoft Visual C# 2005 - missing watch window | 24 Sep 2007 23:56 GMT | 3 |
Could anyone tell me why I cannot bring up the watch window. MS help says its there but no matter what I do, I cannot find any settings to enable this debug missing menu item. Searched Google, asked others and one other said he could not find it either. Usually MS says that you
|
| Enumeration values | 24 Sep 2007 22:27 GMT | 12 |
This is more of a C++ question but I guess it applies equally well to C#. Is there a way to declare an enum where the values assigned to the fields is incremented by something rather than 1. What I would like to do is create an enum where the varaibles increment by
|
| Can't run csc.exe? | 24 Sep 2007 22:13 GMT | 7 |
Can't seem to get csc.exe to run from my home machine which has asp.net 1.1 installed. I added the path variable and in the command prompt where I am running my make file I am getting the error:
|
| Bring a form to the front | 24 Sep 2007 21:42 GMT | 2 |
Having a bit of a battle here with getting a form on instantiation to the front. EG the user would think that it was not running because the window is hidden behind eg explorer. This works: private void frmMain_Shown(object sender, EventArgs e)
|
| Non-English Warnings | 24 Sep 2007 20:52 GMT | 7 |
When I use OpenFileDialog.ShowDialog(), the dialog is in Dutch (which is fine for the moment). It says 'Bestandsnaam' for Filename, 'Bestandstypen' for File Types etc. But when I select a non-existing file, the warning is in English. How can I change the warnings to Dutch
|
| XmlSerializer is reversing order of XmlElements in class serialized. | 24 Sep 2007 20:40 GMT | 1 |
Its reversing order of attributes (XmlElements) set in Serializer class. namespace Windstream.Business {
|