| Thread | Last Post | Replies |
|
| re-throwing an exception | 30 Mar 2006 21:33 GMT | 4 |
I would like to re-throw an exception but keep the stack trace from when the exception was originally generated. Is there any way of doing this (using .Net 1.1)? I am not throwing it from the same place it was caught (in fact it is
|
| sizing a radiobuttonlist in an asp.net page | 30 Mar 2006 21:31 GMT | 2 |
I have an asp.net page that looks great except for a radiobuttonlist. It insists on being what looks like 12 point. It doesn't matter how I resize it. It stays big. This is a horizontal list and it's for Y and N. I know a checkbox would be
|
| Accessing Protected Variable From Outside Class | 30 Mar 2006 20:03 GMT | 5 |
I have a protected variable in a class (Class A) that I need to call from another class (Class B) to modify. I thought what I had to do was create a public method in the class (Class A) containing the protected variable so that the modification(s) can be done.
|
| Scrolling DataGridView ( window forms) | 30 Mar 2006 19:36 GMT | 2 |
When opening a form with a datagridview, I would like the grid to scroll to the last row. If the row is visible there is no problem. The grid has a binding source which is bound to a bindinglist<T>. I then set the binding source position to the last item of the list, but ...
|
| Postback problem | 30 Mar 2006 19:10 GMT | 2 |
I have a form in a C# ASP Dotnet application. There is code in both the !Postback and Postback section. The code in Postback section always executes on the development box but when I deploy the app on the server this does not execute. I even tried putting "document.Form1.submit() ...
|
| Ordering two controls that dock "top"? | 30 Mar 2006 18:44 GMT | 3 |
I have an MDI Parent form with a toolstrip and menustrip. The menustrip is always the top most. Both are Docked to Top. I contemplated using a toolstripcontainer but then removed it. I had to redock my toolstrip and menustrip. Now the toolstrip is always top
|
| Updating Programs | 30 Mar 2006 18:32 GMT | 4 |
Ok, I wrote this program that I have offered for download. What I want though is for the user to: (1) Download & install the program (2) Have the program automatically check for updates (code chages, new
|
| Const Initializer within class | 30 Mar 2006 18:22 GMT | 6 |
I'm keeping both a variable, and its default value in a class: class X { public const string DefaultString = "Default Value"; ...
|
| How pass variable from one form to the next in Win app? | 30 Mar 2006 17:39 GMT | 4 |
I have a form open and when a user clicks a button I do a frmNew.Show() and this.Hide. But I have a value that I need to pass to the new form. How can I do this, please? Thanks very much,
|
| Error In Command Window - Method does not exist | 30 Mar 2006 17:29 GMT | 4 |
I have the following code: [STAThread()] public static void Main() {
|
| foreach & generics syntax proposal | 30 Mar 2006 17:11 GMT | 3 |
since generics allow us to implement several IEnumerable<T> interfaces on a single class, I think that "foreach" should somehow reflect that. suppose we have a enumerable class class C : IEnumerable, IEnumerable<int>, IEnumerable<string> { ...
|
| What does strongly typed mean? | 30 Mar 2006 17:05 GMT | 2 |
This is the context... " TableAdapters are created with the Dataset Designer inside of strongly typed datasets." Thanks!
|
| Windows form components enumarating does not work? | 30 Mar 2006 17:05 GMT | 1 |
I want to list components on the screen by enumarating the components. For example, I am using toolstripmenu which is a component for windows form.. But when i load the form, the components is null. foreach(IComponent component in components.Components)
|
| Please! VB controls in C# | 30 Mar 2006 16:26 GMT | 4 |
I need use a vb 6 control in my application written in C# but, as I am a limited user (no administrator), everytime I run it an error appears. Why? How can I make it works? Thank you
|
| Is there anything in .Net which can detect the resoruce leak? | 30 Mar 2006 15:56 GMT | 1 |
Hi, guru, I know GC in .Net will take care of the memory leak, but how about resource leak. Say, in a very complicated programs, some gdi objects are not release
|