| Thread | Last Post | Replies |
|
| calling oracle stored proc from .net | 12 Jun 2007 01:34 GMT | 3 |
I am trying to call a oracle stored proc from .net code and I am getting an error PLS-00306: wrong number or types of arguments in call to KSSP_MEMBER_NEW. I counted all the number of parameters that I am passing and they seem to be
|
| more deployment advice please | 12 Jun 2007 01:29 GMT | 2 |
I am ready to deploy my app to some testers who have agreed to do some beta testing. I have some questions that I would like some advice on please. Some of the people who will use my application will be on 'partially locked
|
| Need references for .Net app replicating SQL2005 database to the laptops | 12 Jun 2007 01:12 GMT | 7 |
Can anyone point me to some good references for coding a Winforms app to trigger replication (merge preferably) on SQL2005? I'm setting up a scenario where I want my app to allow multiple laptops to synchronize to the distribution SQL2005 database and I'd like to do it either ...
|
| XML Comments unavailable to consuming application | 12 Jun 2007 00:38 GMT | 4 |
I have a project that is referencing a dll I compiled. The classes in the dll are all fully XML commented. However, when I use classes contained in the dll in my project, I receive none of the XML documentation in my intellisense. Has anyone else experienced this
|
| String array (String[]) being seen as System.Array | 11 Jun 2007 23:47 GMT | 4 |
hi, im having a small issue. I pass a String[] object to a method, but then when i try to use the Split method of a String array, it says System.Array does not contain Split. The parameter of my method is a String array, so it should be able to find the Split method. before i ...
|
| Getting the fraction off of a double | 11 Jun 2007 23:34 GMT | 1 |
Very stupid question, but is there a simple method that will get me the fraction off of a double?
|
| White space issue when parsing datetime Options | 11 Jun 2007 22:46 GMT | 3 |
i have two accepted formats. expectedFormats = New String() {"%M/%d/yyyy", "%M/%d/yyyy hh:mm:ss tt"} dt = DateTime.ParseExact(txtInpDateString.Text, expectedFormats,
|
| How to pass args command line parameter from Program.cs to Form1.cs ? | 11 Jun 2007 21:34 GMT | 3 |
For a GUI CSharp program I could define command line parameter as well by declaring them in Main(): static void Main(string[] args) But how do I pass them easily to Form1 ?
|
| using SMO to create a database, and choose location! | 11 Jun 2007 21:06 GMT | 1 |
hey, I'm using SMO to create a databas.e easy stuff ServerConnection srvcon = new ServerConnection("MYCOMPUTER"); Server serv = new Server(srvcon);
|
| how do I create new SQL 2005 instances?? | 11 Jun 2007 20:51 GMT | 6 |
hey, I wanted to programatically create a different instance on my local computer instead of (local)\SQLEXPRESS I want the user to be able to type in an instance, and it will be created. I
|
| How to implement cache in WinForms application | 11 Jun 2007 20:45 GMT | 8 |
I'm creating C# WinForms client-server database application. This application reads data from PostgreSQL server using npgsql Dataadapter and DataReader classes and stores data mostly in Datasets and sometimes in business object properties.
|
| Model Dialog box causes another application to get focus | 11 Jun 2007 19:17 GMT | 5 |
We have a model dialog box(well a bunch of them) and it seems that when you cancel one of the in our application it will activate and bring the focus to another open window (not in our application) anyone know why this is and how to correct it? it should set the focus to
|
| Newbie: API function call with array pointer as argument | 11 Jun 2007 18:56 GMT | 3 |
I'm from C/C++ world and now having troubles converting my old C++ code to C# The OpenGL function is declared as void glMultMatrixd( const GLdouble *m );
|
| How does .NET property databinding work? | 11 Jun 2007 18:50 GMT | 2 |
I ask, because I have a textbox bound to a bindingsource, which is bound to a datatable(row) The datatable is typed, and hence exports a Property called Column1 I added another property to the datatable by editing the partial
|
| Query on data from diffrent OleDBConnections | 11 Jun 2007 18:16 GMT | 1 |
Is it possible to run an inner join query if the tables reside in 2 diffrent mdb files, and so i have 2 connection strings ? mdbfile1 contains the first table mdbfile2 contains the secpnd able used in the join.
|