| Thread | Last Post | Replies |
|
| How to access ArrayList values inside another ArrayList? | 30 Oct 2006 14:46 GMT | 6 |
how do I access values in an ArrayList which is a part of another ArrayList? I know I can define a class and then it is quite simple, but this is just an auxiliary application to compute some values used later in the program. There must be a simpler way to achieve this without ...
|
| Stack trace from an exception in a native C++ method | 30 Oct 2006 14:44 GMT | 3 |
I am calling an unmanaged C++ method from C#. When an exception occurs in the C++ code, it gets caught in our C# code. CSharpMethod() {
|
| Small bit of regular expression help? | 30 Oct 2006 14:28 GMT | 2 |
(If anyone's upset enough, I'll go to a different group. But I am writing this program in c#, so I don't think it's totally off-topic.) I'm trying to dig numbers out of a text file, and I've got the following regex:
|
| sql insert into MS Access | 30 Oct 2006 13:16 GMT | 3 |
What's the easiest way to make an insert using Microsoft.Jet.OLEDB.4.0 OleDbConnection connection to a MS Access data base file? I'm finding examples out on the net that have like 1,000 line of code to perform what I would imagine should be a very simple task.
|
| Help with taking out part of string | 30 Oct 2006 12:33 GMT | 2 |
Can someone help me with this: I have taken string frm an html source, and it looks like this: <a class="v11" href=Sweden-232433.html>Sweden</a> (30millions) Now I am trying to take out name of the state(in this case "Sweden").
|
| Fake Dialogs using ShowDialog(OwnerForm Form) | 30 Oct 2006 12:33 GMT | 5 |
We currently have an application that has a lot of screens that allow users to add new data to the system. These forms are currently accessed via a browse form, such as the employee's browse form. The user would access the Add Form by clicking on the Add Employee Button.
|
| cant save data to db | 30 Oct 2006 12:31 GMT | 1 |
I'm new to c#. I am trying to insert or update data to my tables, and in the debug mode everithig looks ok. when i exit and look in the database all the update or insert did not take effect. i'm using Visual c# 2005 express and SQl 2005
|
| Book advice for ADO.NET & Windows Forms with C# | 30 Oct 2006 11:22 GMT | 2 |
I need to create an application in C# that will be fairly simple from a UI prospective and that will be able to retrieve some information from a db. The overall look and feel should be nice but not too sophisticated. There are two areas that will need to shine though:
|
| How to use Vc++ dll in C# Application? | 30 Oct 2006 11:07 GMT | 1 |
i had one VC++ dll . and i need to use that functions in my c# code. it is logger dll. i want to use that logger functions from my c# and log the details. how to use that VC++ dll in my C# through interoperabilty service..
|
| GTK# Entry class | 30 Oct 2006 11:02 GMT | 2 |
When I use the Entry class in GTK#, my programme takes as much CPU time as it can get and the text field is extremely unresponsive. Is this a bug in GTK#?
|
| Can't add controls on inherited form | 30 Oct 2006 10:59 GMT | 4 |
I can't seem to add new controls to form that is inherited from another form. I have BaseForm wich have table layout on it 2 panelsm and some buttons. Now i create InheritedForm : BaseForm and want to add some new controls and
|
| Simple Color Pallete control? | 30 Oct 2006 10:45 GMT | 1 |
I need a simple color pallete control, similar to one that exists in appearance section in dialog properties. Here is a screenshot: http://tinyurl.com/y6m78k I tried using ColorDialog but there doesn't seem to be a way to have only a
|
| Getting the physical path of network drive. | 30 Oct 2006 09:53 GMT | 4 |
I am writing a program that part of than program if to add a new network drive to the user. The adding part i know how to do (by win api "WNetAddConnection2A") but i want to check first if this path (network path) exist of his
|
| How to view JIT-ed native code? | 30 Oct 2006 09:41 GMT | 1 |
We can view MSIL code with reflector or ILDASM, but how can we view native code generated by JIT compiler at runtime?
|
| Performance issue!! | 30 Oct 2006 09:38 GMT | 5 |
I have a performance issue question? which is best (in terms of efficiency and performance, I don't care neatness in code)... building an ArrayList of Object Instances using SqlDataReader OR using SqlDataAdapter to Fill a DataSet or DataTable ?
|