This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Option Explicit | |
| ' === Точка входа === | |
| Public Sub FillTestsByColorsAndImages() | |
| Dim folderPath As String | |
| folderPath = PickFolder("Выберите папку с изображениями") | |
| If Len(folderPath) = 0 Then Exit Sub | |
| Dim testPrefix As String | |
| testPrefix = InputBox("Введите префикс для названия тестов (например codeex):", "Префикс тестов") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Option Explicit | |
| ' === Точка входа === | |
| Public Sub FillTestsByColorsAndImages() | |
| Dim folderPath As String | |
| folderPath = PickFolder("Выберите папку с изображениями") | |
| If Len(folderPath) = 0 Then Exit Sub | |
| Dim testPrefix As String | |
| testPrefix = InputBox("Введите префикс для названия тестов (например codeex):", "Префикс тестов") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Option Explicit | |
| ' === Òî÷êà âõîäà === | |
| Public Sub FillTestsByColorsAndImages() | |
| Dim folderPath As String | |
| folderPath = PickFolder("Âûáåðèòå ïàïêó ñ èçîáðàæåíèÿìè") | |
| If Len(folderPath) = 0 Then Exit Sub | |
| Dim testPrefix As String | |
| testPrefix = InputBox("Ââåäèòå ïðåôèêñ äëÿ íàçâàíèÿ òåñòîâ (íàïðèìåð codeex):", "Ïðåôèêñ òåñòîâ") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DROP TABLE IF EXISTS #test_nsatin; | |
| CREATE TABLE #test_nsatin | |
| ( | |
| ID bigint, | |
| Sex varchar(8), | |
| Birthday datetime | |
| ); | |
| SELECT CASE |