VBA (Visual Basic for Application ):
O 'Reilly VB VBA concise tutorial
OfficeVBAProgrammingCollection of manuals (CHM)
Microsoft Office VBA Language Reference
Microsoft Office 2007 system VBA programming
Office VBA programming skills
Access Enthusiasts are proud of VBA. I think this is not a good phenomenon. VBA is only a subset of VB, there are many limitations, such as not support inheritance, not support pointers, do not support child type, etc. Using VBA to manipulate data structures outside of the Office family is very difficult.
Comparison of functions between Visual Basic for Applications and SQL Server Transact-SQL (ADP)Note that the information in this topic applies only to the Microsoft Access Project (. ADP ).
The following table compares common functions in Microsoft Visual Basic for Applications (VBA) and Microsoft SQL Server Transact-SQL. For more information about Transact-SQL scalar functions, see the SQL server documen
cell at the intersection of RowIndex and Columindex, starting with 1, and filling in the number by 1 increments per row.rowindex = Val(InputBox("Please enter row number.", , 1))columnindex = Val(InputBox("Please enter column number.", , 1))For i = 1 To rowindex For j = 1 To columnindex Cells(i, j) = (i - 1) * columnindex + j Next jNext iWhen the Cells property is used with a Range object, the reference frame for the number of rows and columns is a Range object, that is, the rows and columns are
'Vb/VBA for Database File Access
'The example database is an Access database. If you use the SQL database, you only need to change the connection string.
'
'*************************************** **********************************
'**
'** Use ADODB. Stream to save/read files to the database
'** Reference Microsoft ActiveX Data Objects 2.5 library and later
'**
Open a file or program' API function declarationPublic Declare Function ShellExecute Lib "Shell32.dll" Alias "Shellexecutea" (ByVal hWnd as Long, ByVal lpoperation as Str ING, ByVal lpfile As String, ByVal lpparameters as String, ByVal lpdirectory as String, ByVal nShowCmd as long) as long' ShellExecute function two times package to simplify use' Input parameter file can be a file name, Web address or command linePublic Function ShellEx (File as String)ShellExecute hWndAccessApp, "Open", File, 0
. ", 48Me. Email from home. SetFocusExit FunctionEnd IfThe meaning of the msgbox,33 with the returned result is that the 32+1,32 is a prompt with a question mark icon, and 1 is the "OK" and "Cancel" buttons, so you can add up the numbers they represent when you need to specify the buttons and icons.When you click Cancel the return value is 2, and the value of Vbcancel is 2, if the return value and vbcancel value is consistent, then you click on the Cancel button, MsgBox will be listed in detail
ArticleDirectory
Office 2003 and Office XP
To allow any automation client to access the VBA object model and run
CodeUsers must explicitly grant access permissions to them. To enable access permissions, follow these steps.
Office 2003 and Office XP
Open the Office 2003 or Office XP ApplicationProgram. On
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.