Delete The Assignment Inside Groupbox2?
Apr 20, 2009
I'm working on a program for keeping track of class assignments and have most of it worked out, however, my coding skills are rather lacking of knowledge beyond a basic if/then statement.there's a flowlayoutpanel with 40 groupboxes w/ various things in them, including a delete button.so my idea was if someone wanted to delete an assignment, they'd click a 'delete' button inside the groupbox. problem is, if the user had assignments lined up like
groupbox1
groupbox2
groupbox3
groupbox4
and they wanted to delete the assignment inside groupbox2 lets say, it'd need to make everything in groupbox3 and 4 move up...the way i thought to do this was to have the text and properties of the items in groupbox3 = the ones in groupbox2, gb4 = gb3 and gb4 gets a clean slate... so everything just moves up.coding for that was very inefficient as well .so my idea was that the 'deleted' item would instead get 'recycled' (so to speak)like this:
user deleted gb2 of 4
gb2 gets sent to the bottom of the flp and a clean slate (no information in it)
gb3, 4, 5.....so on till 40 automatically move up 1 spot in the flp
View 9 Replies
ADVERTISEMENT
Jun 11, 2012
I'm working out on a function in my program to let it update all the downloaded files by a button, I tried this:
[code]...
But when I try it .. It says that I cannot remove the directory because it already has files inside it.My question is, how can I remove all these files together (Without mentioning each one of them because they're about 100 files) so I can be able to delete the directory?
View 4 Replies
Nov 24, 2010
I created a groupbox and then populate it with buttons during runtime. I also created a button, say Button1 to loop through the groupbox and delete those buttons.[code]...
View 2 Replies
May 16, 2011
Another program I am working on for fun, I am basically shuffling a list inside a listbox, what I want to do is delete the rest but not sure how to go through with that. At the moment I have this: [code] Just contains the code, declarations outside weren't included.So anyway, once clicked, it will call on the function to basically shuffle in a for loop, I was wondering if I should (or how should) create another function and call it in the click button or have just a loop in the click button so it deletes half the list. What I am doing is I have 20 list of items, I want the program to shuffle the items and then deleting the lower 10, meaning, if I had 10 items and wanted 5 top, I'd want: 0, 1, 2, 3, 4 and deleting 5, 6, 7, 8, 9.
View 7 Replies
Feb 13, 2011
How can be find out which file is going to delete when, user provides command like DELETE or SHIFT + DELETE or by programmatically gives DELETE command. Well I know about FileSystemWatcher Class, but this class doesn't provide information before delete...
View 1 Replies
Sep 24, 2011
I have a school assignment and I just started to learn VB. Until now I/ve done pretty good however I encountered a problem which I can't solve in this assignment. So, I would ask if someone could tell me what I'm doing wrong?
This is the assignment:The application calculates the new hourly pay for each of three job codes, given the current hourly pay for each job code and the raise percentage (entered as a decimal number).
a.) before the form appears, use the InputBox function to prompt the personnel clerk to enter the raise percentage. You will use the raise percentage to calculate the new hourly pay for each job code.
[Code]...
View 4 Replies
Jun 5, 2012
Concerning this code... Dim i1 As Integer = Nothing
[Code]...
View 12 Replies
Mar 19, 2012
Is there a way to set a variable in VB.NET in an IF statement. I would like to do the following:
[Code]...
Is there some way I can get the last "ElseIf" to work? I know I can re-write it to get it to work but is there some syntax that will make it work the way it is?
View 3 Replies
Aug 16, 2010
I'm having an odd problem with an ASP.Net page.I'm getting an object not set error message when assigning a string literal to a variable. [code] And here is the code that the error is pointing to. The last line in this fragment is the line 10 the error is complaining about [code] It seems it fails on accessing any reference type, even if it is declared locally in the load function. I originally found the problem when Request. IsSecureConnection was nulling out on me. I eventually discovered I could replace it with the above code and fail in the same way. The problem does not always happen. It seems to be triggered by publishing an update from Visual Studio, or when I head home for the day and the server sits idle all night. One or two app pool recycles seems to clear it up, and the page functions correctly. I've been doing desktop development for a few years, but I'm fairly new to web development.So maybe this is something obvious I've got configured wrong. I'm currently using .Net 4 on IIS 6. That code is in a foreach over an IEnumerable(of XElement). The stack trace still points to the string assignment, but all other stack traces are spot on, so I don't think it's a bad pdb.Also, when the error occurred this time, no amount of recycling the app pool or stopping and starting it would fix the error. I finally got it working again by switching the application to a different app pool.
View 2 Replies
Apr 23, 2012
Why aren't the assignment operators (+=, -=, *=, /=) overloadable in VB.NET?
View 1 Replies
Apr 4, 2011
If I put:
variableName = namecombobox.selectedItem
or
Dim variablename as type = namecombobox.SelectedIndex
Visual studio gives me the error: "Option Strict disallows conversions from object to string.
I can fix this by putting:
variableName = convert.ToString(namecombobox.SelectedItem)
Are all values contained in a combobox automatically treated as a non-string even when they are string values (in this case "Male" & "Female") and what is the correct way of assigning the value selected in a combobox to a variable?
View 1 Replies
Jun 12, 2011
i am making a program on visual basic 2010 and part of my objective is to calculate the tax, i am trying to calculate the TAX so this is part of my code and this is the only part which gives me errors:[code]
1. Constant cannot be target of an assignment
2. value of type 'string' cannot be converted to 'System.windows.forms.Lebel'.
View 2 Replies
Jun 21, 2010
I have an assign ment that says: create an application to let the user enter his or her name (first and last name), then displays the Initial in Upper Case. FOr example: you enter "John Wow", then the Label will display "JW". I know that I'm supposed to use the Substring method. But to use the Substring, I have to have the exact location of the Leter that is going to be displayed in the Label.The problem is: the name that the user enters always vary. So in strnewstring.Substring(... , ...) ---> the number in the parenthesis would vary, too. Thus, I cannot put a number in there.So how can i create a code for this particular assignment.
View 4 Replies
Sep 26, 2011
i need to design a sudoku( 4*4 ) for my VB assignment..and i am having problem with generating random numbers for the four text boxes i have used..
View 4 Replies
Sep 28, 2011
What is the difference between this two ways of returning value in a function in VB.NET?
Using Return Statement:
Public Function Foo() As String
Return "Hello World"
End Function
Using Assignment:
Public Function Foo() As String
Foo = "Hello World"
End Function
I'm using the first one then I saw someone using the second. I wonder if there's a benefit I could get using the second.
View 4 Replies
Nov 17, 2010
Maybe this is a n00bish question, but I'm used to c++'s pointers and references and this is confusing me a bit. Let's say I have the following scenario in a VB.net application:
[Code]...
The situation is this: I have a collection of objects, and during execution of the program, any of them can be fetched from the collection to be used/edited by another part of the program. Now obviously if I edit the data inside the object it is allright, but what if I want to replace the object, as I did above at line 5? I would change only the local reference (y) but not the object inside the collection!
Is there a way around this? How can I take with me a "reference to the object's reference", instead of just a reference, so if I reassign it it will also reassign the one in the collection? I hope I'm making myself clear, unfortunately english is not my native language, to be clear: in c++ this would be easy using a pointer to a pointer, or passing a pointer to the object always by reference, so calling new or reassignment on it would change the original pointer itself)
View 4 Replies
Jan 9, 2010
i would like to hijack the assignment operator and do some customization before an instance of my class is assigned.
example:
Dim A as New MyClass
Dim B as MyClass = A
i want custom the behavior of = is that possible?
View 9 Replies
Jan 4, 2009
I have post several parts of my assignment. Can someone advise me on how to do a log on screen. I have a splash which is on a timer, which is supposed to go to a logon screen. I have created the database project in visual studio 2008. Database was created in ms access 2007.
View 2 Replies
Feb 27, 2012
I've got one for you. I am working on a program that calculates the cost of a trip given a specific price of a Workshop say "Handling Stress for $595" the length of the workshop say "3 Days" and the city the workshop is in say "Austin for $95/day" now the issue i am having is that for example my NumDays variable (the variable for the number of days of the workshop) is not taking the value. Ive ran a Watch on the variable and it stays at 0. It also displays zero. i have assigned it an integer so it should be working if I assume correctly.
[Code]...
View 4 Replies
Sep 29, 2009
I am fairly new to Visual Basic, but have had extensive experience with TI Basic and am 1 month into a class at my high school in Visual Basic.I recently began a blackjack application that will play as if you had actual randomized cards. I currently have 2 variables per card, one for the value (random integer 2-14), and one for the suit (random integer 1-4). I have pictures of all 52 cards with this numbering system (21.png, 22.png, etc. The compiler understands picturebox statements as
PictureBox1.Image = My.Resources._21 It seems like there would be some way to have a variable assignment, but
PictureBox1.Image = "My.Resources._" & You1Card & You1Suit isn't recognized as it is a string. Is there some way to either randomize the pictures to generate a random picture in My.Resources as opposed to integer representations of cards? Or is there some way to have the PictureBox assignment accept a variable string?
View 8 Replies
Sep 5, 2010
So, I have a textbox with the following text.
Code:
TITLE"Hello there"
blah blah blah etc...
I want my program to find the TITLE text, and then put the text in the double quotations in a variable.
View 9 Replies
Apr 30, 2012
I am making an invoicing application. I have a label (lblCost) inside of a UserControl (InvoiceEntry) inside of a FlowLayoutPanel (pnlEntries). InvoiceEntry represents a line item on the invoice, and pnlEntries is the "body" of the invoice. pnlEntries can hold several InvoiceEntry controls.
I am attempting to sum all of the lblCost values from each InvoiceEntry control to make a subtotal, and I want that subtotal to change automatically if costs are changed (e.g., a change in quantities being ordered). Is there a way to handle when the lblCost.Text property of any of the InvoiceEntry controls contained within pnlEntries changes?
InvoiceAdd.vb:
' Instantiate objects of the various database interaction classes.
Private mCustomer As New Customers
Private mItem As New Items
[code]....
View 1 Replies
Dec 1, 2011
This assignment works for me TryCast(Me.NamingContainer, LDHello).ToggleChartConfigurationSections = AddressOf LD_SayHello whereas Dim objLDHello As LDHello = TryCast(Me.NamingContainer, LDHello) AddHandler objLDHello.LoveAndLoveOnly, AddressOf LDSayHello fails with an error message like LoveAndLoveOnly is not an event of Universal.LDHello. Visual Studio intellisense is able to pickup the event whereas the background vbc and build compiler are failing. When I need to stack multiple subscribers to the event I need to use AddHandler right?
View 6 Replies
Jun 19, 2009
I have a custom class that simply contains a public variable X.Let's say I have two instances of the class, A and B.If I execute an assignment operator, such as:A = B then I want A.X equal to the VALUE of B.X.But, I'm pretty sure that this will just assign B to the variable A.Assigning pointers, in C++ lingo.I looked in the VB.NET docs, which state that "The operator can be overloaded only as a relational comparison operator, not as an assignment operator."
View 7 Replies
Jul 26, 2011
I have a set of nine double variables declared earlier in a program (i.e., phq91 through phq99) that I have placed within an array. The variables need to hold numeric data that correspond to item responses within combo boxes.
View 6 Replies
Mar 6, 2010
I'm completing our assignment we are using vb.net as front end and ms access 2003 as back end but are unable to delete data in the database after clicking on delete button it shows result on front end.code for next does not work give code for next
View 2 Replies
Jul 9, 2010
I am having a structure that is actually a simple byte with more functionality.[code]...
If there would be a way to inherit from Structure I would simply inherit from Byte adding my functionality, basically I just need a byte Structure with custom functionality.
My question is also valid when you want to define your new singleton member value-types (like, you want to define a nibble-type for instance etc.) and you want to be able to set it with an assignment to number or other language typed representation.
View 1 Replies
Oct 20, 2009
I am using VB.Net 2008 Express.I am trying to move a button on a form, the button status is unlocked. The code that I want to use is:
Me.btnEnter.Location.Y = 474
However, I get the error message, "Expression is a value and therefore cannot be the target of an assignment" If I now code as follows, I get the error message, "Property access must assign to the property or use its value"
Me.btnEnter.Location.Y
The errors appear contradictory. Just to check, I wrote the following
X = Me.btnEnter.Location.Y
And when run I received the correct answer of 535.What is happening? What am I missing?
View 4 Replies
Apr 11, 2011
Suppose a teacher has five students who have taken four tests. The teacher uses the following grading scale to assign a letter grade to a student, based on the average of his or her four test scores.
Test Score Letter Grade
90-100 A
80-89 B
[code].....
View 1 Replies
May 20, 2011
I have to make a visual basic program for a school assignment. I am an absolute beginner at it though, but am willing to learn.I have to make an income calculator for farmers that make giant turnips.
So basically:
1. If the turnip weighs less than 350kg, the farmer will receive $2 per kilo
2. If the turnip weighs 390 or more, the farmer gets $1.50 per kilo MINUS $180 for a maintenance fee.
3. If the turnip weighs between 350 and 389kg, it has to be sent to a paddock that costs $25 per week for lease. Turnips loose 1% of their mass per week in this paddock. When the turnip gets below 350kg it can be exported. As ships depart weekly, turnips may drop a bit below 350Kg before departure.
Create a profit calculator for the turnip farmer for a list of cattle weights.
Functional Requirements: oEnter the weight of each cow into an array oCalculate the income from each cow and store in another array oAdd up the values in the array and display total income.
View 1 Replies