| Thread | Last Post | Replies |
|
| Open a Form | 06 Sep 2007 13:15 GMT | 5 |
I'm a vb programmer but i have to touch C# a bit now. I'm looking for a thing that doesn't seems to exist anywhere here im talking of how to open a form. in vb it was just frmMyform.show or frmMyform.load and after showing
|
| Setting locale for test purposes | 06 Sep 2007 11:29 GMT | 2 |
I'm using VMWare installed with a german version of XP to test german localization of my application. I recently saw someone change locale of the application with a single line of code at startup but can't remember where I saw it.
|
| ASP .NET - Hiding true adress of web page | 06 Sep 2007 10:33 GMT | 3 |
Simple question about webforms: How to hide true address of website ? To this day a used "Server.Transfer()" to redirect to another page. In sql server I have a table with data like this: id adress
|
| Delegates and Events or Command Patter | 06 Sep 2007 10:18 GMT | 2 |
Hello, I have a situation where a text based protocol comes to my component to be handled. Protocol has differnt commands and they have different arguments. The question is that which is in C# world's way to handle different command
|
| double to string formatting | 06 Sep 2007 10:08 GMT | 1 |
I am trying to convert a double to a string using the following format;- double = 1.01 string = 01.0100
|
| cannot convert | 06 Sep 2007 09:50 GMT | 4 |
I have a method in a class: public void AddUserList(List<IUser> users) { ...
|
| Storing a kind of table in C# | 06 Sep 2007 09:22 GMT | 5 |
I have a program which should store some kind of tables like the ones in MS Word. I have no idea how to store the tables in C# and store them in a database and get them back whenever needed. Does anyone have an idea about it?
|
| Using multiple modal dialogs in a Windows app | 06 Sep 2007 07:20 GMT | 1 |
I have a Windows form that opens a modal dialog window. From there I can open yet another modal dialog window so I can grab some info to pass back to the first dialog. Both need to be modal and are launched like this:
|
| Find current class from within a static method | 06 Sep 2007 02:40 GMT | 11 |
Is there a way to get the name of the current class in a static method? I have a base class that contains static methods and that class is inherited. I'd like to change the behavior in the derived class but static methods cannot be overridden. If I can find out 'who i am' i can ...
|
| Implementing Tree | 06 Sep 2007 02:27 GMT | 6 |
I would like to build a tree structure in c# using the arraylist or hash table. what is the best way to implement it if I want to add children and to print my tree. Thank you!
|
| remove ArrayList[n] inside foreach() loop? | 06 Sep 2007 02:14 GMT | 13 |
Hi all, I wanted to go through each entry(?) of ArrayList and remove some particular entry. So I tried following but it throws exception at runtime: foreach (myEntry entry in myArrayList)
|
| It's Better CLEAR or NEW ? | 06 Sep 2007 00:15 GMT | 36 |
I would like to hear your *opinion and advice* on best programming practice under .NET. Given that several time we cannot change: MyCollection.Clear into the instantiation of a NEW MyCollection
|
| Program runs under debug mode but stalls in normal mode | 06 Sep 2007 00:04 GMT | 9 |
I am new to c#. I am trying to build an application that does backup of files to an external hard disk. My application behaves strangely. When i run the application under debug mode (F5), it works properly. But when i run it in normal mode
|
| Is Enterprise Library the successor to Enterprise Services? | 05 Sep 2007 23:41 GMT | 4 |
I was wondering whether the Enterprise Library replaces Enterprise Services as a framework for providing services for enterprise apps, or it supplements it. I know nothing of either of these technologies, but from just looking at their feature set,
|
| Overriding OnMouseWheel | 05 Sep 2007 23:02 GMT | 1 |
Hi, I am extending a PictureBox. I have implemented overrides of OnResize and OnMouseMove that work as I expected, i.e. they handle the windows message sent by the system and calling base.OnResize raises the C# event for other listeners in the application.
|