| Thread | Last Post | Replies |
|
| Search and Index files... | 11 May 2007 12:45 GMT | 2 |
I'm looking for a tool or library (that can be used with C#) that would allow me to index many HTML files and to perform a search on this index. I'm looking for something that could be used on a desktop application (not like most of the Search-Index engine (dtSearch, Dieselpoint, ...
|
| Problem with ASP .NET | 11 May 2007 12:41 GMT | 2 |
I created an application in Expression Web. I have now opened that application in VS 2005. However, when I try to attach an event to to a control, the code defaults to VB. How can I change it to C#?
|
| is a byte array Byte[] pass by reference | 11 May 2007 10:25 GMT | 3 |
In the default state ie somemethod(Byte [] array); is the byte array passed by method or by reference ? or do you have to
|
| transparent button upon an image | 11 May 2007 10:02 GMT | 2 |
I have a windowsform with an imagebox inside a groupbox. The imagebox shows a image of a man with joints (for medical purose - shoulder, ancle, wrist etc.). The user is able to mark the jonts by clicking on the spesific joint. I solved this by using checkbox (with ...
|
| derive MouseEventArgs from EventArgs | 11 May 2007 09:48 GMT | 4 |
this is the click event method of a radio button private void radioButton1_Click(object sender, EventArgs e) { }
|
| IStream.Read() | 11 May 2007 09:32 GMT | 21 |
I have a problem using System.Runtime.InteropServices.ComTypes.IStream. Sample using the Read() method: if (IStreamObject != null) {
|
| Inherited Form | 11 May 2007 09:30 GMT | 4 |
I couldn't find it in msdn. I have a form AddCategory. Now I need EditCategory form which should look exactlay like AddCategory. I add an inherited form to the project. Now all controls' properties are read-only. I need to change AddButton's Name and Text properties to Edit. I ...
|
| Service and Client | 11 May 2007 09:08 GMT | 3 |
I need to develop an application that runs as a service. Easy there are samples on how to do this. I need to have a client which updates information for the service. Easy to do.
|
| Decimal seperator | 11 May 2007 08:58 GMT | 6 |
How do i convert a string to float/double if the decimal-seperator doesn't follow the local language settings ?? Eg. string s = load a value from a file - "1234,12";
|
| Should I use TransactionScope? | 11 May 2007 08:12 GMT | 4 |
I'd really like to use TransactionScope within the Business Layer of my web application. A book I'm reading makes a note that it should not be used in a shared web hosting environment because the server may get re-configured. Can anyone elaborate on this?
|
| IEnumerator | 11 May 2007 05:52 GMT | 3 |
I have read some examples of IEnumerator at http://www.codeproject.com/csharp/csenumerators.asp What if I have 2 arrays or collections, for example a DataSet which has 2 DataTables in my class which derives from IEnumerator? How to implement
|
| C# Web set time out question | 11 May 2007 03:51 GMT | 1 |
I just started my C# Web application. In the Response.Redirect("frm2.aspx"), how do I set a 3 seconds timeout so that I can stay at frm1.aspx 3 secondes then go to frm2.aspx? Thanks for help.
|
| Change value cell after click on row in DataGridView | 11 May 2007 02:53 GMT | 1 |
Hi Group, In my application I have DataTable which is displayed in DataGridView via DataView: DataView myView = new DataView(myTable);
|
| DTD XML String | 11 May 2007 02:10 GMT | 1 |
I am writing an application which communciates with a web service. The data I need to send to the service is an XML document over HTTPS. I have been supplied with a DTD file. My problem is how do I create a structure of some description (DataSet
|
| sending PCL printer cmds from csharp | 11 May 2007 01:08 GMT | 1 |
We have a c# application that sends documents directly to the printer using PrinterSettings() and PrintDocument(). These functions do much of the printer and document configuration work needed, but it looks like we are going to need to use a PCL printer command to initiate ...
|