| Thread | Last Post | Replies |
|
| Work Offline Solution Needed | 01 Sep 2004 00:49 GMT | 1 |
Hi am about to create a N-Teir Solution Using SQL Server 200 as the Data Teir, XML Web Services as the Business Layer and Winforms as the presentation layer. I will be using Datasets that will peridically update the data back to
|
| Dispose a managed object | 31 Aug 2004 16:33 GMT | 6 |
can someone clarify something for me please? I have a windows form class that contains a Font private member which is initialised (new'ed) in the forms constructor. The font is used in formatting a richtextbox control. Do I have to dispose of the font member in the forms Dispose ...
|
| MDI application design | 31 Aug 2004 15:58 GMT | 6 |
I have created Application that has MDI interface. Indeed application works as it should, but I have question related to its design. Assume my application can change Zoom state of the opened document from the toolbar (toolbar for all opened document is the same). Which
|
| Add Root Nodes to tree view | 31 Aug 2004 14:50 GMT | 3 |
Ive got an app with a treeview and to add a new node I have a context menu. My code will add a new node as a child of the currently selected node. If no node is currently selected (or the tree is empty) then a root node is created to the treeview otherwise it is created as a child ...
|
| Does global declarated "iexplore.exe" exist? | 31 Aug 2004 06:37 GMT | 2 |
I've got a little not typical problem right here. I would like to open using InternetExplorer ("iexplore.exe") my link from my application. I do it like that: System::Diagnostics::Process::Start(S"iexplorer.exe", S"www.wp.pl");
|
| Can you intercept click event? | 31 Aug 2004 02:37 GMT | 1 |
I am trying to control tooltips in my winform. I want to only turn them on when the user chooses a menu item called WhatThe. When they do I change the form's cursor to Cursors.Help and activate the tooltip. The problem is I don't want the user to actually be able to interact with ...
|
| 'System.Windows.Forms.Form' cannot be designed. | 30 Aug 2004 14:13 GMT | 3 |
I have several C# applications that all of a sudden I get the following error when trying to view the form in visual studio The base class 'System.Windows.Forms.Form' cannot be designed. I'm using VS.net 2002 on WinXP Professional.
|
| MessageBox Result - pressed buton. | 30 Aug 2004 11:29 GMT | 2 |
I have MessageBox likt that: MessageBox::Show(S"string1",S"string2", MesageBoxButton::YesNo, MessageBoxIcon::Error); How can I get result of pressed button from that MessageBox - I trying to do
|
| SelectedListViewItemCollection problems | 30 Aug 2004 11:28 GMT | 2 |
I understand that to get the items that are selected in a listview, you read the SelectedItems porperty of the list view. The type of this property is SelectedListViewItemCollection, and this type is meant to be defined in System.Windows.Forms.dll. But whenever I try use
|
| newbie and DrawImage | 30 Aug 2004 10:42 GMT | 3 |
My application has a form which should display an image at an arbitrary zoom factor, and optionally draw other images (like layers in Photoshop) onto the 'base' image. The easiest way I can think of could be e.g.: ----OnPaint handler:
|
| cannot move usercontrols in design time using mouse | 30 Aug 2004 04:31 GMT | 2 |
i have created some usercontrols which contains a list fo controls, when i pick from toolbox and place in a form and then i cannot move the control anywhere else using mouse and by i can by CONTROL + DOWN OR UP keys any where i m missing ?
|
| Listbox - Picture to the left of the text how? | 29 Aug 2004 08:29 GMT | 3 |
I am creating a windows forms application using vb.net 2003, and was wondering, how can I display an image in each line of the listbox to the immediate left of the text? It should look like the URL address looks in internet explorer with the web page icon next to it... It will ...
|
| oleDbDataAdapter/DataSet - data to ListView. | 29 Aug 2004 08:08 GMT | 1 |
1. Have u got any solution to add data from DataSet or oleDbDataAdapter to ListView control, with no adding row after row but complex (big part of data) like with DataGrid control? 2. How can I add row after row from DataSet?
|
| MdiChild to Normal Window and Back! | 28 Aug 2004 22:45 GMT | 1 |
I have read you can change a form to MdiChild or from MdiChild back to a normal form during run-time. I need to toggle a form between the two. If Me.IsMdiChild Then
|
| hiding "highlighting cursor" in textbox | 28 Aug 2004 20:11 GMT | 2 |
i am writing a control using textbox, up on keypress i make the program to point to a list of values to select from a textbox, but textbox contains a highlighting cursor which i want to hide, but i want to receive all the keystrokes pressing and my textbox.text value should have ...
|