| Thread | Last Post | Replies |
|
| Wrapping several DLLs in one "virtual" dll? | 28 Nov 2005 08:54 GMT | 5 |
I'm programming some classes in order to be able to import different text formats (TXT, RTF, HTML, ...) to my own format called RUF. I've defined one Solution within several Projects, each one is focused in one specific format, includes from 5 to 15 classes and produces one
|
| inconsistent accessibility error | 28 Nov 2005 08:49 GMT | 5 |
Consider the following code fragment public class Wrapper { protected enum E { IN, OUT }; public class C {
|
| Deep copy | 28 Nov 2005 08:22 GMT | 5 |
What is the easiest way to make "deep copy" of my Hashtable? How about with other Collection classes in C#, any documents available? I don'r actually understand why Framework's Collection classes does not support deep copy methods
|
| Another problem with SHFILEOPSTRUCT | 28 Nov 2005 08:21 GMT | 4 |
I've been following the example on SHFILEOPSTRUCT here in the group, but I keep getting the message: 'Cannot read from sourcefile'. Here's the code: SHFILEOPSTRUCT shf = new SHFILEOPSTRUCT();
|
| Convert string to int | 28 Nov 2005 08:11 GMT | 5 |
I have tried several methods in converting my string data to an int. I am getting a message back 'Input string was not in a correct format' strSQL1 = "SELECT [service-cost] FROM [task] WHERE [service-order-number] = " + Convert.ToInt32(txtSON.Text);
|
| Panel.BackgroundImage problem | 28 Nov 2005 08:04 GMT | 12 |
I’m using a Panel control in my form to display a background image. So in the Form OnPaint() I wrote: myPanel.BackgroundImage = m_bmp; While the m_bmp is the Form Bitmap member.
|
| C# Bit problem | 28 Nov 2005 06:16 GMT | 1 |
In my SQLServer 2000 MyDataBase.MyTable, there's one field MyStatus which datatype is Bit(1). So the MyStatus in MyTable is either 0 or 1. Now I have a ComboBox MyCombo in MyForm, and there're two items "Yes" and
|
| vb to c# conversion | 28 Nov 2005 02:23 GMT | 5 |
i am making client for com dll in vb i write like this Dim WithEvents p As CLAMXLib.ClamEngine Private Sub Form_Load()
|
| How to serialize a DataRow ? | 28 Nov 2005 02:21 GMT | 3 |
I have a DataRow that I need to send it to another process as a XML string by remoting. Bu I do not want the other process to be familiar with the schema or DataTable and DataRow structure, so I tried to serialize it to a XML string
|
| "HINSTANCE hInstance" in C# | 28 Nov 2005 02:18 GMT | 6 |
I am trying to call into some C++ code from C#. One of the functions requires a handle to the instance (HINSTANCE hInstance) of the C# program. How do I access this in C#. Thanks,
|
| Question on Marshal of a unsigned short | 28 Nov 2005 02:17 GMT | 2 |
I need to call into a C++ DLL from my C# code. The function is expecting a void pointer to an unsigned short. Which would be more correct? UInt16 wRegData;
|
| meaning of event handler code | 28 Nov 2005 00:51 GMT | 3 |
in the following: this.ExitButton.Click += new System.EventHandler(this.ExitButton_Click); if I saw an equation, such as y +=x; then y = y+x.
|
| Looking for a good book about C#.NET | 28 Nov 2005 00:17 GMT | 2 |
Hello!! I looking for a good book about C#.NET but I don't want a beginners book telling me what a class and an object is because I quite used to standard C++.
|
| what function does the 'where' keyword have in this abstract class declaration? | 27 Nov 2005 23:42 GMT | 4 |
public abstract class FormShellApplication<TWorkItem, TShell> : WindowsFormsApplication<TWorkItem, TShell> where TWorkItem : WorkItem, new() where TShell : Form thank you,
|
| Asynchronous callbacks in C# | 27 Nov 2005 23:08 GMT | 2 |
I want to do two types of async callbacks in C#. One involves spawning a worker thread, and the other does not invlve threads: Case 1 (Span new thread) ----------------------------
|