| Thread | Last Post | Replies |
|
| Data retrieval and Navigation using javascript | 28 Sep 2005 09:10 GMT | 3 |
I have a DataSet returning minimum 60 to 100 rows. I am querying the Database and populating the DataSet with the data, no matter how big or small the data is. What I want do is, I should be able to construct the pages like 1 2 3 4 5 6....) etc with links, all the data from the
|
| Api function | 28 Sep 2005 08:41 GMT | 5 |
In VB i have declaration for windows API function: Private declare function timeGetTime Lib "winmm" () as Long How can I do the same declaration in C#? Where I can see API functions in Visual studio 2005 beta 2 and their
|
| distributed computing choices | 28 Sep 2005 08:40 GMT | 3 |
When an application needs to get information from another machine over the network, how many distributed computing choices out there? Here are the choices in microsoft technology: .NET is based on COM+, or what underlying technology it is using for
|
| C# ASPnet SQL Connection string question | 28 Sep 2005 08:34 GMT | 2 |
Will it make it any difference if I replace the 'data source' in the "data source=MyServer;uid=SA;password=MyPwd;database=MyDB" with IP, e.g.,192.168.1.1? Where MyServer's IP is 192.168.1.1. We are thinking if the Primary SQL Server failed, then we just change the
|
| Registry - Current user | 28 Sep 2005 05:23 GMT | 3 |
In my application I have following part of code: using System; using Microsoft.Win32; using System.Diagnostics;
|
| Best performance of a parameterized factory method - 'is' operator or an enumeration ? | 28 Sep 2005 04:57 GMT | 2 |
I am wondering what is the most efficient way to make a parameterized factory method, and before I start spending time on performance measurements myself, I would like to hear the NG's opinion: I want my parameterized factory method to create either an object of
|
| Enterprise Library select @@identity | 28 Sep 2005 03:39 GMT | 1 |
I have a need to use "select @@identity" to get the autoid on the row that I just inserted. The insert store procedure executed correctly as if I took out the transaction, i can see the row being inserted. I just can't get back the id that's all. I use MS ACCESS btw (using a third
|
| Touch screen and C#.Net windows applications | 28 Sep 2005 01:17 GMT | 5 |
I'm going to embark on trying my hand at developing a C# windows application for a touch-screen. Is there any special considerations that I need to be aware of for developing a touch-screen application in regards to using the screen for
|
| Outlook with C# - Version Independent | 28 Sep 2005 00:45 GMT | 2 |
Somebody would know to give information about to create an email with outlook (to create a email and open it in outlook) with C#? I would not like to use PIA of the Office, because I don't know which the version of the Outlook the users will be using.
|
| Data Binding different in VS2005? | 28 Sep 2005 00:41 GMT | 1 |
I imported a projected I created in VS2003 to VS2005 beta 2. The project builds just fine, but throws an ArgumentException (cannot bind property...) when I add a control to a Controls list. When I comment out all my simple data bindings obj.DataBindings.Add(property,
|
| Using C# with a Hierarchy | 28 Sep 2005 00:40 GMT | 4 |
I'm very new to C# and Object Oriented languages in general. I'm preparing to write a bookmarking application that needs to store bookmarks and folders in a hierarchy. I'm thinking that I could create bookmark and folder objects, the folders object having a collection of
|
| Spawning threads in a loop, how to ? | 27 Sep 2005 23:04 GMT | 2 |
Hi ! I need to spawn several threads in a loop. The exact number is a user defined parameter. for(int i = 0; I < NUMBER_OF THREADS; i++)
|
| Combo Box allow multiple characters | 27 Sep 2005 23:00 GMT | 4 |
Currently, when the user presses a letter key the combo box will go to the first item in the collection of the combo box starting with that letter. For example user presses on "R", and "R2F" appears in the combo box, then the user presses on "H", "HIF" appears.
|
| Deploying SQL Express applications...?! | 27 Sep 2005 22:44 GMT | 3 |
I'm just starting to develop an application, which I thought would use SQL Express in the way I'd usually use Access. My app needs a way to store some data and be able to run SQL command against it (it's not necessary, but it'd be nice). With Access, I'd just throw in a ...
|
| Task Bar Icon | 27 Sep 2005 22:16 GMT | 4 |
I've created an icon for my application. It is in the Solutions Items folder. The project (app.ico) is the same file and the form's icon is linked to this icon. The icon shows up just fine on the desktop shortcut but when the program runs the task bar has the default MS icon, ...
|