1
Answer

create an Order Form Program

weikiat

weikiat

16y
3.4k
1
Hi i was task to create a Order Form(OF) Program. my company deal in construction thus the order form will be use to order the metal bar which is use to reinforce the concret wall. below is the problem i'm facing now.

when the user click on a button called "new item", it will pop me a selection of item to be included in the OF and by clicking on the item i can key in the size, quantily and other infomation. the selection will be a form showing the item. however the items how do i display them do i just show a picture, jpg. of it ? or it there a better way? after selection the item will be show in the OF which is going to be printed out.

i'm kind of lost as how should i display the items. if the item is shape as follow

               
|        |   |
|        |   |a
|____|   |

|-------|
     b

How do i make the program such that i'm able to let the user key in the length in position a and b.

can you point me in the right direction and recommand me some topic which i can read up to gain more knowledge in this area.
Answers (1)
0
Mahesh Chand

Mahesh Chand

2 286.4k 123.7m 16y

If you need to show a list of selection items with image in it, you need to search at Owner Draw ComboBox or Owner Draw ListBox control. In these controls, you can display an image of an item with text if you want. Once a user selects that item, you can show other controls on the order form.

If you are using Windows Forms or WPF to build your application, you can simply put a Panel on the Form and show this panel when an item is selected in the selected items list.

So in your left side or at the top of the form, you should display list of available items. By default, you will see only list of items on the Form. Once an item is selected, you show the Panel by using its Visible = True property. Based on the selection, you can also create/manage your controls to be displayed on the panel.

I hope this points you to the right direction :)

Good luck.