| Thread | Last Post | Replies |
|
| Refreshing Form on Process | 04 Apr 2005 03:04 GMT | 5 |
I have a windows application written in VB .NET which pulls a lot of data from different databases into one source. This often takes a long time and therefore I track the progress using a progress bar and a status bar. When the program is running and I use another application the ...
|
| Does MS will provide a RCP like Eclipse RCP or Macromedia Flex? | 04 Apr 2005 01:55 GMT | 4 |
The smart client offered by MS is more like a concept and the features is more separately. I think the client application vender need a clien side framework like Eclipse RCP.
|
| dropdownlist - index of an item | 04 Apr 2005 00:05 GMT | 2 |
I have in a dropdownlist the following values: "aa", "bb", "cc" I want the item "bb" will be the selected item. I can find it in a collection by: myItem = myControl.Items.FindByText("bb");
|
| How can I limit the number of the applicatin' login trying ? | 03 Apr 2005 19:11 GMT | 2 |
I give a login form for my application, and I give 3 times to the app's user, if he input his name and pwd out 3 times, the login form will closed .
|
| Creating a 1bpp mask from a byte array | 02 Apr 2005 20:36 GMT | 1 |
First of, I am posting to this newsgroup as it seemed best suited even though I am writing C++ for a standard Windows application. The application uses GDI+ which forms the basis of the System.Drawing namespace...anyway here goes: I am trying to create a 1 bit per pixel mask to ...
|
| Form question (Re-usuable code) | 02 Apr 2005 19:20 GMT | 4 |
Is there any way of making the following code into a function so that I don't have to re-use the same code for all my buttons? I've tried to do this with the code at the bottom of my post but I get a build error saying 'Type FormToShow is not defined'.
|
| best contol for capturing steaming and displaying streaming input? | 02 Apr 2005 18:11 GMT | 2 |
I have a Windows forms application that is reading messages off off a queue, and I want to stream them into a window to view. Currently I am using a textbox classes/methods of textbox.Append(...) and textbox.ScrollToCaret()... It seems that there is limit to the number of ...
|
| optimize .net app with a lot of graphic background images | 02 Apr 2005 17:54 GMT | 3 |
I have a winform that looks beautiful. All the panels have bacground images. I even have rollover buttons for the main navigation. My problem is that it loads slower than a "plain" winform app. Also when minimizing the form and switching back to my application it has "blank
|
| Skip LinkLabel in TAB order | 02 Apr 2005 03:29 GMT | 3 |
I have designed a custom control derived from UserControl which contains a LinkLabel and a TextBox. If the user uses the TAB key to move the focus to my custom control I want the TextBox to get the focus and not the LinkLabel. Therefore I set the TabStop property of the LinkLabel ...
|
| Data path changes after saving files with SaveFileDialog | 02 Apr 2005 02:54 GMT | 1 |
Using VB.NET I have the path to my Access file stored in an App.config file: <add key="constring" value="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Data/METL.mdb;Persist Security Info=False"/>
|
| How to achieve the following functionality with Windows Forms ? | 02 Apr 2005 01:57 GMT | 1 |
I have a useful framework, written in a different language (PowerBuilder), which I'd like to replicate in .Net and Forms, but I'm unsure of how to approach it, as the Event model is being used different between the development environments.
|
| Windows app access db internet | 01 Apr 2005 20:55 GMT | 2 |
I built a windows form client app that access a db on a network. Now I was wondering how can I set it up so that the app accesses the database through the web? I don't want to rebuild the client app into an asp.net app. Maybe I could or should use Web Services that sits on a ...
|
| How can I turn off the ControlBox but still have Close in the upper right of a form? | 01 Apr 2005 19:51 GMT | 4 |
I know I've done this in the past but can't remember how I did it. How can I turn off the ControlBox but still have the Close X in the upper right of a Form? It's some combo of FixedDialog and ControlBox = false
|
| Change mouse cursor when points to specific cell | 01 Apr 2005 17:48 GMT | 7 |
I am creating a linklabel look-a-link in a datagrid with the following code by overriding the paint sub: If column = 0 Or column = 3 Or column = 4 Then Dim UnderlineFont As New
|
| Several forms each running on its own thread ? | 01 Apr 2005 17:07 GMT | 3 |
My application needs to have three Forms, each of which runs on its own thread ie with its own independent message loop etc. I've implemented this by creating three Thread instances, where the ThreadStart delegate points to a method that does something like this : void ...
|