VS 2008 - How To Make Property Value Sets

Aug 15, 2010

How do I make a property to have a set of selectable values, in a way such that they work by intellisense-drop-down, as i.e. the color.white, color.black etc.? I want to do this like for integer values I may want to have selectable by "keywords" with the hard values only existing in a unique class file, or whatever is necessary ..?

View 2 Replies


ADVERTISEMENT

Make A Statement That Sets The Focus To The TxtPassword Control?

Sep 29, 2010

how do you make a statement that sets the focus to the txtPassword control?

View 1 Replies

.net - Setting ReadOnly Property In PropertyGrid Sets All Properties Readonly?

Jun 12, 2012

I am using a PropertyGrid control to edit my class properties and I am trying to set certain properties read-only depending on other property settings.This is the code of my class:

Imports System.ComponentModel
Imports System.Reflection
Public Class PropertyClass[code].....

This is the code I am using to edit the values:

Dim c As New PropertyClass
PropertyGrid1.SelectedObject = c


The problem is that when I set SomeProperty to True, nothing happens and when I then set it to False again it sets all properties Read-Only.

View 1 Replies

Make A Idle Event That Sets A Timer To Determine If System Idles For A Minute

Dec 5, 2011

I wanna know how to make a Idle event that sets a timer to determine if my system idles for a minute and pop outs a form and stop the timer if that form loads?

View 2 Replies

VS 2008 Can't Make A PANEL VISIBLE Property TRUE

Sep 11, 2009

I use lots of panels to hide controls and display groups of controls.

If sender Is BDVActive Or sender Is BDVCompleted Then
BDVCases.Visible = True
BDVCases.BringToFront()

[Code]...

View 1 Replies

VS 2008 - MDI Child Forms Sets To Sizeable (Cascade Option)

Nov 6, 2009

I have an MDI application where the child forms are set to sizeable, but when I hit the cascade option the forms are resized. Other than setting the forms to a fixed size is there any way round this?

View 2 Replies

.net - Make A Class Property Behave Like The Checked Property On RadioButton?

Jun 1, 2012

I have a very simple class that holds a few public properties - ID, Text, Colour, etc. and a Boolean called 'SelectedItem'. Just like the Checked property on RadioButtons, only one item can have its SelectedItem property set to True within a particular group. Note: there will be several separate groups (lists), each allowed to have only one item with SelectedItem = True.

My first thought was that I would probably just have to handle everything outside of the class, setting SelectedItem to False for every other item in a particular list when another item was selected. But that seems rather inelegant to me. So I've been trying to think of how this might be done within the class. For example: could I perhaps have a private string property called say "GroupName" - set in the New sub when adding a new instance of the class - and then use a private shared method to set every item's SelectedItem property to False, provided the item has the same GroupName as the newly selected item? I would have a go at doing this but I have no idea how to enumerate every instance of a class from within that class, or whether that's even possible. Is it? Or is there another (better) way to achieve my goal? Here is a cut-down version of what I've got so far:

Public Class ResourceItem
Public ID As Integer
Public Text As String[code]....

As can be seen: instead of instantiating a new ResourceItem and passing that as an argument to the manager's Add procedure, I'm simply passing the details of the new item and the procedure is creating the item from those. I don't know whether this is a good or bad idea - please advise - but I've done it because I couldn't figure out how to make the SelectedItem property only writeable by the manager, so I wanted to avoid having directly accessible objects that could have their SelectedItem property set to True without it deselecting all the other items in the same group. Of course that still leaves the possibility of setting a variable to one of the manager's list items and setting it from there, so I would still like to know how I could prevent that, if possible.

UPDATE: I didn't use the code above in the end, deciding instead to go with Cyborgx37's solution - which seems to work perfectly well for me despite the warnings about best practice. I also realised I would need to use the same class in another scenario where multiple items could be selected, so it was easy to add a Boolean property to the manager to enable that.

View 2 Replies

IDE :: Make A Property In A Property Grid A List Box In 2010?

Feb 21, 2011

I have the following property in a property grid in VB.Net 2010.

<Description("Rapid Entry Post Car Wash Settings CarWashOptionPushButtons"), _
Category("Post Car Wash")> _
Public Property CarWashOptionPushButtons() As String

[code]....

I need to make this property a list box that gets the values from a database table and populates the list box with the values from the table. I have tried numerous things to no avail.

View 4 Replies

VS 2008 - Property Grid - Click On Item Show Its Property

Mar 18, 2009

I have a listbox with several list items added. I want that as user click on an item, I should be able to show its property. This should change for different items. For example (hypothetical) : Listbox has numbers 1 - 10. Now when I select 1 I should be able to set property - Name, Lastname, Colour, Age.

When I select 2 I should be able to set - Age, Hair Colour (clr shows), Weight, Date. When I select 3 then - City (combo box drop down), Country, Age only. This way value changes for diff items. One way is to put them in property grid and show them. Though this looks nice but adding/removing items in that is not easy. You need to have a class that refer that to prop grid. Do I have to code for each classes for all values in listbox or is there an easier way to manage items in property grid. If you think prop grid is not the right tool for such an activity then can you suggest something else.

View 13 Replies

How To Make Property Read Only

Feb 25, 2009

I have a class which contains the object and a collection for that object. I want to make a property readonly to external calls, but allow access to that property from the collection class. I know I can use:[code]But, I want to the PreviousRow property to actually show as "ReadOnly" in the intelisense of the calling code of client app. The above does not. The only way that I see to make it show as "ReadOnly" in the called code is to mark the whole property as ReadOnly, but the problem with this is that my collection class code can no longer access this property:[code]I tried using the "Friend" declaration, but that seems to still allow Write access to the calling code.I only want write access from within the RowCollection class.

View 9 Replies

Is There Tab Property Can Assign To Make A Given Tab Not Only 'top'

Nov 28, 2009

Is there a tab property I can assign to make a given tab not only the "top" (or active) tab but also the left most or is there another way to do this?(It seems pretty straight forward to make a tab the top or active tab.)The requirement is that I've got one tabcontrol that contains a potentially large number of tabs. Each member tab has a right fair number of controls and dialogs.These tabs are all grouped by fours sequentially. For example, tabs 0-3 are one group, 4-7 the next group, etc.I'd like to control the display of this tabcontrol from a different tab control. This second tab control contains high level information about the 1st tab control as well as a lot of other things pertaining to all four tabs that the user needs to see as well.For example, if I've got 8 total Tab1's, then I've got 2 Tab2's.When Tab2(0) is selected, I'd like Tab1's leftmost item to be Tab1(0). When Tab2(1) is selected, I'd like Tab1(4) to be my leftmost tab in Tab1, rotating the lower 4 out of view for the time being.

View 4 Replies

Make Custom Property?

Mar 10, 2009

this is the code for my property

Dim _playernumber As Integer
Property Player() As Integer
Get

[code].....

View 3 Replies

Add All Sets Of Icons To An Application?

Jun 21, 2010

I have an icon file (32x32) and I added it as application icon in the properties and it is coming fine only if the view is set to "Medium Icons" else it is showing only the default icon. How can I add all sets of icons to an application so that my Icon will be visible in all modes?

View 2 Replies

Control That Sets A Variable To A Value?

Feb 4, 2010

I have a simple control that sets a variable to a value. What I want to be able to do is check the value of this variable on another form.Here's the code:

[Code]...

View 4 Replies

Linking Data Sets?

Mar 26, 2012

I need to link different arrays of data that I am gathering from different Select Cases.For Example:Araray A, B and C from Case 1Array C, D and F from Case 2 Note: Array C is common between two cases.I know in C++ I could have used Pointers and use SQL in Java.

View 1 Replies

How To Make Distinction Between Property Name And Structure Name

Aug 13, 2009

Is there a way to tell VB.Net to use a type instead of a local property name when there is a naming conflict in your code?

Public Class MyClass
private mBedrag as single
Public Property bedrag() As Single
Get

[Code]...

View 3 Replies

Make A Class Property An Enumerated Value?

May 4, 2010

Imports Microsoft.VisualBasic
Public Class DealSlot
Private mSlotType As String
[Code]...

View 6 Replies

Make A Mapping Between each Property And column #

Oct 21, 2009

I have a situation where a class's properties are being exported/imported from an Excel sheet. Each property is in a specific column, so I want to make a mapping between each property and column # (a Dictionary collection would be sufficient). That way I can just loop through each property and/or column in the dictionary when read/writing data (maybe something like Class1.PropertyA = ws.Cells(curRow, Propto ColDictionary(PropertyA???).value). But, you obviously can't treat properties like other value types, so I don't know how I would store a property in a dictionary for this purpose. So could this sort of thing be achieved via reflection, or am I off-track?

View 8 Replies

Make A Property Public Get But Private Set?

Apr 25, 2009

I just stumbled over this in some C# code...:public Foo Foo { get; private set; }

View 2 Replies

Make The Functions For The Children Property?

Oct 22, 2011

I want to make something similar to the listbox.children property. I know I can write this to return the children of the listbox:

[Code]...

View 4 Replies

VS 2010 Make A Property Page?

Dec 30, 2011

I'm in the process of making a usercontrol and i've run into the problem of how to make a property page. Obviously this makes setting up you control nicer and more importantly to my program makes loading the form faster (setting the properties in the load event vs property page). I was trying to find something to start on but i didn't find a propety page in the "New Item" menu or even something like the "Property Pages" property of a usercontrol in vb6 where i've done this before. How can i make the equivalent of the vb6 property page in vb.net? Maybe with a form or a dialog?

View 6 Replies

.net - Auto Generate Gets And Sets From A Database?

May 3, 2009

I am coming from VB6 and I am starting to convert an existing VB6 code to VB.Net. What tools can I use to automate this task?

View 3 Replies

Collect Two Sets Of Data From Two Different Databases

Feb 5, 2009

I collect two sets of data from two different databases, This data is now in two collections. I then join/append the one collection to the other and then put it in to a list view.I really would like to order this list view by the first column without the click event.To make this even harder the First column contains Data that is DateTime and i have found that it orders the items by the day number and not the months or years or time.I have found one way but it then cause's me further agony when doing some checks upon the data within the listview later in my code. This answer is to rearrange the format to "yyyy-MM-dd HH:mm:SS" then using the listview.sorting = sortorder.

View 7 Replies

Flexible Data Sets For Functions

Nov 12, 2009

I have only 2 sets of "fixed" numbers used, that I need to be able to toggle between. Particularly, for array sizes/for loops. Is it best to use "Collections" in VB.NET to accomplish this?

View 5 Replies

Foreign Character Sets And RichTextBoxes?

Jun 9, 2010

I have some text in an .rtf file which uses a non-English character-set (it's chinese).When I open this in Wordpad or Word I see just the chinese characters.When my app opens the .rtf file and reads the file's contents and puts it into a RichTextBox for display, I get "everything" from the .rtf file, i.e.:

{
tf1ansiansicpg1252deff0deflang2057{fonttbl{f0fnilfcharset134 SimSun;}{f1fnilfcharset0 Calibri;}}

[code].....

View 3 Replies

Getting Two Sets Of Information From A Source File

Apr 18, 2012

I want to get two sets of information from a source file. Say user name and address to their profile. I so far I'm using two for next loops to get the information I want and save it into the text file. Works great. Problem: I would like to print to file first line of For Next output then append to that the first output of the second For Next loop. Then do the same for second out put until the end of each For Next loop is complete. [Code]

View 14 Replies

How To Join( If Elseif If ) In Number Of Sets

Jun 8, 2012

Since plan1 and plan 2 all plans having same fields but due to their variable values total I make 4 tables having one to many relationship so that duplicate data for few fields get accomodated under different Id. and now there is no need of filtering data also and 4 databinding sources give a serial values to my comboboxes to select veriables to get further calculations.

I have another question now in further calculation there are many calculation sets with using if elseif if statment for such number of sets how to connect them since in form1.vb code file

if I place them one after other some calculations get correct some gets wrong.I hope you understand my question.is there any method to connect such sets( if elseif if) statments one by one under one buttion_click to get correct answer for all the sets.

View 1 Replies

Split List Into Sets Using Linq

Feb 7, 2011

There are plenty of seemingly related Linq questions, however a quick browse through the content doesn't seem to answer my question specifically enough for my limited intelligence to grasp.

We have a table named PropertyInteractions in which is stored threaded messages via a thread id, the thread identifier is the Id of the initial interaction record. Given the following Linq query (which retrieves all interactions concerning a user), how might I split interactions into lists of PropertyInteractions grouped by Id?

[Code]...

View 2 Replies

Sql - .NET - Multiple Result Sets In One Query?

Aug 10, 2011

I have a stored procedure:

CREATE PROCEDURE [TestProc]
AS
BEGIN
select '1a', '1b'
select '2a', '2b', '2c'
select '3a', '3b'
END

If I execute the following query using SQL Management Studio,

[Code]...

How can I get the three result sets using SqlDataReader? Or even three SqlDataReader's? Or is it possible to get multiple result sets in just one query in VB.NET? Is DataSet my only option?

View 2 Replies

SQL Datareader - Returning Result Sets?

Dec 2, 2009

There is a stored proc.. Which was returning to result sets..
Ex:
select * from table1
select * from table2
If I get this data to a Dataset, Definitely I will get 2 data tables with index (0,1)..But what if go though a Datareader? I had checked that just now.. And I got a result of first result set (i.e Table1 in our example)..

View 7 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved