| Thread | Last Post | Replies |
|
| Registry and TreeView | 24 Dec 2005 01:50 GMT | 8 |
I'm creating a little program that acts as a glorified Registry explorer. The TreeView doesn't allow you to show a plus sign unless a node has child nodes, so I need to determine whether a registry key has subkeys and add a dummy childnode. The way I'm doing this is to populate ...
|
| Ftp Efficiency | 24 Dec 2005 01:39 GMT | 1 |
Using vs2005 and the new built-in Ftp functionality. I need to transfer a gigantic amount of data (15 GB) using my app. The current way is that I ZIP (or RAR) the data and transfer it to the server via FTP. Is there a more efficient way to transfer data? Does FTP go as fast ...
|
| Load Resources from Win32 Executables | 24 Dec 2005 01:37 GMT | 1 |
I am attempting to read all of the resources from a Win32 executable, and load each of them to display them on a screen. So, please help figure out why I can't seem to get it right :) First off, I have my API declarations (will post that at bottom). I make a
|
| verfiy a query like Query Analyzer's parse query function | 24 Dec 2005 01:33 GMT | 1 |
I thought that the parse query feature in Query Analyzer simply wrapped your statement in a TRAN and then issued a ROLLBACK statement to prevent making real changes... but i just had a query parse successfully (ctrl-F5) and then fail on execution(F5), due to a lack of permissions ...
|
| Fonts | 24 Dec 2005 00:53 GMT | 1 |
Is there a way to find out what fonts are installed on a user's machine? I've created a ComboBox which allows the user to select font style and size. If a user didnt have a font installed, I could catch it, but it would look a bit unprofessional?
|
| FontDialog question | 24 Dec 2005 00:28 GMT | 1 |
I've been trying to update the font style in a RichTextBox using FontDialog. But when I use this method (Rather than change each attribute individually) all the text in the RTB changes to the new font. Is there any way to just make the selected text change or the text from that ...
|
| non C# question | 23 Dec 2005 22:31 GMT | 2 |
i know it's not a C# question but i am developing a C# database application and would like to know what is the maximum characters' digits for the following: 1. Email Address
|
| create my own intelisense | 23 Dec 2005 21:12 GMT | 3 |
i'm try to build my own intelisense to some part of our system. Does anyone know where should i start from? or maybe can you refer me to a good reference or a open source code which can help me to start writing such control.
|
| Yet another threading/invoking question... | 23 Dec 2005 21:07 GMT | 25 |
I'm currently rewriting some functionality which was using multithredaing for retrieving datasets from database and updating a grid control. I found that the grids (Infragistics UltraGrid, though it doesn't matter) were updated (i.e. grid.DataSource = dsDataSet;) and
|
| Memory Leak in managed Code | 23 Dec 2005 19:57 GMT | 23 |
The following code will create memory leaks!!! using System; using System.Diagnostics; using System.Data;
|
| Asp control | 23 Dec 2005 16:21 GMT | 3 |
Is there an equivalent html control or asp control in .NET that does the following - <ul> <li>list item1</li>
|
| Databinding is late! | 23 Dec 2005 15:57 GMT | 2 |
The controls in my form are bounded to a datasource, including textboxes, comboboxes, etc... Something lame happens: In runtime, the last focused control before clicking on my save button, doesn't have its datasource bounded value refreshed with
|
| A global ImageList ? | 23 Dec 2005 15:52 GMT | 4 |
I have an ImageList and I want to use it at design time in several forms, how can I do it ? Ok, I can copy the ImageList from one form and paste it on the new form, but these ImageLists are then duplicate.
|
| Generics Question. | 23 Dec 2005 15:46 GMT | 8 |
This is just a thought, may be its not possible , but is it possible to use generics in method declarations as return type arguments.. for example public <T> Load(T value)
|
| How to close a thread? | 23 Dec 2005 15:27 GMT | 7 |
I have a procedure that creates a file, then generates a log report via Crystal. If the user closes the form after the file is created and before the log appears, the form closes, but (it appears that) a thread creating the Crystal report continues to run. How do I get hold of ...
|