| Thread | Last Post | Replies |
|
| Webform Question | 22 Mar 2006 20:15 GMT | 3 |
In my C#.Net 1.1 Web form project, I have WebFormParent and WebFormChild. The WebFormParent has a button btnToChild. How will thd code like so when I click the btnToChild, the browser will launch WebFormChild?
|
| ContextMenu not showing on Button | 22 Mar 2006 19:37 GMT | 1 |
I have a button on a Windows Form and it has a ContextMenu set, when the user clicks the button I want the menu to appear, I've tried this: btnMenu.ContextMenuStrip.Show(); Absolutely nothing happens.
|
| Dynamic Types with Reflection.Emit, how to ? | 22 Mar 2006 19:12 GMT | 2 |
In c#, I need to dynamically create types at runtime that will consist of the following: - inherits from a given interface - will have a constructor with an int argument
|
| Winodws Form Controls Listing? | 22 Mar 2006 18:42 GMT | 1 |
I want to get the controls of the windows form. I know that form.Controls give me the list of controls but i have a problem. For example, the toolstripmenu control cannot be reached with that way. My goal is to list the items of the toolstripmenuitem on the form. I have only the
|
| Still not a single word for my problems.. please see act problem | 22 Mar 2006 18:38 GMT | 4 |
i posted today my day has been totally fruitless. there must be someone out there that knows enough to figure this out?
|
| Windows form flicker with background image | 22 Mar 2006 18:02 GMT | 2 |
I have a windows form with a background image - set through the forms background image property. The form also has panels and icons on top of it. When this form is loading, there's a lot of flicker in the screen.
|
| C# String and Escape sequence during Concatentation??? | 22 Mar 2006 16:31 GMT | 4 |
I'm looping thru a reader object for SQL Server. Two of the files I'm returning are the "UNC" name of a server and a "File Path". Data looks something like: UNC = \\10.246.16.18\MYSHARE
|
| How to search some control by name? | 22 Mar 2006 16:21 GMT | 1 |
I have one WinForm and 3 buttons on this form. all buttons are private. I set the button2's click event to execute the "Controls.RemoveByKey("button1");".
|
| Plugins: flexible & safe use of different assembly versions with different features | 22 Mar 2006 16:19 GMT | 1 |
Are there any resources out there (because I couldn´t find any) concerning the usage of assemblies with different features in each version? In other words: I´ve got one assembly A that is using assembly B - B exists in different
|
| Turn off compiler warnings in some specific spots in the code | 22 Mar 2006 16:04 GMT | 1 |
How can I turn off the compiler warnings in some specific spots in the code? I don't want to turn off warnings for all project. I remember we had PRAGMA feature in C++. Do we have the similar thing in C#? Thank you,
|
| user control | 22 Mar 2006 15:32 GMT | 1 |
I made a user control and put it onto main form. On the control i have a button that should show another form with grid. I don't know how, i want to show that form on the main form panel. On witch properties main form should i call that function?
|
| create xml element | 22 Mar 2006 14:47 GMT | 1 |
I know I need create a DataRow from a DataTable for the schema reason. Why must I create a XmlElement in a XmlDocument? I already have a string, I was trying to use XmlDocument.CreateElement("Q") method to create a "fake" or "Empty" XmlElement and set this element's
|
| Application.Run generating FileNotFound exception | 22 Mar 2006 14:08 GMT | 6 |
I have an applicationthat calls Application.Run from main, and this generates a FileNotFoundException. The solution has the main program and a number of DLLs, and it is saying that it cannot find one of the DLLs or its dependencies. Yet the DLL is present in the application ...
|
| Partial Classes and Inheritance | 22 Mar 2006 13:24 GMT | 1 |
In a web application using asp.net 2.0 All my classes are partial classes. - I noticed that partial class cannot be inherited... is that true? - I tried to remove the partial keyword , and I receieved this error
|
| Color fading | 22 Mar 2006 13:09 GMT | 6 |
I want to fade a color to another color in a user control. Actually the color is the BackColor of the User control. What's the easiest way to do this? Thanks,
|