| Thread | Last Post | Replies |
|
| hex2bin | 29 Jun 2006 04:54 GMT | 1 |
I'm looking for a way to reverse the effect of this particular function: public static string bin2hex(string bindata) {
|
| float, double and decimal | 29 Jun 2006 04:26 GMT | 4 |
Hi all, I have a class that I would like to use to hide the data type I'm using to store decimal point numbers. Failing all else, I will just use object and do conversion/casts as necessary. But I was wondering if I could use double to house all basic/primitive decimal
|
| DLL Type. | 29 Jun 2006 02:26 GMT | 5 |
I am writing an application that will read through a directory of files and create a release manifest. Basically a document that captures information about the files. Such as date created, version, etc. I would also like to determine if the file is a COM object that will need to ...
|
| Inheritance question: How should it be done? | 29 Jun 2006 01:24 GMT | 3 |
I have class A that does everything with table A and class B that does everything with table B. Now I'm working on class C (which I created) which does everything with table C AND also inserts to table A and to table B. So in my case, when I
|
| Datatype | 29 Jun 2006 01:21 GMT | 1 |
Is there any difference in these: private string string1; private String string2: I found the colors of the 'string' and 'String' are different.
|
| Pesky parameter problem | 29 Jun 2006 00:01 GMT | 2 |
I have a dilemma which I'm sure most programmers could solve in their sleep. I have two Windows forms, a main window and a smaller window intended to grab info from the user and send it back to the main window. The
|
| c# and wm api | 28 Jun 2006 23:52 GMT | 4 |
I am using c# to try and scrape a terminal screen to get some data. I have been able to figure out how to use the FindWindowEx to get the window handle. Now i'm at a lose. I have tried using WM_GETTEXT with the WM_GETTEXTLENGTH. This works in getting data out of a text box or ...
|
| Dotmatrix printer - again | 28 Jun 2006 23:33 GMT | 14 |
I asked if there was a way to print directly to a dotmatrix printer. The answer was yes, but I need to know how to do it.
|
| Case-Insensitive String Replace | 28 Jun 2006 22:56 GMT | 4 |
I am parsing a lot of files and need to replace a couple of string variables, but the string.Replace(string,string) method won't work because it is case-sensitive. What would be the best way to do this?
|
| [off topic] mouse wheel | 28 Jun 2006 22:39 GMT | 7 |
When the mouse is over a picture, the user can grow or shrink it by rolling the central mouse wheel. What behavior is typical when the user rolls the wheel away. Will the picture grow or shrink then?
|
| Getting/Setting a Windows Size/Position | 28 Jun 2006 22:20 GMT | 4 |
I am attempting to create an app that will run "on top" of another app. My app will create a transparent window over the other app for the purpose of displaying information. I am able to create my transparent app but cannot get the size and
|
| Modal Popups in ASP .NET | 28 Jun 2006 22:20 GMT | 2 |
I recently saw an application which uses a frameless popup while loading (i.e. a popup appears on top of the application, not inside the browser window). How can such popup be displayed in the application while its loading? Here is a screenshot:
|
| Strange string.Compare behaviour | 28 Jun 2006 22:03 GMT | 2 |
If string.Compare("li", "l'") results to 1, I would assume string.Compare("lio", "l'o") also results to 1, however it results to -1. It seems the single quote character is the only one causing this
|
| Events | 28 Jun 2006 21:38 GMT | 1 |
Can anyone answer this? Image a class, let's call it A, that that has a timer. The timer times out and calls an event, called E, to all the delegates it has attached to it.With me so far?. Now image another class, called B, which inherits from A
|
| show Clock and Vertical label | 28 Jun 2006 21:37 GMT | 3 |
i work with VS 2005 and i need to know how to put the windows time(Clock) on my label that it is on the form that i will see the full time include the second as they move, and i need to know how to make a label with text on him to vertical state and not the horizontal normal ...
|