| Thread | Last Post | Replies |
|
| Byte Swap Class | 28 Oct 2006 13:50 GMT | 2 |
Is the following the best way to do byte swapping in C#? Or is there something like this already built into the framework and I'm just overlooking it? class ByteSwap {
|
| using Hotkeys in Asp.net 2.0 Web apps | 28 Oct 2006 12:54 GMT | 1 |
I want to develop an application in asp.net 2.0 in which i can access different functionalities with keyboard. e.g on pressing "S" on page it will save . "N" for new record etc.
|
| Config files | 28 Oct 2006 12:53 GMT | 2 |
If xyz.exe is the executable name... What's the purpose of "xyz.config" file? For what is the "xyz.vshost.exe"? Do they have to be created? Have to distribute them when distributing an
|
| Breaking the 2GB barrier | 28 Oct 2006 11:01 GMT | 13 |
I will soon be deploying an application on Windows 2003 R2 64-bit Standard Edition. The app will also be compiled for 64-bit. One of the reasons is that the application will really benefit from having more than 2GB available to it.
|
| MS Project interop | 28 Oct 2006 09:04 GMT | 1 |
Hello, I was wondering if anyone know of some good sources of tutorials/source code for programmatically working with Microsoft Project. I've done some interop with Excel in the past but not with any other MS Office program. Any leads will be greatly appreciated, thanks.
|
| programming windows media player in c# | 28 Oct 2006 04:27 GMT | 1 |
I am using the visual express edition 20005 for C#. I am trying to write a program which will randomly play songs weighted by a 0 to 100 rating scale. I can player a single song using the windows media player, but I cnnot play music continuously. I need to either add an event ...
|
| How in c# lets the window in other procedures above? Is most frontdemonstrated? | 28 Oct 2006 02:05 GMT | 2 |
I come from China, English not to be good, sorry. How in c# lets the window in other procedures above? Is most frontdemonstrated? May achieve in VB, how does in c#?
|
| I don't know why this fixes this... any ideas? (System.Drawing.Image.FromStream "parameter is not valid") | 27 Oct 2006 22:47 GMT | 7 |
I was running into the System.Drawing.Image.FromStream "parameter is not valid" on some of the images I was retrieving from a blob column in Sql Server. I thought there were corrupt images as almost all worked (all are gifs), and only a few broke when this line ran: Image img =
|
| String Declaration | 27 Oct 2006 22:18 GMT | 2 |
I have an SQL statement which is quite long. I want to declare a string variable with this SQL statement and I want to have span multiple lines. I could scrunch it all up and place it on a single line, but then the SQL statement would be unreadable. There was a way to do this ...
|
| How to customize Textboxes User Interface Dialog Box | 27 Oct 2006 21:30 GMT | 1 |
I use the setup project of Microsoft Visual Studio. I would like to customize one of the textbox in the user interface dialog box of my program setup. I would like to know if there is a way to add a property to one of the
|
| random numbers | 27 Oct 2006 21:29 GMT | 7 |
Can anyone tell me , how I would generate random numbers, for an interval say from 15 to 450 in C. Plz lemme know. thanx..
|
| Converting byte[] to fixed byte[] | 27 Oct 2006 20:59 GMT | 2 |
Given the following bit of code, the PtrToStructure is not correctly copying the data into the PDU class. After it executes, the pdu.buffer[] array looks nothing like the data[] array that I tried to copy from. Help?
|
| Add ComboBoxes in runtime based on user input, how? | 27 Oct 2006 20:24 GMT | 5 |
I'm creating an application where the user first selects a number from a combobox. Based on his choice of number, ComboBoxes and buttons are to be created (at runtime of course). Let's say that the ComboBox is to be named cboTeam and the index number
|
| Why can't I get my ContextMenu to popup ? | 27 Oct 2006 19:50 GMT | 1 |
I overrided a TreeView control and then overrided it's MouseClick event like so: protected override void OnMouseClick(MouseEventArgs e) {
|
| Efficiency about hashtable, arraylist, string and synchronization | 27 Oct 2006 19:43 GMT | 10 |
Here is the scenario. I have a list of IDs and there are multiple threads trying to add/remove/read from this list. I can do in C# 1. create Hashtable hList = Hashtable.Synchronized(new Hashtable()); 2. create ArrayList aList = ArrayList.Synchronized(new ArrayList());
|