| Thread | Last Post | Replies |
|
| C# question getting data from a GridviewRowDataBound | 31 Aug 2007 20:44 GMT | 3 |
This is what i'm using and it seems way too complicated!! for finding a data item. I hope some one has a better way? private void fn_setRankingColor(GridViewRow gvr)
|
| ClearQuest API for PERL and VB and NOT FOR C#? | 31 Aug 2007 20:19 GMT | 1 |
Why would ClearQuest's API manual only show VB and PERL examples? Has anyone used it for C#?
|
| Using reflection to unsubscribe an event | 31 Aug 2007 19:49 GMT | 10 |
I have a library I'm using that has a lapsed listener issue. I figured I'd just sneak in and do the unsubscription myself since I don't expect it to be fixed any time soon. So, I have the control whose event its subscribed to and it's subscribed to
|
| line with numbers | 31 Aug 2007 19:36 GMT | 1 |
Using asp.net with C#, how can show on the left side of my page the line's numbers?
|
| Oppinion wanted | 31 Aug 2007 19:29 GMT | 21 |
two ways to find a label control in a gridview and set its text property. Which is the perfered way I perfer the first one, but i'm new to cs. protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e) {
|
| file copy question | 31 Aug 2007 19:11 GMT | 4 |
i want to know how can i copy a file in a way if it was stopped for a reason it can continue from the last point just like what torrents and file download managers do? thanks..
|
| Worker thread exits when from loads. Why? | 31 Aug 2007 18:53 GMT | 4 |
I have this windows app that I'm working on. When it loads it instantiates this object which creates a thread to read data and send it to the form. My problem is, is that I want to keep this thread around for the lifetime of the object, reading and sending data to the
|
| Remove Icon From Task Switcher Menu | 31 Aug 2007 18:51 GMT | 3 |
How do you remove an icon from the task switcher menu? (The one you get with ALT-TAB.) I think I asked this before but never got an answer. Now I have another app that shows an icon for each form in the task switcher menu.
|
| new form not responding | 31 Aug 2007 18:42 GMT | 11 |
Im finding problem with this code. When i try to display the newindow, its not responding. It does create the new window, but doesnt respond at all. Just stays blank. I'm fairly new to c#(just a weeks experience), so it could be some basic issue that im not aware of.
|
| Regex question | 31 Aug 2007 17:54 GMT | 4 |
I have a regex question and it never occurred to me to ask here, until I saw Jesse Houwing's quick response to Phil for his Regex question. I have some filenames that I'm trying to parse out of URLs. (href=("|')http://.www\.thesite\.com/.{1,7}/)(?<filename>.[^"|'])
|
| properly disposing of filestream | 31 Aug 2007 17:29 GMT | 11 |
I am getting an error "The process cannot access the file because it is being used by another process" when I debug a program more than once. The file is being opened for append access with a FileStream. I have implemented IDisposable with the following code, am I doing
|
| RegisterWindowMessage | 31 Aug 2007 17:11 GMT | 2 |
I'm looking for the RegisterWindowMessage function in the .Net framework. Well,... I just can't find it. Do I have to dllimport it? TIA,
|
| Taborder | 31 Aug 2007 17:03 GMT | 1 |
Is possible to know witch is taborder of a control on fly. Because tabindex is difference of taborder Thanks
|
| Application Hosting - Socket App | 31 Aug 2007 16:52 GMT | 1 |
I've been doing some socket programming for a while and can get a server with multiple clients working fine on my development machine, but what does one need to do in order to have the server application hosted somewhere on the internet?
|
| Proposal: allow IEnumerator on foreach loop | 31 Aug 2007 16:49 GMT | 3 |
Currently it is only legal to use types which has a method named GetEnumerator to be used in a foreach loop. This makes it impossible to use the same Enumerator after and before a foreach loop, because GetEnumerator always returns a new one.
|