| Thread | Last Post | Replies |
|
| C# and MSSQL (image type column) | 16 Aug 2006 03:07 GMT | 3 |
I need to load an rtf file to my sql database (into image type column). now I am using external tool textcopy.exe (launched within my application) Is it possible (how to do that) to write my own application that will load a file into image type column in sql db?
|
| Drawing in a picturebox | 16 Aug 2006 02:16 GMT | 5 |
I'm new to C# and want a simple app to display a bitmap that is in bayer format. I searched the group and have an app that can draw pixels in a picturebox using Pset. My problem is that Pset uses x,y,color, where color is predefined. I need to draw my pixel based on the value
|
| Listbox SelectedIndex set to -1 | 16 Aug 2006 01:33 GMT | 3 |
I populate an unbound ListBox on a WebForm with the following C# code. SqlDataReader oDr = sqlCommandGetTableList.ExecuteReader(); ListBoxTableName.DataSource = oDr; ListBoxTableName.DataValueField = "TABLE_NAME";
|
| TreeView.GetNodeAt problem | 16 Aug 2006 01:04 GMT | 4 |
I have a dragdrop event to capture the treenode that trigger that event. However, I always get the returned node is null. private void trvEmployee_DragDrop(object sender, DragEventArgs e) {
|
| Convert C# project to vb.net | 16 Aug 2006 00:38 GMT | 7 |
Is there any application that convert C# project to vb.net project? Thanks =)
|
| Office 2007 Style Forms | 16 Aug 2006 00:36 GMT | 2 |
I would like to use a control which change the standard Windows Form Style to the Form Style used in Microsoft Office 2007. DevComponents has developed a component which do the job (http://www.devcomponents.com/dotnetbar/ - see number 21) but I don't
|
| A question about ShowDialog() form | 15 Aug 2006 23:26 GMT | 3 |
I have a modal dialog lets call it TestDialog that is shown by using method showDialog(). This TestDialog has three controls it's one richtextbox and two buttons. The buttons is one Ok button and one Cancel button.
|
| Copy Reference Type? | 15 Aug 2006 23:15 GMT | 15 |
Ok, this should be simple, but how do I copy a reference type by value? Meaning SomeComplexObject s1 = new SomeComplexObject (); SomeComplexObject s2 = new SomeComplexObject ();
|
| Display problem with my treeview and listview getting chopped off | 15 Aug 2006 23:07 GMT | 6 |
My container with 2 panels containning Treeveiw and Listview controls are chopped off on the top by the toolstripmenu when I dock the these 2 contols in the parent container and the container is also docked to the parent, and the container at this poit enlarges and covers up the ...
|
| How to get the string passed by SendMessage? | 15 Aug 2006 22:53 GMT | 2 |
1. I am using SendMessage (HWND_BROADCAST, WM_FONTCHANGE, 0, (LPARAM)pFileName); in C++ side 2. In WndProc, I wanted to get the fileName from m.lparam, which is a IntPtr. How can I convert it to a string in C#
|
| levles of performance | 15 Aug 2006 22:39 GMT | 1 |
heres one for ya.... what measures can be put into place in order to bring a system back up to its expected levels of performance, when numerous instances of paging to and form the hard disk used for paging file, making the
|
| enumerating and using fonts installed by AddFontResourceEx | 15 Aug 2006 21:55 GMT | 2 |
1. I've installed a bunch of fonts in main application, which is in native C++ code using AddFontResourceEx 2. A C# application is launched from this main application, but failed to enumerate those installed fonts.
|
| ORA-12154: TNS:could not resolve service name -- WebServices | 15 Aug 2006 21:04 GMT | 5 |
I just installed ODP.net 10.2.02 on my local machine (Windows XP Pro) running IIS. I have created a sample webservice in VS2003, connecting to localhost. I am getting:
|
| Changing border color? | 15 Aug 2006 21:00 GMT | 1 |
Is there a simple way to change a UserControl border color? I'm creating a UserControl that will have a border, using the UserControl.BorderStyle property. The standard border is black; I'd like to change the color to something a little more appealing. I've tried overriding
|
| StackTrace constructor on other threads | 15 Aug 2006 20:33 GMT | 2 |
There is a StackTrace constructor that can take a target thread. This requires that the target thread be Suspended. However, the Suspend() method of Thread is now deprecated. Is there an alternative?
|