| Thread | Last Post | Replies |
|
| How to receive message sent from another window? | 18 Dec 2006 05:34 GMT | 2 |
Hello, guys. In my application, I need to receive a windows message from another window, and the other window is a MFC application using SendMessage to send a custom windows message. So, in my c# application how can I
|
| Which file type to use to save data... | 18 Dec 2006 02:05 GMT | 6 |
I am new to C# so please bear me :). I have an app which uses datagridview. it has 8 columns. I also have struct which has 8 members(the same as the datagridview). when I add row to the gridview, i add the same data to this staruct and
|
| Package and deploy in .NET | 18 Dec 2006 01:57 GMT | 7 |
I have an application written in C# .NET 2005 using .NET framework v2.0, the execute file is only 500KB and it used two third party DLLs, all added up to round about 1MB. My question is when i distribute my application to friends do i have to
|
| SaveFileDialog won't show existing file | 18 Dec 2006 01:18 GMT | 3 |
I am trying to download a file from website, and to get the local file name form the user, I am using SaveFileDialog. I apply the filter (I parse the url to get the file name and assign) to the saveFileDialog object.
|
| Transparent form that intercepts mouse events | 18 Dec 2006 00:56 GMT | 2 |
I am trying (with little (no) success) to create a transparent form that can capture mouse events. Put another way, i would like to show the other windows that are behind my form (like setting the form transparency key to the form backcolor), but i dont want the mouse
|
| String "+" operator conversion | 18 Dec 2006 00:39 GMT | 10 |
I am surprised to discover that c# automatically converts an integer to a string when concatenating with the "+" operator. I thought c# was supposed to be very strict about types. Doesn't it seem like c# is breaking its own rules?
|
| deploying an application and attaching files | 17 Dec 2006 20:12 GMT | 2 |
I have done my build and testing and I am ready to deploy my version1 of my application. I have added a new setup (msi) project and am using the file system editor - but what settings do i need to add a ms access database file to my project
|
| Seeking sample code to scan folders, files | 17 Dec 2006 19:16 GMT | 2 |
I'm wanting to scan all folders and files under a specified path (e.g. C:\Files). I know using System.IO I can use Directory.GetFiles to get a list of files under a folder, but how do I get the name of the folder? Is there any sample code out there that can kickstart me?
|
| Problems with Properties.Settings.Default and and user.config | 17 Dec 2006 17:00 GMT | 1 |
Is it possible to decide where user.config is stored by Properties.Settings.Default.Save? The default location seems to be "C:\Documents and Settings\[User]\Local settings\Application Data\[AppName]\[Executable
|
| Converting from byte to string and back to byte ends in different results? | 17 Dec 2006 14:53 GMT | 1 |
I have a really strange conversion-problem here: -- string _content = new string("some data"); ..
|
| Sorting in LinkedList<> | 17 Dec 2006 14:30 GMT | 20 |
Mostly I program in C++, and I'm not fluent in C# and .NET. In my last project I began to use LinkedList<> and suddenly noticed that can't find a way to sort it. Does it mean I must implement sorting for LinkedList<> myself?
|
| Remoting Tutorial? | 17 Dec 2006 09:24 GMT | 4 |
Can anyone suggest a good (current) tutorial on how to do basic remoting with C# (2005 express edition)?
|
| reverse order in string writer | 17 Dec 2006 07:48 GMT | 1 |
I have a datagrid view that I have enabled a use to copy data from. However the copy seems to work in reverse. This results in the last value selected being the first copied to the clipboard, but I require the data copied to be in the order in the
|
| Tidy.Net | 17 Dec 2006 01:29 GMT | 1 |
Does anybody here have any example code for Tidy.Net (http://sourceforge.net/projects/tidynet/) ? I can't find one single example. I try to convert a html-string to well formed xhtml, but the only output I get is /r/n
|
| Interlocked.Increment bug? | 16 Dec 2006 22:24 GMT | 15 |
Is there any known bug related to Interlocked.Increment(ref var)? My client report var's value going up and down in the client/server multile-thread application. There are about 80 clients connect to one server
|