| Thread | Last Post | Replies |
|
| Metaprogramming | 06 Oct 2007 08:06 GMT | 12 |
If you do metaprogramming in C#, is the generated code garbage collected or does it leak indefinitely?
 Signature Dr Jon D Harrop, Flying Frog Consultancy
|
| Contextmenu paste properties | 06 Oct 2007 06:25 GMT | 2 |
Hi can anyone tell me why I cannot copy and paste a context menu item with similar properties as the copied item? EG the source item is myprog.mycontextmenu with its own colors, fonts and so on, but the pasted item is system.windows.forms.menuitem with default properties
|
| Retrieve tag A from html | 06 Oct 2007 06:20 GMT | 5 |
I need a regular expression to extract all tag A from HTML code. I need the href and text as two disting objects. Suggestions? Thx! ;-)
|
| Double-click a folder browser dialog? | 06 Oct 2007 05:41 GMT | 5 |
I'm trying to implement some fairly standard behavior (or so I thought) on a FolderBrowserDialog component. double-clicking a folder in the dialog should have the same effect as selecting the folder and clicking the dialog's OK button. But the FolderBrowserDialog component ...
|
| Interview test...... | 06 Oct 2007 04:58 GMT | 24 |
I want to set some simple coding tests for an interview....Joel recommends (for C programmers).... 1. Reverse a string in place 2. Reverse a linked list
|
| PictureBox Scrolling | 06 Oct 2007 04:34 GMT | 1 |
Here's what I'd like to have in a form that I'm creating: A picture box that contains an image that is significantly larger than the box. I'd like for there to be scroll bars, but also to enable the user to click and drag the image directly, with the scroll bars updating to
|
| Generic delegate implementation question | 06 Oct 2007 00:31 GMT | 7 |
I've got these declarations: public delegate void FormDisplayResultsDelegate<Type>(Type displayResultsValue); public FormDisplayResultsDelegate<string> displayMsgDelegate;
|
| Does ORM tools work with datagrids or data bindings? | 05 Oct 2007 21:13 GMT | 4 |
As I know ORM tools encapsulate table rows in objects. In other words we do not see rows or columns, instead we see objects with properties. But there are some GUI components that work with dataTables and dataRows. As an example a datagrid. A datagrid needs a dataSet or
|
| System OutofMemory Exception!! | 05 Oct 2007 21:10 GMT | 3 |
Unbelievable! I have a webservice which tries to write a file to temp directory ,yes the svc have write access, and I get
The following error occurred while processing file: foo.dat Exception of
|
| Datagrid.columns | 05 Oct 2007 21:06 GMT | 2 |
Hi, I am seeking out information on working with 'columns' in code. for instance I have a column on a datatable that is of type boolean. In code I wish to test to see if that column is true or false. I think typing the code:
|
| Stop SQL execution by disconnecting Database Connection ??? | 05 Oct 2007 20:57 GMT | 3 |
Hi All, I have a ASP/C# application that connect to Oracle database . After issuing my SQL query if I close the browser or move into another page ( ie whle executing in the databse serevr) will the SQL execution in server
|
| C# and javascript? Or C# and Javascript + IE?! I really dont know... | 05 Oct 2007 20:31 GMT | 1 |
While my question might be simple, the environment around it is terribly messy and so I will try to keep this clear and simple by only including the relevant code - however, as I will soon suggest, I worry that the problem isnt in what would seem to be the relevant code but
|
| Database Sync Question | 05 Oct 2007 19:33 GMT | 4 |
I'd like to pull down a decent sized table into memory from a DB. I want to store the table in a DataTable. This could take some time so I'd like to do the full table only once. And then when I wish to refresh my memory copy perform some type of
|
| ftp recursively class | 05 Oct 2007 18:25 GMT | 1 |
For my program I need to download with ftp protocol a folder with all subfolders and files. Do you know any ftp class to do this job? Thanks
|
| Dragging data to Excel using DoDragDrop | 05 Oct 2007 17:56 GMT | 14 |
I am currently using Control.DoDragDrop to drop a text string into Excel. I use the following code DataObject dd = new DataObject(); dd.SetData(DataFormats.Text,"\\\\ws-it-bstough\\ShareFolder\\Test.wav");
|