| Thread | Last Post | Replies |
|
| Saving Information for Page Reload | 12 Oct 2006 17:16 GMT | 1 |
I currently have information that I am writing to a <div runat="server" id="hidden_text" /> tag and when the user hits a button, I want to grab that information so I can store it in a database. However everytime I try, either with storing it in a session variable or by trying to ...
|
| Problem running app in .NET 2 when .NET 1.1 was installed | 12 Oct 2006 16:51 GMT | 11 |
If I install an application that is made with .NET 2 over an application that was made with .NET 1.1 it creates problem. Here is what I am doing: I unintall the application X that was made with .NET 1.1 and then Install the same App X that is made with .NET 2. Then I double click ...
|
| Windows explorer icons | 12 Oct 2006 16:33 GMT | 1 |
I'm trying to create a windows explorer like app and the problem I'm having is getting the proper icon for the folders and items. In windows explorer there are many different icons and most seem to be in the shell32.dll. The problem is that there also seems to be custom icons
|
| help with public field access | 12 Oct 2006 16:15 GMT | 2 |
Hello, would you please consider the following small piece of code. using System; class Constants {
|
| DataGridView and period / oemperiod | 12 Oct 2006 16:10 GMT | 1 |
I'm trying to find where this behaviour is documented: Create a new WinForms app in VC#2005, drop a DataGridView on the form. Put this code in the ctor after InitializeComponent: DataGridView1.Columns.Add("foo", "foo");
|
| How to create an admin account | 12 Oct 2006 16:10 GMT | 4 |
I admit this not being C# specific but i don't know where else to start. My application needs an "administrator" user id. This would function just like the "administrator" user id in windows. The account is built-in. The only thing that is configurable about the account is the
|
| Multiple javascript for a UserControl | 12 Oct 2006 16:09 GMT | 1 |
I have a usercontrol which includes a small piece of Javascript built up as a string in <script> tags and put onto a web page when an instance of the User Control is created. The Javascript does some client side checking of User Input.
|
| How to change name of the project? | 12 Oct 2006 16:00 GMT | 2 |
What options do I have after putting a month in on writing a program and so many functions in it and now I want to change the name of the project with their file names? Do I make the new project and hand copy over all the controls and code
|
| Why does main{} always include a parameter string array? | 12 Oct 2006 15:20 GMT | 3 |
Hi from reading the ECMA spec. I know understand that the bracketed code after 'void Main' is an instruction that method Main accepts a string parameter array. Can someone explain to me why this is so? and why by default this
|
| Math.Round Question | 12 Oct 2006 15:13 GMT | 8 |
Hi group, i have a method in my class with the following code: private double GetCompletedPercentage(TimeSpan totalTime, TimeSpan budgetedTime) {
|
| How to see the changed value in design mode of composite control | 12 Oct 2006 14:22 GMT | 2 |
When I change a property, I can`t see it in design mode. i defined the property as followed: [Bindable(true)] [Category("Box")]
|
| InterProcess Communication, .Net to C++ communication | 12 Oct 2006 14:09 GMT | 1 |
I need suggestions and possibly solutions to the problem stated below: I have an application written purely in .NET ( Windows Form Application) and another application that is supposed to be written in MFC(Visual C++) or Win32 GUI Application. The problem is to communicate
|
| Problem with ASP:Button | 12 Oct 2006 12:46 GMT | 2 |
I have a set of code that updates to a div tag through javascript whenever a checkbox is checked, however I need a way to get that information to the server side when the user uses the submit button. So I created an asp:button on the page, but for some reason, everytime
|
| Initializing list in constructor ObjectNullReferenceException | 12 Oct 2006 10:04 GMT | 6 |
I have a code like this(as an example) : public class class1:UserControl { private MyOwnCollectionBasedClass pList1;
|
| Looping through Filenames in the selected directory folder | 12 Oct 2006 09:29 GMT | 3 |
I am new to C# and It might be a simple question. I want to loop through filenames and ignore subfolder and its files. I have to display all files names in the screen. Please help me how to do it using C#.
|