| Thread | Last Post | Replies |
|
| RLSDChange | 29 Nov 2005 11:14 GMT | 1 |
Does any one can explane what RLSD or CommChangeEvent does and on what pin it response ///RLSD state has changed publicc event CommChangeEvent RLSDChange;
|
| Send to | 29 Nov 2005 10:54 GMT | 1 |
Have anyone of you tried to get filename, of file, from "send to" right-click windows menu? Iam adding my program to send to. Now i wander if i shoud use some special function to get the name of the file, or there is easier way
|
| How to set first column's property of header row? | 29 Nov 2005 10:29 GMT | 4 |
I use a datagrid included in a repeater. as following: (.aspx) <asp:repeater id="rp_perform" Runat="server"> <HeaderTemplate>
|
| Text Input Problem | 29 Nov 2005 09:47 GMT | 6 |
i want to know how i can make the TextBox control just accept numbers and "."; EX: the user can enter "1" OR "1.4" Hope anyone could help
|
| dynamically compiled c# code - is it debuggable in 2.0? | 29 Nov 2005 09:18 GMT | 3 |
Does anyone know off hand if dynamically compiled C# is debuggable in .net 2.0?
|
| Integrating with outlook and exchange | 29 Nov 2005 08:08 GMT | 6 |
I want to apologize if this is the wrong forum for this question. I would like to write an application, in Java running on UNIX, that would insert, read, and mark as completed tasks in exchange. What is the best approach for this? Is the answer to write a web service
|
| Uninstallation problem in window sservice. | 29 Nov 2005 07:23 GMT | 1 |
i have created windows service in c# .net. But at a time of building setuo of that service i forgot to specify uninstall action in custom actions. Because of which even if i tried to uninstall the service it is not
|
| Sending Email | 29 Nov 2005 07:18 GMT | 3 |
Hi, I'm using the MailMessage & smtpMail classes in System.Web.Mail to send mail, however it's not sending any emails. I'm using it on a Windows 2003 server. The simplest way to use this is
|
| MonthCalendar DateChanged event problem | 29 Nov 2005 06:42 GMT | 3 |
I seem to have stumbled upon something that I can't explain and was wondering if someone else could maybe help me figure out why this happens. I've tried it in both VS2003 and with VS2005b2 and in both cases the result is the same: an ArgumentOutOfRangeException.
|
| MonthCalendar display problem | 29 Nov 2005 06:37 GMT | 1 |
I seem to have run into another strange anomaly with the monthCalendar control. I want to display 6 months at time with either the first half of the year (January-June) or the later half of the year (July-Dec) being rendered- depending on where todays date falls. I also want
|
| Backgroundworker issue | 29 Nov 2005 06:18 GMT | 2 |
I have some problems with a BackgroundWorker when calling a WebRequest
private void bgrdTask_DoWork(object sender, DoWorkEventArgs e) {
|
| How to expose an enum | 29 Nov 2005 06:03 GMT | 3 |
Im wrapping a MailMessage object & need to expose the Priority property. This property is set to a value of the 'MailPriority' enum. My question is, how do I create a member that accepts this enum as a value? as a field named Priority:
|
| Reflection and Type.GetType | 29 Nov 2005 05:46 GMT | 16 |
Is there any way to use Type.GetType to return a type that's in an Assembly loaded from disk? I sadly _have_ to use Type.GetType, as it's in framework code I can't change.
|
| How can I check if a type is nullable with reflection? | 29 Nov 2005 05:42 GMT | 5 |
How can I check if a type is nullable? If a type is created like bool? = null;, then how can you tell if the type is nullable as opposed to not? You have to cast from bool to bool? and such, so I'll need to know if a type is nullable.
|
| Bad Threading.. | 29 Nov 2005 05:12 GMT | 2 |
Got the below class, it has one thread that does a continuous loop getting network packets, it all seems to work well, except when i try to open a results Form "myTestForm" from within the thread, it just hangs.. tried threading TestForm, but not quite sure how to do that and ...
|