| Thread | Last Post | Replies |
|
| How to use c# creat dns server zone ? | 23 Apr 2005 15:56 GMT | 1 |
I try it code only creat DNS ResourceRecord,How to creat dns zone? thanks! this code: public void CreateRR(string zoneName, string rrTextRep)
|
| Embedding a form into a panel control | 22 Apr 2005 22:34 GMT | 1 |
I am embedding a form into a panel control using pnl.Controls.Add(form); This works pretty well, however there is one problem. The panel can resize, so there are cases when the panel size is smaller than the form embeded in it. The framework handles this problem by showing only a
|
| Allow Combobox dropdown but NOT select an item | 22 Apr 2005 22:04 GMT | 6 |
I want the user to be able to drop down the list in a combobox and the user to scroll the list up and down but they can't pick an item in the list. I have started looking at overriding the DefWndProc but not sure what messages to capture.
|
| Windows Form in Shared Add-in not reading App.config settings | 22 Apr 2005 22:00 GMT | 1 |
Good Morning, I am developing an Outlook Shared Add-in using VB.Net. A Windows form has been added to the project, but is not reading the values in the app.config file during testing. The code (Sub Main) is below and displays "Blank
|
| Currently position my windows form | 22 Apr 2005 18:11 GMT | 3 |
How can i set Currently position of my window form. for example: x = this.Location.X; y = this.Location.Y;
|
| Simple question: Updating a datasource | 22 Apr 2005 17:11 GMT | 2 |
This might be a simple question, but I havent found a solution anywhere: I do some stuff, and fill a DataSet from a database. After the tables have been processed (rows inserted/deleted/updated) I want to write the DataSet back to the database.
|
| TABLE | 22 Apr 2005 16:19 GMT | 1 |
my code is: DataTable dt = myDataSet.Tables[0]; newDataSet.Tables.Add(dt); This code generate an error... "tha table dt already belongs to a dataset"...
|
| Transparent UserControl | 22 Apr 2005 15:58 GMT | 2 |
I'm going Mad! Has anyone been able to give a UserControl a transparent Background I've tried... this.SetStyle(ControlStyles.SupportsTransparentBackColor, true);
|
| sender in MouseEvents | 22 Apr 2005 15:39 GMT | 4 |
Small issue with sender argument in mouse events. I have a container control that users can add instances to of a another control at runtime. In response to the user adding a new control (Task) to the container (Pad), I create a new instance of Task, add two
|
| dyn buttons | 22 Apr 2005 15:09 GMT | 6 |
I'd like to add buttons dyn to a form, i can create new buttons, new .name & .text properties, but i can't figure out the eventhandler example I want to create a grid of buttons based on the itemno from a database, then clik on the button & have it add that itemno to a list box,
|
| InvalidCastException: (DataSet) DataGrid.DataSource | 22 Apr 2005 14:58 GMT | 3 |
I need some help please. Say you have a DataGrid and a DataSet, and you create a dataview to handle sorting and filtering and then you assign the dataview to DataGrid.DataSource. Once you did that you will get InvalidCastException if
|
| DataGrid: Update datasource when closing form | 22 Apr 2005 11:40 GMT | 1 |
The situation is the following: A user is editing a cell in a DataGrid, and hasn't pressed <return> or <enter>, so the value is being edited. The user then closes the form. I would like to update the value to the data source if it is valid, or prevent closing the form if the ...
|
| Could not deactivate CTRL+F4(close window) | 22 Apr 2005 11:24 GMT | 2 |
Despite setting controlbox property to false, CTRL+F4 shortcut is still working. Anyone can help me to disable CTRL+F4? Raj kumar
|
| firewalls & SQL Server connection | 21 Apr 2005 21:00 GMT | 2 |
I have a client that just bought new equipment. SP2 is installed as well as Norton Firewall. What are the steps I need to do to open up SQL server so they can access the server now?
|
| Interactive tooltips | 21 Apr 2005 20:36 GMT | 1 |
I want to extend the tooltip control to handle interactions with the user via clickable links within the text. It should work a bit like this example
http://www.dyn-web.com/dhtml/tooltips/hover-tip.html
|