Forum: Visual Basic 4 / 5 / 6 Nov 24th, 2003 |
| Replies: 15 Views: 16,954 I have worked all weekend and have come up with the following code but it is not working correctly Instead of filling out the textboxes with each bit of info it puts the same info (the entire file)... |
Forum: Visual Basic 4 / 5 / 6 Nov 19th, 2003 |
| Replies: 15 Views: 16,954 okay now I have two forms made up. The first has the listbox filled from the code above as well as a dialog control to open a file for random access. The professor said the 2nd form is to have... |
Forum: Visual Basic 4 / 5 / 6 Nov 18th, 2003 |
| Replies: 15 Views: 16,954 I added this is it correct?
Open "A:/P_SPRDCT.NDX" For Input As #intRecord
Do While Not EOF(intRecord)
Input #intRecord, strProductID, intRecordNumber
lstProduct.AddItem strProductID... |
Forum: Visual Basic 4 / 5 / 6 Nov 18th, 2003 |
| Replies: 15 Views: 16,954 first I am taking Visual basic 6.0. My instructor has said that he wants two forms. One with a list box to hold the IDs and an open button and a second with textboxes to make changes to the files.
... |
Forum: Visual Basic 4 / 5 / 6 Nov 17th, 2003 |
| Replies: 15 Views: 16,954 Okay I have a new assignment. I think I actually get the whole random access files ( I hope) but I have no clue as to how to set up my form(s). Does anyone have advice on how to set up the forms?
... |
Forum: Visual Basic 4 / 5 / 6 Nov 10th, 2003 |
| Replies: 11 Views: 7,588 Well after a few long days of thought and work I have the counter working. I also have the total of the single product ordered working.
Here is the code I have
curTotal = CInt(curUnitPrice) *... |
Forum: Visual Basic 4 / 5 / 6 Nov 7th, 2003 |
| Replies: 11 Views: 7,588 its a visual basic class. I do alright in it if I can "see" what the code is supposed to do. The instructor is not very helpful. But thanks for the help. I will work on this and let you know.
Kat |
Forum: Visual Basic 4 / 5 / 6 Nov 6th, 2003 |
| Replies: 11 Views: 7,588 okay I have it adding the totals per item but how do I now take three different item totals and add them.
For example I have the lblTotal.caption equaling the intTotal but that's just for one... |
Forum: Visual Basic 4 / 5 / 6 Nov 6th, 2003 |
| Replies: 11 Views: 7,588 I had the program allowing the user multiple choices of items but the instructor did not want us to do that. I give this a try. Thanks for the advice.
kat |
Forum: Visual Basic 4 / 5 / 6 Nov 6th, 2003 |
| Replies: 11 Views: 7,588 my problem is that I have to hit a save button everytime I put in an order and the dat file is updated, this part works fine. My problem is that I don't know how to take those value and put them... |
Forum: Visual Basic 4 / 5 / 6 Nov 5th, 2003 |
| Replies: 11 Views: 7,588 Hi there this is my first time here. I am working on a problem for school. I am working hard on solving a problem and hope someone can help me.
I am making an order form. I have the form all done.... |