| Thread | Last Post | Replies |
|
| .NET resource file question... | 14 Feb 2007 15:17 GMT | 3 |
I have a solution that contains about 10 projects, and each project contains several Windows forms (VS 2003, CLR 1.1) I would like to add a single resource file that contains all of the bmp image files that will be used across all of the forms. That way, if I
|
| Is any .net updated required for the new daylight savigns time, or just update the OS is all that is needed? Do DateTime objects need to be updated in .net runtime? | 14 Feb 2007 15:14 GMT | 2 |
Is any .net updated required for the new daylight savigns time, or just update the OS is all that is needed? Do DateTime objects need to be updated in .net runtime?
|
| c# app to check web status... | 14 Feb 2007 15:03 GMT | 10 |
Recently the host for our website has been going down for unknown reasons like three or four times a week, which obviously means that we are loosing business during the down time. Any one know ideas how I can check our site status with a c#
|
| IQueryInfo driving me insane | 14 Feb 2007 14:55 GMT | 1 |
I am trying to make a little tool tip box pop up when you hover the mouse over one of our custom filetypes in Windows explorer. And it is slowly driving me insane. I have a created a dll, with this as the code:
|
| Fastest way to load data | 14 Feb 2007 14:52 GMT | 3 |
I have to call a stored procedure which returns about 1000 rows with about 5 fields (most of them are int). What is the fastest way to load this data? if I just do DataTable.Load, then is it fast? or should I do something
|
| High(er) speed thumbnail generation | 14 Feb 2007 14:51 GMT | 4 |
Im looking for a way to generate thumbnails from an image as fast as possible. Currently I'm using GDI+ however going from 1024x768 to 100x100 takes too long. I'd imagine the whole process can be optimized by using hardware acceleration (ie DirectX), however I am
|
| Set message subject here ... | 14 Feb 2007 14:49 GMT | 4 |
Say for example i have a hypothetical function taking 4 parameters such as the one below: public void InsertRow(char gender, double decimalAge, double height, double weight) { //Adds data into a MySQL database
|
| Conceptual question--How do collections store objects in .NET ? | 14 Feb 2007 14:47 GMT | 6 |
I'm missing a basic understanding of how .net stores objects in a collection. For example, I have an object called "dog", and I would like to create and populate a List<> of these. For example:.
|
| counting lines in a textbox | 14 Feb 2007 14:44 GMT | 6 |
sorry for a dumb question. I have a textbox where multiline=true and I want to set the scrolbar from none to vertical when the textbox have more then f.ex. 5 lines, or reverse.
|
| Edit-and-Continue Not Working | 14 Feb 2007 14:32 GMT | 3 |
i am getting this message in VS2005 using c# when i try to "Edit And Continue" (edit the code while debugging): "changes are not allowed when the debugger has been attached to an already running process or the code being debugged is optimized"
|
| Locking threads | 14 Feb 2007 14:22 GMT | 3 |
I have a server listening and when it receives an object deserilalises it. Reads it, does whatever it needs, reserialises it and then broadcasts it to clients (depending on what object was sent, found when it deseriliased it). The problem is this:
|
| Porting from C++, p/Invoke with structs, SendMessage() and WM_COPYDATA | 14 Feb 2007 14:17 GMT | 1 |
I'm trying to port a c++ class to c# and in the c++ class I have a struct defined as: struct SNARLSTRUCT { SNARL_COMMANDS cmd;
|
| Can't parse special characters (german ü) into database | 14 Feb 2007 14:15 GMT | 2 |
I have some data in ASCII format and I used MS Text driver to parse its content to database. However some special characters like german ü is skipped when persist to the database. I would really appreciate if any one can help me with this problem.
|
| Word as WebDAV client | 14 Feb 2007 14:09 GMT | 1 |
I work at a webdav server. And i try to use Word as a webdav client. But I have strange problem. For some files Word sends LOCK command and works with them well. But for others it doesn't do it. My server responses on OPTION command. But it doesn't help.
|
| How to add a C++ unmanaged dll to my C£ prokect | 14 Feb 2007 13:45 GMT | 3 |
I have run my C# program importing MessageBox functions and other win32 functions and it's all ok. Now I want to create from VS2005 a dll in C++ that can be imported from C#.
|