| Thread | Last Post | Replies |
|
| Assembly versioning problem | 22 Sep 2005 16:46 GMT | 1 |
I have been faced with an assembly versionning problem that I could not solve in two days and would appreciate any help. Here is what I have: C# Exe "Exe" that uses Win32 COM DLL "SD_MarketData" and C# Assembly
|
| How to manage a binary file as changeable drive | 22 Sep 2005 16:31 GMT | 1 |
I'd like to create and manage a virtual drive. The contents of this drive will be managed in a binary file. I don't know how to describe it better - if you know the Daemon Tools that create a virtual CD-ROM drive vom an ISO image file: That's exactly what I want to do, but not ...
|
| web search | 22 Sep 2005 16:06 GMT | 6 |
i was wondering, is it possible to make a web search in asp.net/c#? javascript is too complicated for my liking
 Signature Look Out!
|
| Selecting from Datasets | 22 Sep 2005 15:55 GMT | 6 |
I use a data adapter to read numerous tables in to a dataset. The dataset holds tables which in turn holds full details of the records i.e. keys, extra colums etc.. In some cases I need to use parts of the tables in datagrids, and here is
|
| newbie question | 22 Sep 2005 15:40 GMT | 9 |
I have seen files in some programs that I have been given that have the extension of 'resx'. Could someone please tell me what these files are, what they are used for, and how i can load or create them. Thanks
|
| LDAP | 22 Sep 2005 15:34 GMT | 3 |
I am trying to retrieve a list of all the groups from Active Directory, so e.g. (Team Leaders, Accounts, Development etc). ( I am going on the assumption that email groups are the same as active directory groups...is this right?.). If not, how do i get the kinds of groups i ...
|
| Bitmap: From 32bppARGB to 8bppIndexed | 22 Sep 2005 15:20 GMT | 2 |
I'm trying to use this code but something goes wrong. Any idea? BitmapData oldData = img.LockBits(new Rectangle(0,0,width,height), ImageLockMode.ReadWrite, PixelFormat.Format32bppArgb); BitmapData newData = newBMP.LockBits(new Rectangle(0,0,width,height),
|
| limit network traffic | 22 Sep 2005 15:06 GMT | 2 |
is there any way to programmatically limit the network traffic received on a network adapter in C# ? I need to simulate different speeds over an ADSL connection and run tests covering speed limits from 1Mbps to 8Mbps on a single machine. So
|
| Sleeping NotifyIcon Thread locks up explorer.exe | 22 Sep 2005 14:18 GMT | 2 |
Create a windows form and run the following code from a button: notifyIcon1.Visible = true; System.Threading.Thread.Sleep(15000); Click the button.
|
| Beginner Switch Statement Question | 22 Sep 2005 13:40 GMT | 2 |
In VB I can have a switch statement with a Case 1 to 5 in C# it seems I have to have Case 1:
|
| Bitmap.Clone() | 22 Sep 2005 13:39 GMT | 1 |
Help plz, what's happen exactly when I do Bitmap.Clone() ?
|
| Type Cast "Object" | 22 Sep 2005 13:21 GMT | 2 |
I am writing a click event for an array of PictureBoxes: for (int i = 0; i < 10; i++) pic[i].Click += new EventHandler (pic_Click); private void pic_Click (object sender, System.EventArgs e)
|
| Database Connection questions. | 22 Sep 2005 13:00 GMT | 11 |
I have a few questions that I have been wanting to ask for long. These are all related to ADO.net and specifically to conenction to database. 1) If I have opened a connection to a database through Connection.open() method, and I do not use Connection.close() method, will garbage ...
|
| decimal numbers c# and sql server | 22 Sep 2005 11:22 GMT | 6 |
I just want to update a column in a table having a value of a decimal number. Then I tried this via sql-query analyzer update tablepost set preis = 0.71 where idnumber = 50
|
| Browse for a network folder | 22 Sep 2005 09:45 GMT | 1 |
Im trying to write an application which goes through selected servers on the network and (according to the file path provided) recurses through all folders and deletes log files that fit a specified criteria. This is working when passing UNC names between the methods, but the ...
|