| Thread | Last Post | Replies |
|
| initializing an array in C# | 14 Jun 2007 19:49 GMT | 3 |
I want to put values inside array in if statement. so I declared an array string[] ar = new ar[5]; if (x=="10) ar={"c", "d", "e","f"}
|
| Easy (?!) regular expression -- find line breaks | 14 Jun 2007 19:46 GMT | 6 |
So, I'm trying to learn how the Regex class works, and I've been trying to use it to do what I think ought to be simple things. Except I can't figure out how to do everything I want. :( If I want to take a string and break it into individual lines based on a
|
| IDbDataParameter | 14 Jun 2007 19:37 GMT | 2 |
Could someone please tell me how to create an array using the IDbDataParameter?
 Signature Regards,
|
| Adding Sound file to C# Application | 14 Jun 2007 19:08 GMT | 4 |
i want a sound to be generated when and event occurs. especially when a message box is displayed and when an user want to close a form(i want to include this in the form closing event) thanks...
|
| Picture box displays an edge on right and bottom border | 14 Jun 2007 18:28 GMT | 2 |
We are using picurebox for displaying images in our application. The images are colored bitmaps generated within the application. When the bitmap is pasted to the Picurebox using graphics.DrawImage() in Paint event handler, it is displayed. However, there is a thin dark edge
|
| C# Byte/Short Mathematics | 14 Jun 2007 18:28 GMT | 8 |
is there anyway to use bytes with numbers without actually casting at the end? byte Test = 10; byte row = Test - 5;
|
| Obtaining Server' Ethernet Card Mac Address | 14 Jun 2007 18:21 GMT | 5 |
I have a web application running on IIS, What I wanna do is to obtain server's ethernet card's mac address in order to use this address for licensing issues I have developed my web app on
|
| upload a file through a remote web page | 14 Jun 2007 18:02 GMT | 1 |
I have a very urgent requirement if somebody can help!!!!!!!!!!!!!!!!!!!!!! i have a requirement to upload a file through a remote web page. Speaking more clearly i have a excel addin that will pick some values
|
| Getting the reference to the control add to a TabControl | 14 Jun 2007 17:58 GMT | 1 |
I created a tabcontrol toolin my application.(actually i am creating a tabbed browser) when the user clicks on the newtab button(provided by me) the new tab is added and the webbrowser control is added to that by the following
|
| Suspending all control events for a form | 14 Jun 2007 17:47 GMT | 3 |
I have a form with a bunch (maybe 30) different controls that generate events when changed, clicked, etc. The various event handlers in turn might change some of these controls, thereby causing other events, which is not what I want. So, is there a simple way to turn off all ...
|
| Which class(es) should I use for an HTML Parser? | 14 Jun 2007 17:32 GMT | 5 |
How to quickly build an HTML parser with C#? Does anything like "HTMLParser" exist? Thanks in advance Jack
|
| Process synchronisation | 14 Jun 2007 17:27 GMT | 2 |
I have several processes P1...Pn and every process is running the thread T1. The proces P1 signales the named event E. I want that when the event E is signaled, every thread T1 in processes P1..Pn will wake up and invoke a delegate. Than this thread should wait for the next time, ...
|
| Progress maximum value on XML serialisation | 14 Jun 2007 17:05 GMT | 4 |
I'm working with XML serialization. I'm writing a xml file of huge size(above 500MB) I need to show the user the progress of writing to file using progress bar.
|
| determine remoting configuration in runtime | 14 Jun 2007 16:45 GMT | 1 |
Is it possible to determine the remoting settting in runtime from within the host class? Assuming I have a class Bar whose listening URI is tcp://localhost:2345/Bar. This URI is specified in the app.cfg and the remoting configuration is
|
| Reference Vs Value array | 14 Jun 2007 16:39 GMT | 1 |
I'm currently using multidimensional arrays in PoSH by assigning values to index positions. I'm doing this because AFAIK there is no way to initialise an array simply with the 'number' of dimensions required. So, for example, I would initialise an array with 3 x 2 dimensions
|