| Thread | Last Post | Replies |
|
| Can I debug a library in C# Express 2005 | 26 Nov 2005 00:20 GMT | 2 |
how can I debug a code library using C# 2005 Express? I cannot find any way to make the library debuggable - even when I set DEBUG and No Optimize on the debug panel of the code library's property panel. When I try to invoke the library from a windows app it tells me the dll needs ...
|
| In winform datagrid, How to find the datagridcell by mouse coodina | 25 Nov 2005 23:00 GMT | 1 |
I have a problem needs help. In a winform, I have a datagrid. In Mouse move event, I can get coodinates of Mouse. I want to decide which datagridcell my mouse is on. Can anybody tell me how to do it?
|
| Controls on Form change size | 25 Nov 2005 22:57 GMT | 1 |
I've developed a Winforms application for a few people. It's a very basic Form with a few textboxes, comboboxes, buttons, labels and one PictureView. With 1024x768 screen resolution the all controls fit perfectly on the screen
|
| DropDownList | 25 Nov 2005 22:41 GMT | 2 |
How can i fill a dropdownlist with data returned by the database? My code is: string strsql = "SELECT designacao FROM categorias"; multiqual.bd db1 = new multiqual.bd();
|
| MultiColumn DropDown Combobox | 25 Nov 2005 20:44 GMT | 1 |
Has anyone any solutions to multicolumns dropdown combobox? Like to see how to implement it. Thanks!
|
| GetTempFileName() returns a DOS path (with ~ in it) how to convert ? | 25 Nov 2005 20:36 GMT | 2 |
Path.GetTempFileName returns a string in the form : C:\DOCUME~1\DEFAUL~1\LOCALS~1\APPLIC~1\ how can i convert it to a normal readable path C:\Documents and Settings\Default User\Local Settings\Application Data\
|
| Common Object within DLL | 25 Nov 2005 20:30 GMT | 6 |
I would like to instantiate an object within a DLL for the classes within the DLL to make use of. Is there a way to cause the DLL to instantiate an object within itself when it is first called into action or by some other event?
|
| Error CS0246 | 25 Nov 2005 19:53 GMT | 1 |
The code below is working: Main.cs ------------- using System;
|
| Unhandled Exception within a try catch | 25 Nov 2005 19:44 GMT | 5 |
Now this is bugging me. I just released software for a client and they have reported an unhandled stack overflow exception. My first concern is that the entirity of the UI and any threaded operations
|
| POST/GET from windows form | 25 Nov 2005 18:59 GMT | 3 |
I need to pass a series of parameters to an SMS gateway from a client application, a windows form application. The question is, HOW? Is it possible to POST/GET data from a windows form? Do people use Remoting or Socket to this pourpose?
|
| POST data to form not working | 25 Nov 2005 18:58 GMT | 1 |
I'm developping a program to automate the submisson of grades to a website called omnivox.ca (http://brebeuf.omnivox.ca). My problem is that I can't get the login working. I get the cookie right and the post data is corect. But when I sniff the http packet it contains not post
|
| by ref or by value | 25 Nov 2005 18:20 GMT | 8 |
hello, I ran the following code ////////////////// XmlDocument dom = new XmlDocument();
|
| array in struct | 25 Nov 2005 18:19 GMT | 3 |
I want to save integer value in array(int key[3]) of struct array (Element[10). But runtime error occured. (=> Source Code) How I use array of struct? I am using dotnet 1.1.
|
| Web Serivice devlopment without VisualStudio2005 | 25 Nov 2005 18:17 GMT | 1 |
I would like to create a Web Service using C#. I bought "Programming C#" from O'Reilly and they explain how to do this using VisualStudio2005. As I do not have this tool, I would like to know how to do it with the "base" C# tools and library.
|
| Regex Matches | 25 Nov 2005 18:06 GMT | 5 |
Any takers? Got a string of DNA as an input sequence GGATGGATG, apply the simple regex "GGATG" as in Regex r = new Regex("GGATG", (RegexOptions.Compiled));
|