| Thread | Last Post | Replies |
|
| Little beginner's query | 13 Mar 2008 16:38 GMT | 1 |
I have successfully created a small application that uses arraylists of objects. However I have found it quite tiresome , when modifying one of the objects in the arraylist to have to assign it to a temporary instance before re-writing it.
|
| Talking to an FTP server --- please help! | 13 Mar 2008 16:11 GMT | 6 |
Can you help me please? I am trying to login into to an FTP server. I can successfully reach the server and it sends me a welcome message but after that I don't know how to send down the username, password etc...It identifies itself as: "Pure-FTPd"
|
| Importing forms from vs2005 > vs2008 manually. How do i make vs2008 recognise them as forms? | 13 Mar 2008 15:35 GMT | 2 |
Im moving an application from VS2005 to VS2008. Im recreating my projects manually as I've had problems in the past allowing VS to update my application automatically I copy the xxx.cs, xxx.designer.cs and xxx.resx files for a form to the new
|
| newbie thats needs a little help with a dll issue | 13 Mar 2008 14:44 GMT | 8 |
First, I'm newer than a Newbie... I know its sad, but i'm trying to start somewhere. I'm attempting to write what I thought was a very simple program that would call another program from a command line. Now I got that part to work, but
|
| Updating the form's fields | 13 Mar 2008 14:33 GMT | 6 |
I am with a situation where I am not getting the right updating to the form's fields. The situation is the following one: I have one combobox and one textbox. I am using the CurrentChanged event of the BindingSource of the combobox to update the textbox. When selecting an
|
| Encoder - Removal?? | 13 Mar 2008 14:31 GMT | 1 |
I have a C# application that uses Windows Media Encoder 9 to stream multiple programs. For each new program, I create a new instance of WMEncoder. After successfully stopping the Encoder, what is the proper way to remove it for Garbage Collection? Currently I set Encoder = ...
|
| Creating struct instead of class using ModuleBuilder.DefineType | 13 Mar 2008 14:22 GMT | 3 |
I am trying to dynamically create a struct using the following code: TypeBuilder typeBuilder = moduleBuilder.DefineType("MyStruct", TypeAttributes.Public); It appears that this method will only ever create classes for me. Is there
|
| How to define struct with array in C#? | 13 Mar 2008 13:22 GMT | 2 |
Hi Experts: In my C# program I need to use a Win32 DLL which leads to a question: how to define Win32/C++ struct with array in C#. For example, I have a C++ struct: struct MY_STRUCT
|
| How to deploy and start Windows Service? | 13 Mar 2008 12:05 GMT | 3 |
I'm doing Windows Service programming using C# 2005. My solution contains Windows Service project. Then I added Setup and Deployment project into the same solution. Both service- and Setup and Deployment project are working fine. After running setup, it made files into the
|
| How to automate another application? | 13 Mar 2008 11:45 GMT | 1 |
I have an application I want to automate. I don't believe it has COM automation (how do I tell?) Is there a .NET counterpart to COM automation? If so, how would I determine if this application supports it?
|
| Implementing Unmanaged Interface in C# | 13 Mar 2008 11:31 GMT | 1 |
I have an unmanged interface which i have exposed through COM to C#. I have been able to implement the interface in one of the C# classes (say Class1) as well. But now what i want to do is that i need to pass the reference of the
|
| ASP.NET GridView Control basic question | 13 Mar 2008 11:26 GMT | 1 |
This is probably a stupid question, but I've never used the ASP.NET GridView control before, so I hope you'll bear with me and give me a clue. I've got a Gridview on my webform to show the contents of a database table. It's configured to show both "edit" "delete" and "insert" ...
|
| .NET Runtime 2.0 Error | 13 Mar 2008 11:20 GMT | 4 |
I have written a server in C# using the .net 2.0 socket class. The server will run fine accepting incoming connections and handling connected sockets (up to 10 at a time) just fine. It may run for 2 weeks without a hitch, then all of the sudden, without any
|
| parallel (threads) | 13 Mar 2008 09:23 GMT | 6 |
I build a console application which will run few actions in parallel. I wanted to know what is the best way to implement it : by regular threads,some thread interfaces or background workers? And where can I find good example for that?
|
| Custom Control in c# | 13 Mar 2008 07:14 GMT | 1 |
Can anyone tell me how can i write on a custom control area using keyboard. i.e i want that custom control to work like textbox, but i m not using (inheriting) textbox instead
|