| Thread | Last Post | Replies |
|
| possible bug in CLR? remoting issue. | 21 Jun 2007 03:34 GMT | 1 |
hey, I set up remoting in my .net project. needless to say there is alot of code that goes into making it work. it runs communication from a windows app to a windows service. but I notice that sometimes when I set a variable in the middle class from
|
| setting cursor position for TextBox | 21 Jun 2007 03:34 GMT | 4 |
Does anyone know of an easy way to set the position of the cursor in a TextBox? If I set text in the box that is longer than the length of the TextBox the position of the cursor is at the very end of the line and a user would have to use the arrow keys to move it back to the ...
|
| Marking code deprecated | 21 Jun 2007 03:05 GMT | 9 |
How do I mark a method or class in my library as deprecated, so that when it is used by some other application, the compiler will issue a warning?
|
| Question about no response of main Form | 21 Jun 2007 02:33 GMT | 2 |
I ran into a headache problem. I have a windows form with a progress bar on it. Then I new a thread to do calculation for a long time. I want the progress bar to show the calculation progress. So I use a shared variable in calculation thread to allow main thread read it
|
| ArrayList Items | 21 Jun 2007 00:41 GMT | 1 |
I have an ArrayList with 5 elements in it. I have a Next and a Prev button on my form. I need to show the first element in a textbox when the form opens. I need to move to the next element in the ArrayList when I click the Next button and move to the previous element (if I am ...
|
| BindingList over Remoting using an interface type | 20 Jun 2007 21:16 GMT | 1 |
This works without any problems: Code Snippet string uri = "tcp://localhost:8000/CAOFactory"; cf =
|
| Setting BadPasswordAttempts and MaxPasswordAge of a local user from c#? | 20 Jun 2007 20:50 GMT | 8 |
I have some code that manages local user logins. When I create a new user I want to set the password to expire every x days and the number of failed login attempts before the account is disable/locked out. I can't seem to figure out how.
|
| timer not being enabled by thread | 20 Jun 2007 20:31 GMT | 3 |
Unaccountably, I cannot re-enable a timer from an background thread. The disable works fine, I just cannot get it to start back up. There is no method "InvokeRequired" like there is for windows.forms.controls and I get no error message about cross thread so I am not sure where ...
|
| Preventing an app from being launched more than once | 20 Jun 2007 20:06 GMT | 22 |
I'm using the following example for this: http://www.yoda.arachsys.com/csharp/faq/#one.application.instance which works perfectly on Vista, but not on XP... Doesn't throw any errors, but multiple launches of the app are not
|
| File I/O for EBCDIC/packed files - read/write | 20 Jun 2007 19:43 GMT | 4 |
I have read the "how to's" on MSDN including this one, http://msdn2.microsoft.com/en-us/library/36b93480.aspx, on reading/writing files in C#, but haven't found something that I can put together that is working.
|
| Beginner: C# Winform in Linux using Mono | 20 Jun 2007 19:17 GMT | 4 |
I have a very beginner and fundamental question regarding porting and running C# programs in Linux. As a background I am a total idiot when it comes to Linux but somehow managed to install Ubuntu 7.04 Feisty Fawn and Monodevelop 0.12 on a machine. So far so good, however I
|
| Creating printable forms - best methods? | 20 Jun 2007 19:02 GMT | 4 |
I've developed an ERP application that we use internally and works quite well. I receiving more and more requests from users to print various transactions, order forms, search results, etc. I haven't decided what the best way to do this is because I don't have much experience ...
|
| onclick change property value of form position | 20 Jun 2007 18:02 GMT | 1 |
Hello! I am new in programing and I have this problem: I must on button5_Click move current form. The code of form is: using System; using System.Collections.Generic;
|
| Paint Event Starvation During Long Computations | 20 Jun 2007 17:56 GMT | 7 |
I have a computation intensive application that tries to update the display quite often. After a few seconds the window stops updating and the window goes blank. A breakpoint in the Paint event doesn't trigger.
|
| executenonquery returning -1 problem | 20 Jun 2007 16:02 GMT | 3 |
I'm using executenonquery to check the existence of table in the database. I tried two methods of queries, everything return -1 even though table exists in database
|