| Thread | Last Post | Replies |
|
| Non Standard fontstyles | 02 Jul 2008 11:59 GMT | 2 |
I'm using a custom font called "avant garde" to generate GIF files for a website. The PSD file that the designer gave me used a style called "book" (this was in the list in photoshop with the "italics", "bold", "extralight" and others that I'd not seen before).
|
| Event between 2 processes | 02 Jul 2008 11:03 GMT | 6 |
I need a possibility to fire an event in one process and react in another process. can anybody help me ? Martin
|
| Create 'beautiful' sphere icons | 02 Jul 2008 09:41 GMT | 1 |
I am trying to programmatically create some icons for an Office 2007 add-in (VB/C#) that will appear on the navigation Ribbon. The particular icon is simply a colored round circle representing a colored dot to indicate the category of an item. I have been able to draw basic
|
| question on LogonUser | 02 Jul 2008 09:39 GMT | 1 |
My Project has 2 servers, a Web Server(Windows 2000) and a DB Sever(Windows 2003). DB Server has an account called "testAccount" on Web Server, there is a shared folder named "Test", the
|
| pause a process in C and free it from C# | 02 Jul 2008 09:04 GMT | 2 |
My C# windows application is running another process which is a c (language) binary. the c binary prints output to the screen which i want to catch in my C# program.
|
| MemoryMappedFile Problem | 02 Jul 2008 08:41 GMT | 3 |
i tried to use MMF to communicate between 2 processes. i want to transfer a bitmap between the 2 processes. i created a mmf in my first process public IntPtr CreateMMF(FileAccess access, int size)
|
| List conversion | 02 Jul 2008 06:34 GMT | 2 |
I am using the following to convert a CSV String to a List: updated = paper.Tags.Split(',').Select(p => p.Trim()).ToList(); But I want to place the values in the Name property of a List of Tag (Tag is a class with 2 properties: ID and Name)
|
| Starting a process by extension association... | 02 Jul 2008 06:00 GMT | 2 |
From within a C# application I would like to start a process based upon the default process associated with a specific file extension. For example, if I provide File.doc as an argument, I want Word (or whatever application is currently associated with .doc files) to start and ...
|
| Speed | 02 Jul 2008 04:45 GMT | 2 |
I am running a very simple program, windows application, that is having some speed issues. I am curious as to why and am reaching out for some answers. My program is connected to a live data feed. The background
|
| About the remoting event | 02 Jul 2008 02:50 GMT | 2 |
in a remoting application, i set a event in the host, and let the client to book it, and in the host side i set the TypeFilterLevel to Full and open the callback port in the client side, but told that these was an exception on the invoked object.
|
| DateTimePicker Control | 02 Jul 2008 00:02 GMT | 2 |
I am trying to write an app in C# that requires the user to enter a date from 4000 B.C.E to 4000 C.E. I tried to use the DateTimePicker Control to allow the user to enter the date, but it only supports the Gregorian Calendar, so the earliest date it allows is in 1752 C.E.
|
| Multi-threading, race conditions and managed code | 01 Jul 2008 21:56 GMT | 2 |
If a multi-threaded .NET program creates a race condition updating a List (for example), could this cause a memory leak/overwritten memory/ access to another objects' private memory? Basically I'd like to know if sloppy multi-threaded code can break the CLR's guarantees of
|
| How to create two asemblies in one project | 01 Jul 2008 21:08 GMT | 6 |
Hello friends, I want to create two assemblies in single project -or- one executable and one assembly in single project. So that I can isolate testing information from actual code.
|
| Dictionary w/ List of Generic Action<T> delegates as Value | 01 Jul 2008 20:53 GMT | 9 |
I'm trying to define a dictionary whose value is an Generic Action<> delegate private Dictionary<string, List<Action<T>>> Any ideas on to how specify T or a different collection type more suitable
|
| Any Tutorial on SAPI in C# ? | 01 Jul 2008 20:52 GMT | 1 |
is there any tutorial on voice recognition in C# that explains the basic steps to create a simple VR application MSDN has some good tutorials unfortunately in C++. The only sample I found comes with SAPI 5.1 (SpeechListBox) where they
|