Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask Visual Basic Expert

Dialog Based Application:

(A) Dialog Based Application to demonstrate Animate Control:

1. Build a dialog based application.

2. Design the dialog as shown.

3. Place 4 command buttons and the Animate Control on the dialog.

4. Using the class wizard can create a control object m_AnimateCtrl of CAnimateCtrl type.

5. Set the caption of the 4 command buttons as stop, play, close & open.

6. Handle the button clicked event for the 4 command buttons.

7. Include the coding as the handler for open the command button

CFileDialog File(TRUE,NULL, ,"(*.AVI)|*.AVI",NULL);

if(File.DoModal() != idok)

return;

m_AnimateCtrl.Open(File.GetPathName());

The handler for the open command button is answerable for opening the AVI file.

The GetPathName() function returns the handle of the AVI file.

8. Type the below coding as handler for the play command button

m_AnimateCtrl.play(0,-1,-1);

The initial parameter of play(), namely 0, represents the beginning of the file. The next parameter -1, tells to play the file till the end. The IIIrd parameter -1, tells to play the file infinitely.

9. Type the below coding as handler for the stop command button

m_AnimateCtrl.Stop();

10. Type the below coding as handler for the close command button

m_AnimateCtrl.Close();

The Close() function eliminates the memory allocated to the CAnimateCtrl object.

11. Construct and then execute the project

12. Click the open command button

In answer to the Modal dialog, the File dialog would be displayed. The files with AVI extension would only be displayed. Select a file name and click OK in the file dialog box.

13. Click the play command button. The chosen file contents would be displayed.

14. Click the stop command button. The chosen file contents display would be stopped

15. Click the close command button.

The chosen file contents would be eliminated from the memory.

(B)Dialog Based Application to Illustrate List Box control:

1. Build up a dialog based application.

2. Design the dialog as shown. Put a list box control and 2 command buttons on the dialog.

3. Using a class wizard add a control variable m_v1 of CListBox type.

4. Type the following in the OnInitDialog() to initialize the list box m_v1.InsertString(-1,"abc"); -1 in the InsertString() function is used to specify the tail of the list. m_v1.AddString("xyz");

The AddString() function sort the contents of the list box automatically.

m_v1.AddDString("def");

5. The GetCurSel() function will return an index of the item selected from the list box.

6. Handle On the SelChange() function for the list box object id m_v1.DeleteString(m_v1.GetCurSel());

The GetCurSel() function will return the handle of the chosen item in the list box. This is used by the Delete String to dynamically delete the contents from the list box.

7. The Handle Button Clicked the event. Type the coding as shown below.

AfxMessageBox(m_v1.GetText(CString&,m_v1.GetCurSel()));

The GetText() function retrieves the chosen item of the list box and the message box displays the chosen item.

8. The Handle button clicked event for the second command button. Type the coding as shown below.

if(m_v1.FindString(-1,"pat") < 0)

m_v1.InsertString(-1,"pat");

The function FindString() search the contents in the list box for the occurrence of the string "pat" given by the second argument. If it is not present then the content is inserted as a tail element in the list box.

(C) Dialog Based Application to Illustrate Combo Box control:

The Combo box is a drop list. We can edit the contents in the combo box. If it is a drop down, we can't edit during the execution. The other category is a simple combo box. By using the combo box you can give data at the design time. Using CTRL ENTER you can complete the data entry in the combo box.

1. Make a dialog based application.

2. Design the dialog as shown.

3. Put a combo box control in the dialog.

4. Put a command button in the dialog.

5. Add a control variable of the type CComboBox for the combo box control. And name the variable as m_v1

6. Handle button clicked the event for the command button. Type the coding as shown below.

AfxMessageBox(m_v1.GetLBText());

The function GetLBText() will return the chosen item in the combo box.

Visual Basic, Programming

  • Category:- Visual Basic
  • Reference No.:- M9510979

Have any Question?


Related Questions in Visual Basic

Please show how to do the belowvisual basic net application

Please show how to do the below: Visual Basic .NET Application - Coding Exercise 1 (Exercise 13, Zak, 2016, p. 347) For this coding exercise, write the Visual Basic code for a pretest loop that uses an Integer variable n ...

Assignment virtual storeuse the concepts and scenario from

Assignment: Virtual Store Use the concepts and scenario from Assignment 1 to help "Your" Virtual Business to increase the functionality of its online shopping cart. When a customer checks out, the shopping cart must stor ...

Assignment frans virtual fruit standfrans virtual fruit

Assignment: Fran's Virtual Fruit Stand Fran's Virtual Fruit Stand is an online store that sells several types of dried fruit. Based on the needs of Fran's Virtual Fruit stand, you must design a flowchart using Visual Log ...

Pitch amp game design documentthe assignment is about

Pitch & Game Design Document The assignment is about educational driver for teenagers Assignment Brief: In groups you will: - present a pitch and produce a one sheet - provide a demonstration of your game - produce a hig ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As