| Thread | Last Post | Replies |
|
| "global" enums vs. enums in class? | 21 Oct 2004 19:41 GMT | 1 |
Originally, I have defined the following Enum within a namespace (outside a class): Public Enum UserRole Admin
|
| Deployment problem with framework 1.1 SP1 | 21 Oct 2004 19:39 GMT | 2 |
I am reposting in this group after getting no response for a week in the deployment group. I have a setup project that uses custom actions. The project installs and runs fine on machines that have the .NET framework 1.1, but fails on machines
|
| Hide and then show changes to a form? | 21 Oct 2004 18:50 GMT | 4 |
In past languages (I'm thinking of FoxPro here and possibly VB 2.0 or so), you could "freeze" the visual display of a form while you update it in code, then "reveal" the updated form. This kept the display from flashing or bogging down while it drew every individual thing one
|
| how can form in class lib write/talk to EXE form? | 21 Oct 2004 18:33 GMT | 1 |
I need 2 projects/apps to communicate with each other. I figured out how to create a Class Library project with a form and how to add a new exe project to the solution. I set the dependencies where the exe proj is dependent on
|
| vb.net combo boxes choices no longer visible | 21 Oct 2004 18:27 GMT | 9 |
I have several combo boxes on form1 of my application. I do not know why, but the choices on my dropdownlist combo boxes no longer display when the form opens. They are there, because you can click and the choice loads into the box. After doing this once, the choices are ...
|
| Readonly at runtime | 21 Oct 2004 17:59 GMT | 4 |
How do I make a property of a class Readonly but only at RUNTIME? I want to be able to edit the value in a property browser after dragging my component on a form but then not allow any code to change this property when the code is running.
|
| Images on a toolbar dissappear when enabling visualstyles | 21 Oct 2004 17:41 GMT | 1 |
Has anyone else had this problem? I enable visual styles Application.EnableVisualStyles() When I do this, all of the images on my toolbar stop showing up.
|
| Newbie: Datagrid VS Listview | 21 Oct 2004 17:38 GMT | 3 |
One of the decisive factors trying to decide between using a Datagrid OR a Listview is the ease of extracting the data, after either of the controls is filled. Both to store in a Text/Excel file AND to store some columns in arrays for
|
| Add Icons to subitems in a listview | 21 Oct 2004 17:33 GMT | 2 |
Is it possible to add icons to subitems in listviews? I can do it no problems for the first item in the listview using: listviewitem = New ListViewItem("John Smith", 1) ' Column 1 Text, Imageindex but can't seem to find a way of doing it for sub items
|
| Help with SQL string construction | 21 Oct 2004 17:05 GMT | 3 |
I apologize if I am a bit out of topic. I am trying to create an interface that will consist of a few dropdown lists that once selected will create an SQL string for the query. Now, its easy to dynamically construct the string from its subparts, what i
|
| DataSet killed the Custom Object Model??? | 21 Oct 2004 16:34 GMT | 8 |
Hello: I am building a new application and I am investigating data tier options and find myself torn between two approaches: 1) Building a "custom object model" (Collections and Collection items: example: CustomerCollection containing Customer objects) that uses data
|
| Sorting Files and Folders in a listview | 21 Oct 2004 16:09 GMT | 3 |
I have an application similar to windows explorer. The problem now is that am not able to sort the folders and files windows explorer style i.e. Ex All folders are sorted in alpha order and then the files.
|
| invoking an event using a delegate | 21 Oct 2004 16:07 GMT | 1 |
I would like to invoke an event using a delegate or any other way. I have declared a delegate as below with the same signature as the event I wish to invoke. Delegate Sub DelGroupClicked(ByVal sender As Object, ByVal e As
|
| DoubleClick in DataGrid | 21 Oct 2004 16:02 GMT | 4 |
DoubleClick in DataGrid Hi I have a Datagrid bound to a dataset that I want to write a DoubleClick procedure on. My problem is that the DoubleClick event is raised only when DoubleClicking the column or row header. How is it possible to get a
|
| Profiling VB.net code | 21 Oct 2004 15:32 GMT | 1 |
I'm looking to find out more about profiling my code. Are the any free profiling solutions out there, or free microsoft tools that will help me profile my code? ANy recommendations.
|