*Начало * Ответить * Статистика * Задать вопрос * Поиск * FAQ * * |
DotFix Forum / Вопросы программирования и исследования защит / функция load |
Автор | Сообщение |
neznaiy Участник |
Дата: 15 Янв 2008 15:06 Не знаю как правильно пользоваться функцией load, прописываю вот это: load(кнопка1 As CommandButton) а vb выдаёт ошибку! Я найти её не смог, а может вы сможете? |
Admin Администратор |
Дата: 19 Янв 2008 17:51 Load Statement Loads a form or control into memory. Syntax Load object The object placeholder is the name of a Form object, MDIForm object, or control array element to load. Example: This example uses the Load statement to load a Form object. To try this example, paste the code into the Declarations section of a Form object, and then run the example and click the Form object. Private Sub Form_Click () Dim Answer, Msg as String ' Declare variable. Unload Form1 ' Unload form. Msg = "Form1 has been unloaded. Choose Yes to load and " Msg = Msg & "display the form. Choose No to load the form " Msg = Msg & "and leave it invisible." Answer = MsgBox(Msg, vbYesNo) ' Get user response. If Answer = vbYes Then ' Evaluate answer. Show ' If Yes, show form. Else Load Form1 ' If No, just load it. Msg = "Form1 is now loaded. Choose OK to display it." MsgBox Msg ' Display message. Show ' Show form. End If End Sub |