Grouping Code For Outlining?
Oct 1, 2011
I have multiple sub's that i'd like to group together, however all of the groups need to be in the same class. They all work together, but it would help me organize the code and make it less confusing if I could group some of the different subs together for outlining purposes. Is there a way to do this? I tried to find answers online, but I couldn't find what I was looking for.
View 3 Replies
ADVERTISEMENT
Apr 12, 2010
Stackoverflowers,I have a resultset from a SQL query in the form of:
Category Column2 Column3
A 2 3.50
A 3 2
[code].....
View 4 Replies
Jul 4, 2010
When I select an area of text in Visual Basic Express 2010 and then go click Edit/Outlining/Hide Selection; the area collapses and is represented by three dots like "...". Is there a way to put my own title, description or label on it for better meaning and communication?
View 1 Replies
Feb 5, 2010
I'm having a heck of a time with transforming a simple SQL Query into a LINQ query(using vb btw)
Here is my SQL:
SELECT USRDEFND5
FROM int_gp_employee
GROUP BY USRDEFND5
[Code]...
I've tried a number of different variations of the LINQ. My current statement is:
From b In xmlFile...<row> Group b...<usrdefnd5> By b...<usrdefnd5> INTO group when I foreach through the resulting collection, EVERY line (17000) shows up.
View 2 Replies
Aug 12, 2011
My VB.net application has a lot of application settings, is it possible to group them somehow(other than having a common name)?For example, my application has a lot of winforms each of which needs to save some information about itself. Is it possible to use something like:
Form1.width = My.Settings.Form1.Width
Form2.width = My.Settings.Form2.Width
etc.
View 1 Replies
Jul 7, 2009
I've a large table of Items and I need to organize them by Category, then by Year and then by Month.Item has CategoryID and Dated properties.I got this far:
Dim Items = From Item In DB.Items _
Group By CategoryID = Item.CategoryID _
Into Categories = Group _
Order By CategoryID
But where I put the:
Group By Year = Year(Item.Dated)
and the
Group By Month = Month(Item.Dated)
The final result should be something like this:
For Each Category in Categories
For Each Year in Category.Years
[code].....
View 2 Replies
May 8, 2012
I am using a nice shopping cart I found online. I would like to translate this code to use a repeater or listview and dynamically retrieve my data, but I cannot seem to find a way to group my data correctly.I know the ListView can group by a certain amount of items, but I have not found a way to do it with this scenario.The shopping cart works by having a ul list of items, followed by their details in the div below. This process starts again by getting three more ul items, followed by three more details. How could I do this using a ListView or repeater? I have not found a way to repeat both of these sets of data I need in a group of three.[code]
View 1 Replies
May 25, 2011
I'm completely dense here, but I'm trying to get some stats from a DataTable. One of the columns in the datatable is called "colour".I need to find out how many of each instance of "colour" are in the datatable.
I'm trying:
Dim q = From p In PGWorkingDataTable _
Group p By p("colour") Into Group _
[code].....
View 2 Replies
Feb 24, 2010
I am trying to group various controls (of the same type, e.g., labels together, buttons together, etc.) on a form using a tag or a name of some sort so I can identify all those that belong to tag 'A' and those in tag 'B'. In the end I will have on a form a number of labels grouped as tag 'A' and some labels as tag 'B' so I can change their visible properties on/off.
View 4 Replies
Sep 2, 2009
If a user has a few of my applications open and he/she minimises them I would like to group these in the task bar like MS Word for example.
Product Name - Application 1
Product Name - Application 2
Product Name - Application 3
Product Name - Application 4
Because all of my applications begin with the product in the Title bar can this be achived.
View 1 Replies
Mar 28, 2010
i've got a problem with dataset:
I've got two dataset from two different server but they have the same columns.
so it's like that:
First DataSet :
[code].....
View 2 Replies
Sep 8, 2009
I have a class called Trigger. within this class, I can perform a variety of functions, the main of which is to monitor a specific condition. In this class I have a bunch of class variables that are used to setup the condition as well as for information purposes after the condition has executed. All the conditions are stored in a database and when I start the program, I create a New Trigger class for each condition and store the variables (name, desc, action to perform once the condition is met, etc.) I was thinking about changing the class to create a Structure called Configuration where I would store all the variables. But then I would have to save the Configuration within the class so it could be used later on if needed correct?
[Code]...
but in looking at this i realized that I am creating a new structure and then creating a new trigger class where I am saving the Configuration structure which essentially seems the same as just using class variables as I was before. I also looked at creating a Configuration Class and a Trigger Class. then from the main class I would create all the Configurations and have a shared Trigger class that monitored all of them instead of having a single Trigger class for each Configuration. Using this method i could create a hash table that kept track of each configuration that was being monitored and stop it if required.
Does either method sound more appropriate over the other. I am just trying to understand when/why to do things a certain way.
View 4 Replies
Feb 17, 2010
I did attempt searching but it just gave me a "505 bad gateway error".So my issues is the grouping header isn't working lol.
ListView1 - name of the ListView control
3 columns added to lv
3 items added to lv
[code].....
View 8 Replies
Jan 18, 2012
My repeater is searching through dates in the SQL Server database and returning the first 3 letters of every month. Is there a way to show the repeater the way I want to? [code]
View 2 Replies
Jan 5, 2010
I am making a report using the reportviewer. I have grouped the data and the group works. But when I try to put some data in the group header, I get the following error:The Value expression for the textbox Dep_Name refers to the field Dep_Name. Report item expressions can only refer to fields within the current data set scope or, if inside an aggregate, the specified data set scope.
The data I am trying to display is from a different table then the one that I am using to group the data. Does this mean there is a problem with the relationship between the tables?
View 10 Replies
May 25, 2010
Is there any object that supports column grouping in VB.Net. Because I've been trying datagridview with no success.
View 3 Replies
Aug 15, 2011
I have a table called Ordersthe table has many rows but im only interested in two in particular.I want to query the table so it returns the average ordered count of each producti want to know what is the average count of the ordered products, but now in total but per productID instead.
View 1 Replies
Aug 10, 2009
I am trying to summarize a datatable based on a primary column and then add certain columns. For example this table
col-1 col-2 col-3
1 AA 2
2 BB
[Code].....
This simply doesn't do anything becuase it thinks the target table doesn't have a primary key.
View 1 Replies
Apr 9, 2009
How do I exclude one value from a grouping sum, based on a value of another field?ie I open Report=> Report Properties=>Code and insert my Custom Code, but how would I change the below code to exclude a numeric value of another field for the below case?
Public Function ChangeWord(ByVal s As String) As String
Dim strBuilder As New System.Text.StringBuilder(s)
If s.Contains("Others") Then
[code]....
View 1 Replies
Jun 26, 2011
I need to take a collection and group it via Linq but all the examples I've seen fail in some manner or other with some syntax difference that I can't quite lick.
My collection:
Dim a As New List(Of ProcessAlert)
a.Add(New ProcessAlert("0000112367", "5551110000@txt.att.net", "Alert", 2))
a.Add(New ProcessAlert("0000112367", "5551110000@txt.att.net", "Document", 2))
[Code].....
View 1 Replies
Feb 4, 2009
I'm building an app that list information. It will have list of each object going vertically, with the information about the object going horz across that line. My issue is I need to scroll through these lines, however each line will contain text, images, scroll bar, button, etc. Just common control items. I first started off grouping them in a panel (panel being everything needed in that one line of information). I was thinking I could spawn more identical panels, one for each object listed. I also tried this using a UserControl (not sure if this is the right thing to do). I just need a simple panel or area that I can layout my controls as need, then create identical panels as needed for each line. Then I can just scroll through then using some script to mod there location. Panel? UserControl? I've tried the usercontrol, however I coudlnt get it to show on the form.
View 5 Replies
Aug 21, 2009
I vaguely remember something about a hotkey or menu that would group controls together at design time so you could drag 2 or more controls around and they would remain relative to eachother. You could work on something else and come back and the controls would still be grouped.
Does anybody know what this feature is called and how I can access it?
View 4 Replies
Oct 28, 2010
I have a program that opens a fixed length delimited file and process each line depending on what it starts with.
Sample Input:
101 000000000 0000000001010271255A094101National Payment Corp National Payment Corp
5200Happy Company ACH20101021-001.txt PPDDIR DEP 101105101105
[code].....
View 3 Replies
Jan 4, 2012
I have a table in my oracle database, with the following schema: student(studentNumber,name, dateOfCreation).
dateOfCreation is the date in which the student record was created.
In crystal reports, I have to group the records into the following groups, using the dateOfCreation field:
Older than 4 weeks(Records whose dateOfCreation is more than 4 weeks ago). Between 2 and 4 weeks (Records whose dateOfCreation is more than 2 weeks ago, but less than 4 weeks ago). Between 1 and 2 weeks(Records whose dateOfCreation is more than 1 week ago, but less than 2 weeks ago). Less than 1 week (Records whose dateOfCreation is less than 1 week ago).
I have tried grouping in specified order using group expert
View 2 Replies
Dec 13, 2010
I am trying to reduce the amount of code I have and make it more maintainable and flexible. (I.E Do it the right way). I have a bunch of (48) Form controls (text boxes) and when I click next on that form I save all their text values to some 48 global string variables. The names of these variables are the same as the Text Boxes but with "_saved" appended to them.
For any given operation instead of having a separate line for each control it's nice to just use a loop. I can easily write some code to operate on each Control (set visibility, enabled etc) by using Me.Controls and a For Each Loop. I can even make collections of fractional groups of the 48 controls. For example, If cntrl.name.startswith("sometext") collection.add or perform some other operation only on that subgroup etc.
I'd like to do something similar with my Saved Public String Variables. For example I would like to do the following loop somehow but don't know how to group Variables together and keep their name in a way where I can define that array or collection on 1 line or just a couple lines.
' But this next line only groups the values
Group_of_string_Variables = {Var1, Var2, Var3, Var4}
For Each Name_of_String_Variable In Group_of_string_variables
[Code].....
But I can not access the name of a variable or find a way to easily group in key/value 48 different ones without needing much more than 50 lines of code to make either a 2-dim array, a collection, or a hash.
I'm sure someone will tell me I should be doing it a completely different way. That would be ok as long as I don't have to change too much of my other code. I thought of making an object of some kind instead of a variable so I could access 2 object properties- name and value then I could group those objects in a collection as I have done before. But that seems like it would be many more lines of code and I'm not sure it would work.
View 6 Replies
Feb 13, 2012
I am using jquery mobile with asp.net mvc in vb trying to render a yes/no radio button group:
[Code]...
View 1 Replies
May 19, 2010
I used to have a nice little Visual Studio Add-In that allowed me to group files by simply right clicking on them.It used to modify the csproj file in the background and add the relevant attributes.
View 1 Replies
Jul 26, 2010
I'm trying to group similar items together, for example, the image below.
I wish to group the "apple" together and once it is grouped, I want the average value from the two values.
Here's my codes.
VB.net
Public Partial Class MainForm
Public Sub New()
[Code].....
View 11 Replies
Nov 11, 2009
I have finally got my head around sorting listviews.My problem is that I have the listview with columns (Name, Folder, Date) and when I sort it by date, it creates groups for each indiviudal date (shown on the left). Is there a way to get the same result as Explorer on the right?
View 2 Replies
Jan 30, 2009
The code below randomly selects two players from "Preferences.txt" which has the names of all current players. (not necessarily all saved profiles) Now I need to find the best way to match 'Doer' and 'Receiver' with their profiles in "Players.txt" and get their profile attributes.
[Code]...
View 3 Replies