| Thread | Last Post | Replies |
|
| EventArgs that return values... How do i replicate? | 12 Sep 2006 18:59 GMT | 6 |
Consider the TextBox Control. It has a KeyPress event of type KeyPressEventHandler which passes a KeyPressEventArgs to whatever method is assigned to the event. When you set e.Handled = false within the assigned method, it disallows
|
| Problem with casting | 12 Sep 2006 17:58 GMT | 6 |
First, Thanks for ALL your help. Second, another question: I have some c code i am turning into c#:(truncated) WORD calcChecksum(BYTE data[], WORD length)
|
| how would *you* do this? | 12 Sep 2006 17:29 GMT | 5 |
I have several pages that will contain forms used for registering with our website. These form won't always show the same information, as their primary purposes are different, but part of the processing will be the registration.
|
| a problem in using flatlayoutpanel | 12 Sep 2006 16:33 GMT | 1 |
I am using flatlayoutpanel control to draw a lot of linkbutton. But how can I implement my identical source or different code by click the linkbutton? how to control the interval of two adjacent linkbutton? Thanks a lot
|
| How many bytes is taken by an empty class | 12 Sep 2006 16:03 GMT | 9 |
I once worked for java in embedded system. Since the memory is limited in embedded system, there are some guidelines for programming. One of them is "Don't create too many classes, because each class takes up at least 200 bytes". The 200 bytes are byte-code, not size of a class
|
| Generating CPU load with a C# app? | 12 Sep 2006 15:59 GMT | 4 |
I need to build or buy an application that will allow me to generate a specific CPU load and memory usage. Ideally I could throttle this up and down to simulate different load conditions. This for application testing - we'd like to see how the app performs under certain load ...
|
| Seeking advise - first C# project | 12 Sep 2006 15:58 GMT | 1 |
I'm a C++ programmer, currently working with VC6. I would like to join the rest of the world and progress to the .NET era. There's this non-commercial project I'm thinking about, and I thought it would be a good chance for me to experience a bit with C# and a newer compiler.
|
| converting exclusive DAO connection object to an ADO.Net connection object | 12 Sep 2006 15:55 GMT | 1 |
I have a vb application that uses Jet.Oledb with DAO 3.51 over an MS Access database. New enhancements being done to this application is done in C#.Net. The vb application thus hosts the .net components.Normally the vb portion uses the dao connection, and the
|
| C# with VB.Net | 12 Sep 2006 15:31 GMT | 2 |
I'm new to C# but I have experience in VB.Net. I have a db with tables and stored procedures. I already built the DAL in VB.NET. Can I use this with a C# application? Do you know of any really good examples of accessing data using C# and stored procedures? (Insert, Update, Delete,
|
| Certifications for WinCE? | 12 Sep 2006 15:27 GMT | 1 |
Are there any certification tracks for windows mobile or CE?
|
| Object reference not set to an instance of an object | 12 Sep 2006 15:27 GMT | 2 |
I'm having this error "Object reference not set to an instance of an object" while running this event in my transactionListGridView control. protected void transactionListGridView_SelectedIndexChanged(object sender, EventArgs e)
|
| HTML Data generated by Server.Controls | 12 Sep 2006 15:07 GMT | 2 |
i've got very interesting problem. it is like this. is it possible to get HTML generated by the server control in code behind? i'm developing an asp.net web application where i need to fectch data
|
| Preventing control movement | 12 Sep 2006 14:45 GMT | 3 |
I have a Panel derived class on a ScrollableControl derived class. When the ScrollableControl scrolls, I don't want the panel to move. I've tried everything I can think of and I can't make this happen. Seems like it should be simple enough.
|
| MouseWheel under Compack Framework | 12 Sep 2006 14:05 GMT | 2 |
Is someone know how to handel MouseWheel event under Windows CE 5.0 Compack Framework 2.0
|
| Open Word doc with option to Save/Open | 12 Sep 2006 10:19 GMT | 2 |
Hi, I've created a web app which, at runtime, generates a list of documents available for download, as asp:hyperlink tags. One of these is a Word doc, and I need to give the user the option of saving the doc or opening it, rather than simply having it open in a new Word window
|