| Thread | Last Post | Replies |
|
| Remoting/Threading | 21 Feb 2007 18:00 GMT | 2 |
I am somewhat new to the concept of remoting in c#. Here is my scenario, if anyone could give me some tips I would really appreciate it: I have a server program running that updates a database and a binary
|
| How to implement a method as different name | 21 Feb 2007 17:56 GMT | 6 |
How can i implement a method of interface in a new class as different method name. Something like use Implement key word in VB.NET. Thanks!
|
| Strange compile error | 21 Feb 2007 17:32 GMT | 2 |
I have downloaded a project from the site "The code project" but I get the following 3 compile error. C:\tony\IPC\AppModule.NamedPipes\NamedPipeNative.cs(548): Missing XML comment for publicly visible type or member
|
| convert binary(20) to string | 21 Feb 2007 17:31 GMT | 3 |
I have a column with SQL Server type binary(20) (contain a sql handle, ex : 0x01000800B73B573B98C6B1030000000000000000) I want to convert this column to string value with this code : string sql_hndl = MyDataRow["ColWithBinaryType"].tostring;
|
| global "Windows-wide" shortcut keys | 21 Feb 2007 17:23 GMT | 1 |
Is there an easy way from .NET to register a Windows-wide keyboard shortcut? I would like to bring up a WinForm window from an already running .NET application whenever this keyboard shortcut is used. I assume the way to do this is calling the Windows API from .NET.
|
| Check to see if object instance exists | 21 Feb 2007 16:59 GMT | 2 |
Thanks in advance. what is the C# equivalent of the VB.net IsNothing(object) function? just trying to check to see if an object instance already exists. does someone have an example?
|
| Deleting data in dataset | 21 Feb 2007 16:36 GMT | 8 |
Using C# 1.1 I have a dataset loaded from an XML file. The idea being that if the app (a winform app that relies on a webservice) is offline, then I save data locally in XML and update the web service later.
|
| plug-in architecture help. | 21 Feb 2007 16:10 GMT | 1 |
I want to monitor internet explorers instance and get events when any IE instance is open. I want to develope it in dot net. how will i do this?
|
| Convert C# to VB.Adding Eventhandler. | 21 Feb 2007 15:19 GMT | 2 |
I have this piece of code I am trying to convert from c# to vb.net. It's a Windows project. This line gives me trouble ( I have tried to compress the code for readability. Hope I haven't screwed up):
|
| efficient two's complement of a byte array | 21 Feb 2007 14:53 GMT | 14 |
What would be the most efficient way to calculate the two's complement of a variable length byte array? Thanks for your time.
|
| help using relative file paths with loadfile | 21 Feb 2007 14:45 GMT | 1 |
bellow is select sample of code im using to dynamicaly load assembley's and it works, but the assembley.loadfile requires that i use a absolute directory path. Is there anyway i can use a relative file path. I just want to access
|
| Reading dataset from XML problem | 21 Feb 2007 14:41 GMT | 4 |
(Sorry for duplicate post, finger trouble before I finished...) using C# 1.1 I am writing a winform app that collects a dataset from a webservice. At the same time I collect the data, I write the dataset out to the local
|
| Error: Binary format of the specified custom attribute was invalid. | 21 Feb 2007 14:40 GMT | 2 |
I have a Windows .NET 2.0 application that has been working fine for last year, and now all of a sudden on one customers computer I am getting this error, "Binary format of the specified custom attribute was invalid." Here is a stack trace of the error:
|
| Easy Visual C# Insert Record Tip? | 21 Feb 2007 14:21 GMT | 5 |
I have a simple VC# form that validates its text boxes' contents and I want to insert these text box contents into an SQL Server 2005 Express DB. I have added the DB as a data source but right off the bat most of what I see in terms of visual controls are data grids for displaying
|
| Replace line feed in RTF | 21 Feb 2007 14:20 GMT | 1 |
I am replacing tags with db info. My problem is I some of the addresses do NOT have an address1. end up with a blank line. I want to get rid of that line I am using the following code to replace tempbbb.Rtf = tempbbb.Rtf.Replace("<address1>", newArray[i].ToString());
|