I'll give that a try and post a verdict. Thanks again for helping me and working through my information. I appreciate the help. Thanks again.
Jason Baggett
Posts
-
Addition Operation with Access DB Column -
Addition Operation with Access DB ColumnSorry if I’m not explaining this very well. I have under TestA, several test variations that each have a certain duration allotted to them. My need is to somehow calculate the entire time or duration for all tests in Test A and so on. Example: Test A - #1 takes 1 hr. Test A - #2 takes 2 hrs. Test A - #3 takes 3 hrs. Button Click to add the entire Test A test times would equal 6 hrs. The differences in Test A,B,C are all different tests. The 1,2,3 are tests performed for each Test A,B,C. Does that make sense? This app is supposed to calculate the total duration of all testing to allocate personnel and resources effectively. Doesn’t seem logical to me, but evidently there’s a need for it.
-
Addition Operation with Access DB ColumnI knew what "I" was talking about and wanted; I didn't convey the actuals. Sorry. I'm thinking time as in duration or test period. I apologize for the confusion on my part. I have a column in an Access Db that states how long a test is running, 2 hours or 30 minutes and so on for 3 three different tests. Test A,B,C are in column 1 with the test duration in column 6. Example: Test 1 TestA 2.5 Hrs TestA 30 Min Test 2 TestB 20 Min TestB 1.5 Hrs Test 3 TestC 1 Hr TestC 45 min I need a way to calculate the entire testing times for Test 1, Test 2 and Test 3 individually. I am planning on having a ComboBox with these Tests 1,2,3 and a Button to Calculate the times associated with each test that is driven from the Access Db, per test. Hope that makes better sense.
-
Addition Operation with Access DB ColumnI’ve got a need to “add” an entire column of times (2 hrs, 30 min, etc.) and curious as to what the best starting point is. I want to calculate the total time of a column by means of a Button Click. I will need to do this per three different criteria for testing time. I appreciate the advice.
-
Printing Component AdviceI tried both methods and the first one was promising, although nothing happened. The Second example gave me a bunch of errors. I found a topic on this very same subject and ended up downloading a ToolPack to get the "PrintForm" component. I set the PrintAction property to PrintToPrinter and put PrintForm1.Print() in the event handler for the Button. This got me the print! Thanks for the help. -- modified at 9:37 Thursday 8th February, 2007
-
Printing Component AdviceI have a need to print a Form and its ComboBoxes and Labels by way of a ButtonClick. I found an example to use but it's very vague and I've been told that you can't code a Button in a Form to Print without an aftermarket tool. Any advice? Thanks Jason -- modified at 16:29 Wednesday 7th February, 2007
-
ComboBox HelpThanks. I hate to ask too much, but I am rusty (2 years since coding of any form). Could you please explain "which was selected and call the appropriate routine to load/replace the contents of combobox2"? I appreciate the help.
-
ComboBox HelpI've got three comboboxes. ComboBox1 has two selections, (a) and (b). I can't figure out how to go about to pick one and driving ComboBox2. I'd like to pick (a) from ComboBox1 and have ComboBox2 know that when I pick (a), the associated data selections would be selectable in this ComboBox. Both (a) and (b)have specific data tied to each of them and I need it to know how to differentiate. When I pick from ComboBox2, this will also drive what I can select in ComboBox3, but I need help getting started first. Thanks.
-
Listbox swapCG, you da man as always. I knew it was something very simple. I couldn't see the forest because of the trees. Thanks again. I'll work on customizing it from here. THANKS AGAIN CHRISTIAN!!!! JB
-
Listbox swap1st Listbox has a collection of months. When double clicked on a month it moves to the 2nd Listbox. I would assume that I need to have it move back to the 1st listbox when double clicked as well. VB.Net Thanks Christian
-
Listbox swapOk easy one for y'all, but Im stumped. I have 2 listboxes. First listbox is populated with the 12 months and when double clicked on a month, it needs to move to the other listbox. The second listbox is initially blank. Any ideas?? Thanks in advance Jason
-
TextBox SwitchOk I have got it working....... I was missing a few main points, one being the click event for the Form1. In order to clear both textboxes, you will need to go to the form, Base Class Events, then Click and write code as follows: Textbox1.text = " " Textbox2.text = " " this clears the textboxes by clicking the form itself. Thanks again Christian Graus Jason Baggett
-
TextBox SwitchI need to figure out how to write code to swap the contents between 2 textboxes by way of a button. Also, I need to learn how to clear the contents of both TextBoxes by clicking the form. I appreciate your help. Jason
-
Need HelpThanks dude, I'll look at it later today. I might be hollering at you for further help if you don't mind....??? email me direct at jbaggett@hotfish.com for my Instant Message names
-
Need HelpI'm learning VB.Net and a problem I am trying to do asks the following: Write a procedure that will print all prime numbers from 1 to N, where N is passed to the procedure as a parameter. A prime number is one that can be evenly divided only by 1 or itself. The smallest prime numbers are 1,2,3 and 5. Write a program to test your function. Hint: Identify the primes from smallest to the largest and store all the identified prime numbers in an array. Determine whether a new number is a prime number by checking the remainder of this number divided by each of the currently identified prime numbers, except for 1. If a new number cannot be evenly divided (i.e. no remainder) by any prime numbers that are less than the square root of the number, the new number is a prime number. I'm lost!!! Can anyone help me? Thanks JB