| Thread | Last Post | Replies |
|
| UDP message formate problem | 23 Oct 2006 10:45 GMT | 4 |
Im using a UDPClient Send to send message to the server heres my code: MsgProperties _msgPro = new MsgProperties(); byte[] bs = System.Text.Encoding.UTF8.GetBytes( _msgPro._seqNo + _msgPro._msgLen + Message);
|
| double buffering in child controls | 23 Oct 2006 10:41 GMT | 3 |
i have an app in which i can drop objects onto a form and move them, it consists of graphics (lines), i am using double buffering to avoid filckering in the parent control which is a panel,but when i add controls to this panel dyanamically, the double buffering effect is not
|
| Distinguish between folder drop and file drop | 23 Oct 2006 09:27 GMT | 3 |
I need to trigger some code when user drags and drops an entire folder onto my form. How can I distinguish between a folder drop and files dropped ? Can someone point me to code or a sample, please ?
|
| Createing new files | 23 Oct 2006 08:15 GMT | 1 |
I am looking for a way to create new files of different types (eg. .xls, .pps, ...) the proper way. Tried to create a new, empty file with the correct extension and use Process.Start() on this file. This works for some filetypes / applications but not for all because not all apps
|
| Bitmap or Image | 23 Oct 2006 07:15 GMT | 4 |
Whats is there any reason to use a Bitmap(Image) over an Image(Bitmap)? I'm making a container to hold bitmaps sorta like the ImageList class(that doesn't fix the sizes) but I'm not sure if I should use Images or Bitmaps? I don't know of the real distinction between them excep ...
|
| Remove network connection | 23 Oct 2006 05:05 GMT | 5 |
I want to remove a remote access connection when a user logs out. The connection is a dial up isdn adapter. I can access the adapter via WMI namespace \root\microsoft\homenet, but i don´t find any way to delete it.
|
| RichTextBox and font change | 23 Oct 2006 04:38 GMT | 1 |
I'm trying to create a small text editor (to be included in another project), and I've created two methods to toggle bold/italic/underlined text styles, in order to have the same behaviour as WordPad has, ie : if I select a text which has bold and non-bold parts, and click
|
| How prevent cachine in ASPX page (I think)? | 23 Oct 2006 03:11 GMT | 1 |
I have an ASPX page wherein I receive an ID of a file to play. http://localhost/fwi/mediaplayer.aspx?id=3 When I go to a browser and type in the above, it works fine. But when I change the 3 to a 4, it still plays the old song.
|
| Regular Expression for single quote | 23 Oct 2006 02:47 GMT | 2 |
Could anyone possibly help with a regular expression to replace only lone occurrences of a single quote with a double quote? I don't want to touch instances of multiple quote characters side-by-side, only quotes that are by themselves, i.e. surrounded by
|
| problem with memorystream and streamwriter | 22 Oct 2006 21:48 GMT | 4 |
Could someone explain me why the following code doesn't work? The memorystream always remains with length 0. MemoryStream input = new MemoryStream(); StreamWriter swriter = new StreamWriter(input);
|
| Treeview questions | 22 Oct 2006 18:23 GMT | 1 |
I am trying to build a tree like the following Root
|--- Current |-------- Date1
|
| operator ++ overload - How To | 22 Oct 2006 17:47 GMT | 6 |
For my own educational process I am implementing a Fraction class described in the VSJ magazine to help me understand Visual C# operator overloading. I'm a relative newbie. At the moment my basic code is:
|
| VS.NET | 22 Oct 2006 17:39 GMT | 1 |
I'm trying to setup the solution for a medium sized project that uses many different components(dll's). What I want is for each "part" to compile to a seperate dll. The way I am doing this now is creating a different project for each "part" but I was
|
| DotNet and Firebird Embedded: Prolem with distinct clause | 22 Oct 2006 17:27 GMT | 4 |
Hi. I made a method to execute queries in my database (Firebird embedded v.1.5.3). The Database class contains methods to create the database specific objects.
|
| Resizable lines | 22 Oct 2006 16:35 GMT | 2 |
I am developing an app for making data flow diagrams visually so i have a toolbox, from which i drag and drop objects onto a panel For obvious reasons i have lines which i use to connect objects which are user controls,
|