Администрирование
HyperSQL, IBM DB2, IBM DB2, Interbase, Firebird, Yaffil , MSSQL, MySQL, ORACLE, PostgreSQL, SYBASE, Другие, Курсы, ... |
Безопасность
HyperSQL, MSSQL, Oracle, Phpmyadmin, Инъекция SQL, Книги, Патчи, Программы, Скрипты, СУБД, ... |
Проектирование БД
Business intelligence, Data Warehouse, Designer 2000 (Oracle), ErWin, ETL, OLAP, Sybase PowerDesigner , Другие CASE средства, Статьи, Теория БД, ... |
Производительность
DB2, HyperSQL, IBM DB2, Interbase, Firebird, Yaffil, MSSQL, MySQL, ORACLE, PostgreSQL, SQL, SYBASE, Другие, ... |
Установка
HyperSQL, IBM DB2, Interbase, Firebird, Yaffil , MSSQL, MySQL, ORACLE, PostgreSQL, SYBASE, Другие, ... |
|
|
Главная VBA Excel
VBA Excel
|
Microsoft ships a redistributable msinet.ocx with a number of products including Visual Basic 5.0, 6.0, Office 2000 Developer, Visual FoxPro 6.0, Visual C++ 5.0, 6.0. This file hosts Microsoft Internet Transfer Control which implements a number of protocols including HTTP and FTP. You need to know the commands that initiate the operations. The code snippet given below shows how to use Microsoft Internet Transfer Control to upload a file to a machine. To use the code, make sure that you add a reference to Microsoft Internet Transfer Control. To add a reference to it - Select Tools | References....
- Select Microsoft Internet Transfer Control from the available references.
- If it is not available, click the Browse... button. You will be presented with the Add Reference dialog box.
- Locate and select MSINET.OCX. This file is usually present in the System folder.
- Click Open to dismiss the Add Reference dialog box.
- Click OK.
|
|
Подробнее...
|
|
FTP These code extracts show you how to send and receive files using FTP from within VBA. You will need to amend the code for your own account name, password, directories and file names. The code creates three files. - First is a text file (.txt) that contains the commands processed by FTP,
- Second is a batch file (.bat) that runs the FTP command
- Third is a marker file (.out) that is created by the batch when FTP has finished processing. When this is created, our VBA code detects it and knows it can then carry on with its tidying up routine
|
|
Подробнее...
|
|
|
В версиях Microsoft Excel, перечисленных в разделе "Информация в данной статье применима к", сведения об ограничениях при работе с массивами приведены в разделе справки "Спецификации вычислений". В данной статье описаны ограничения при работе с массивами в Excel. В приложении Excel максимальный размер массива зависит от объема доступной оперативной памяти, общего количества формул массива и правила "целого столбца".
|
|
Подробнее...
|
|
|
There are many reasons to want to loop through ranges of cells in an Excel worksheet. The most common seem to be: - Changing cell color based on a condition;
- Creating sets of data;
- Generating reports.
Programmers will be aware that loops enable us to tackle the movement through an array of objects in a variety of ways. We can use a counted loop to iterate a set number of times, or an uncounted loop which will only stop once a certain condition is met. In this article, we will look at how to loop through a collection of cells using both counted and uncounted loops. The term range is used here to identify an object containing cells from a worksheet.
|
|
Подробнее...
|
|
|
Often, we Excel users refer to ranges that need to move or expand in future versions of our reports. For example: - Each month, we must report the current month, the year to date, and, perhaps, the twelve most-recent months of financial data. Next month, we must point our existing report to new data.
- We might use the TREND function to forecast weekly sales. Next week, we must point the function at one more week of data.
- We occasionally need an easy way to point one chart at different areas of a spreadsheet database.
Dynamic range names can meet all these requirements. |
|
Подробнее...
|
|
| |
|
Последние добавленные статьи |
|
|
|
|