| Thread | Last Post | Replies |
|
| Multilingual Application | 23 May 2007 05:08 GMT | 7 |
Hello! I am looking for a good way to make an application multilingual. Danish/English for now (but I don't want to preclude more than two languages eventually) Every dialog will have an option for changing language (except simple dialog boxes)
|
| ConfigurationManager.AppSettings | 23 May 2007 02:42 GMT | 1 |
Visual Studio is telling me that ConfigurationSettings.AppSettings.Get() is obsolete, but I cannot get ConfigurationManager to show up in Intellisense. Any idea what I'm doing wrong?
|
| List<t> findall question - predicates? | 23 May 2007 00:35 GMT | 2 |
I have a List<t> object consisting of objects which in themselves consist of BindingListViews of objects. When I want to search for a object value I normally create a foreach loop and increment a counter to provide me a count. How can I refactor the same function w/o the foreach ...
|
| Please help me on LoaderLock ... | 22 May 2007 23:47 GMT | 11 |
I'm trying to call a third party dll routine from C# using pinvoke. Unfortunately I obtain a LoaderLock exception and my application stops. I've seen that it must be some uncorrect behaviour of the called routine, but I can't modify it.
|
| How to call Form2.cs from Form1.cs in modal and in non-modal style ? | 22 May 2007 21:54 GMT | 1 |
Assume I have two Forms Form1.cs and Form2.cs. When a button but1-switch is clicked on Form1.ca the second Form2.cs should be called and displayed. How do I call the second Form2.cs in modal style ?
|
| Application.AddmessageFilter | 22 May 2007 21:38 GMT | 2 |
I want to reroute messages with a certain code to a specific control. I need to intercept those messages at Application level since the main window doesn't catch a third party ActiveX. It is done correctly with my IMessageFilter.
|
| Is there a source code beautifier/re-arranger in VS 2005 ? | 22 May 2007 21:36 GMT | 2 |
When I insert a new Eventhandler or function VS 2005 does this automatically with an indent which I don't like. Furthermore I would change the curly bracket handling. Is there soemthing like a built-in source code beautifier which re-arranges the source code according to my ...
|
| help with C# and Lotus Notes | 22 May 2007 21:10 GMT | 2 |
Hi group!!! I'm new with lotus notes, i'm not sure if, can i send an email through lotus notes? maybe using a lotus dll or a componet? does anyone has an example? Regards
|
| How to call an event on another form - C# windows forms | 22 May 2007 18:46 GMT | 8 |
I don't think this should be this complicated, but I can't figure it out. I've worked with C# for several years now, but in a web environment, not with windows form. I have a form with a query button on it. If the query returns multiple results, a new window is opened
|
| Casting of bytes allocated by stackalloc to struct ptr -- It is possible but immediately | 22 May 2007 18:11 GMT | 7 |
Typically, you need the stackalloc when using win32 platform fucntions, which tell you the amount of memory required for the output structure in the first call, like GetJob does. The weired thing is that this works: byte* p = stackalloc byte[size];
|
| Timer and Thread.Sleep() | 22 May 2007 17:58 GMT | 1 |
For the taskes which will be executed once a while, I used to write an endless loop, do the job then call Thread.Sleep(). I just notice threre is server-based Timer. What are the advantages to use that?
|
| Run WinForms app as Console app | 22 May 2007 17:46 GMT | 6 |
We pass args to our WinForms app and would like the console to wait until the program ends before returning. For example: C:> MyApp.exe -r something
|
| converting letters to it's unicode representation | 22 May 2007 17:32 GMT | 2 |
What I have is a bunch of text in arabic, and series of Unicode bytes which represent those arabic words (like this: \'c2\'e4\'f6\'d3\'f3\'c9 \'f1). Now I have to figure out how to convert my arabic text to bunch of \'somethings. If I understood Unicode correctly (and I'm not sure ...
|
| DirectoryServices and ObjectClass property | 22 May 2007 17:20 GMT | 4 |
Working with the DirectoryServices in C#, I want to build a tree of users. The tree control will have child nodes with user sam names, and expandable nodes for any group the current thread may view. The group however, may be many things. I'm quite new to LDAP and
|
| C# Newbie: Getting file size of text file? | 22 May 2007 17:19 GMT | 3 |
In C#, How does one get the file size of a given text file? BR Mashao
|