| Thread | Last Post | Replies |
|
| Web service invoking for a server / client app | 26 Dec 2005 16:39 GMT | 2 |
I want to design a server which performs some business related user authentiation, and would like to let the clients invoke it through webservice, so my first thinking is using IIS as the web server to host webservice, but then how does it interact with my server. Another ...
|
| Guid readonly? | 26 Dec 2005 15:11 GMT | 8 |
I guess I am forgetting some rules, why I am not able to do following, says it is read only -- Guid[] a = new Guid[2]; foreach(Guid b in a) b = Guid.Empty;
|
| Interop call | 26 Dec 2005 13:31 GMT | 6 |
I have a vb6 Exe. I need to call a C# dll's methods from the VB Exe. I have used RegAsm to register the C# dll. If the VB6 Exe and the C# dll are in the same folder, then everything is fine. But I want to place them in different folders. When I place the VB6 Exe in a folder ...
|
| How to set all numericupdown auto-select text when got focus? | 26 Dec 2005 11:45 GMT | 3 |
My win-form have many numericupdown controls to applied. But numericupdown control don't like textbox, text box control can automatic selected text when got focus. Is there any method can let me set all numericupdown autoselect text when gotfocus?
|
| furigana c# | 26 Dec 2005 10:47 GMT | 1 |
my Japanese boss asked me to make a textbox where the user can write "furigana" (and a label that can read it). I know that there is a component called Rubi, but I have not idea if it is a COM or if there is a .net version.
|
| #,### problem | 26 Dec 2005 10:18 GMT | 4 |
In my C# Windows Form, I would like to input a number "1234" and the output is "1,234". What do I need to do? Thanks for help.
|
| What does Shell32.FolderItem's IsBrowsable mean | 26 Dec 2005 09:50 GMT | 4 |
Using Shell32.FolderItem's IsBrowsable I find, for example, that Internet Explorer and Printers and Faxes are browsable. I studied Help to find the definition of Browsable but could not find it. Can you tell me what Browserable means?
|
| Event Handing at Runtime | 26 Dec 2005 08:50 GMT | 1 |
I am instantiating webbrowser control objects and runtime and have successfully been able to have the event handled by a shared delegate. In the event handling code, I would like to reference the current object (for example, to get the current object's properties) without using a ...
|
| Design, enums, and const ints | 26 Dec 2005 08:01 GMT | 7 |
I have a home grown bit vector and I keep oscillating between what I use access individual bits. For example, is is better to do this: const int BIT_1 = 1;
|
| Design issue: Struct vs. Class | 26 Dec 2005 07:53 GMT | 2 |
After reading the thread "Struct faster than class?" I thought I should surely understand if I am doing anything wrong in my work. First, Jon you are very professional. Excellent. I will wish you as my mentor. Anyways, getting to my question -- I am in need of enums a lot in my ...
|
| killing a process from task manager does not fire console CTRL_CLOSE_EVENT | 26 Dec 2005 07:22 GMT | 10 |
I need to do some important cleanup before my console application exists. I used the console ctrl event. This is working well and it fires for all cases, including the CTRL_CLOSE_EVENT (if I close the application from the X botton). But on
|
| Generic parameter deduction | 26 Dec 2005 07:03 GMT | 4 |
I have a method where the compiler is unable to deduce the generic arguments. Now I'm asking myself if this a bug, or if not, why it isn't working. The method in question is Foo3: using System;
|
| System.Diagnostics.Process - create new process group? | 26 Dec 2005 03:27 GMT | 1 |
I need to create a process with a new process group. I think that this can be done by using a DllImport of the kernel32 CreateProcess and setting the CREATE_NEW_PROCESS_GROUP creation flag. I'd rather avoid using DllImports. Is it possible to create a new
|
| The type or namespace name 'MyClass' could not be found (are you missing a using directive or an assembly reference?) | 26 Dec 2005 03:14 GMT | 4 |
What is the procedure for using a class defined in the same solution but in another project? The language I am using is c-sharp. I have a solution with two projects in it. A c-sharp program in
|
| ContextMenu for ToolBar | 26 Dec 2005 03:12 GMT | 1 |
The problem i have is to show a ContextMenu on a toolbar depending on which ToolBarButton is currently under cursor. Is there any way to find out which ToolBarButton mouse is pointing? ToolBar.GetChildAtPos() doesn't work as ToolBarButton is not a child control fo a toolbar...
|