| Thread | Last Post | Replies |
|
| How do I consume an event from C++/CLI in C#? | 31 Jul 2008 23:06 GMT | 5 |
I have a C++/CLI assembly that exposes an event, e.g: public ref class TestClass { public:
|
| C# Web Application | 31 Jul 2008 22:34 GMT | 1 |
In another posting I noted I need to be able to activate an event via code when the value in the field changes. I have been able to get a javascript to work. It's a javascript:alert, which displays a Hello World message box when data is changed in my field. The field type is an ...
|
| Playing flash in a windows program - .Net 2.0 | 31 Jul 2008 22:27 GMT | 2 |
I have a .Net 1.1 program that works fine that plays flash files. I am converting it to .Net 2.0 and am getting all kinds of compilation errors about not finding files or assemblies. Here's the error message in the design view of the window.
|
| 2 comboboxes | 31 Jul 2008 22:16 GMT | 3 |
I want to select text from combobox 1 and have another combox with a list of different items. Example: if cb1 is Dell than show me only the laptop for dell on cb2 if cb1 is IBM than show me only the laptop for IBM on cb2
|
| Determine the default mime handler for a file type then launch that handler | 31 Jul 2008 21:28 GMT | 3 |
How would I go about finding the default handler, let's say a text file (*.txt), then launch the default handler with the file as an argument? I had found how to launch an external program, but I do not know how I would find the default handler to a file type. Any help is
|
| are you missing a using directive or an assembly reference | 31 Jul 2008 18:47 GMT | 2 |
I have the following code which is an entity for a table in my database. but I am getting several errors such as: The type or namespace name 'ColumnAttribute' could not be found (are you missing a using directive or an assembly reference?)
|
| send commands to device using activesync | 31 Jul 2008 18:33 GMT | 4 |
I am trying to write application which runs on my PC that sends data to an application running on Windows mobile. The problem is that the tcp over activesync doesn't work. The device is not connected to ehternet.
|
| DataTable Subset to new DataTable | 31 Jul 2008 18:32 GMT | 1 |
How would I copy all data from my DataSet that meets a filtering condition to a new DataTable? Is this what I want? DataTable table = new DataTable();
|
| Adding an IP address to a network card | 31 Jul 2008 17:25 GMT | 3 |
I'm trying to add an IP address to a pc's network card. In C++ I used the IPHlpApi.lib's function AddIPAddress. Is there a built in way to add an IP Address in C#? Thanks in advance...
|
| FindControl in Repeater | 31 Jul 2008 16:54 GMT | 15 |
I dynamically create controls (textboxes) in a repeater control. I know their names (eg. TextBox1). How do I find the text of TextBox1 in the Form? FindControl does not seem to work.
|
| Simulating submit button using HttpRequest | 31 Jul 2008 16:37 GMT | 3 |
I'm trying to run a ccxml, and consequently, a voiceXML page on the voice server through my application and the documentation of the server mention that it can be done using HTTP POST. Following is a sample example of html that works and successfully
|
| Collection initialisers | 31 Jul 2008 16:00 GMT | 1 |
I am working through some LINQ examples on MSDN, and I have come across some code that doesn't seem to work here : http://msdn.microsoft.com/en-us/vcsharp/aa336753.aspx Is this the right way to use collection initialisers or is this way that
|
| Getting systempath in Spanish Vista | 31 Jul 2008 15:55 GMT | 1 |
I use this code to display a path to the user: string path = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location); The problem that I have is that it return "C:\Program files\..." on a PC
|
| perform reboot | 31 Jul 2008 15:28 GMT | 7 |
how can i preform reboot to my machine from my win application? Thanks, Gidi.
|
| Problem with Dataset Merge and preserveChanges = TRUE | 31 Jul 2008 15:00 GMT | 1 |
Here is my problem: I am trying to merge 2 datasets but I don't want to overwrite rows that are already modified in my working dataset. Example:
|