TreeView

Программирование на Visual Basic, главный форум. Обсуждение тем программирования на VB 1—6.
Даже если вы плохо разбираетесь в VB и программировании вообще — тут вам помогут. В разумных пределах, конечно.
Правила форума
Темы, в которых будет сначала написано «что нужно сделать», а затем просьба «помогите», будут закрыты.
Читайте требования к создаваемым темам.
Driver_Ipsum
Начинающий
Начинающий
 
Сообщения: 2
Зарегистрирован: 07.04.2005 (Чт) 16:12

TreeView

Сообщение Driver_Ipsum » 07.04.2005 (Чт) 16:19

:shock: Народ, подскажите!
Есть ТриВью, какой узел сейчас выбран получаем с помощью selecteditem, а как кодом сделать что бы был выбран другой узел? Я в свойствах объекта покопался ниче не нашел...

Cryonyx
Бывалый
Бывалый
Аватара пользователя
 
Сообщения: 292
Зарегистрирован: 12.11.2004 (Пт) 15:40
Откуда: Net_SubStream

Сообщение Cryonyx » 07.04.2005 (Чт) 16:35

Код: Выделить всё
Tree1.SeletedItem = Tree1.Nodes.Item("key")
Tree1.SetFocus


Всё гениальное просто :D
Если тебе не по сердцу мой путь,
Выбери сам или выбери с кем,
А мне по барабану вся эта муть -
Я не червонец, чтобы нравиться всем!
© К.Кинчев
--
Мой блог: щёлкай сюда

Sedge
Alternative Choice
Alternative Choice
Аватара пользователя
 
Сообщения: 1049
Зарегистрирован: 16.05.2002 (Чт) 18:23
Откуда: Somewhere-In-The-Net

Сообщение Sedge » 07.04.2005 (Чт) 17:11

плюс
Код: Выделить всё
Tree1.Nodes("key").EnsureVisible

Driver_Ipsum
Начинающий
Начинающий
 
Сообщения: 2
Зарегистрирован: 07.04.2005 (Чт) 16:12

Сообщение Driver_Ipsum » 07.04.2005 (Чт) 18:28

:shock: :shock: :shock:
Всем спасибо!
И ещё не кинете ли ссылку на примеры открытия\чтения\записи\закрытия файла апи виндовз
а то open for, read write и тд сильно тормозят :shock:

Cryonyx
Бывалый
Бывалый
Аватара пользователя
 
Сообщения: 292
Зарегистрирован: 12.11.2004 (Пт) 15:40
Откуда: Net_SubStream

Сообщение Cryonyx » 08.04.2005 (Пт) 14:24

Api Guide писал(а):Declare Function OpenFile Lib "kernel32" Alias "OpenFile" (ByVal lpFileName As String, lpReOpenBuff As OFSTRUCT, ByVal wStyle As Long) As Long


А также:
Api Viewer писал(а):Type OFSTRUCT
cBytes As Byte
fFixedDisk As Byte
nErrCode As Integer
Reserved1 As Integer
Reserved2 As Integer
szPathName(OFS_MAXPATHNAME) As Byte
End Type


И ещё:
Api Guide писал(а):OF_CANCEL
Ignored. In the Win32 application programming interface (API), the OF_PROMPT style produces a dialog box containing a Cancel button.
OF_CREATE
Creates a new file. If the file already exists, it is truncated to zero length.
OF_DELETE
Deletes the file.
OF_EXIST
Opens the file and then closes it. Used to test for a file’s existence.
OF_PARSE
Fills the OFSTRUCT structure but carries out no other action.
OF_PROMPT
Displays a dialog box if the requested file does not exist. The dialog box informs the user that Windows cannot find the file, and it contains Retry and Cancel buttons. Choosing the Cancel button directs OpenFile to return a file-not-found error message.
OF_READ
Opens the file for reading only.
OF_READWRITE
Opens the file for reading and writing.
OF_REOPEN
Opens the file using information in the reopen buffer.
OF_SHARE_COMPAT
For MS-DOS-based file systems using the Win32 API, opens the file with compatibility mode, allowing any process on a specified computer to open the file any number of times. Other efforts to open with any other sharing mode fail.
Windows NT: This flag is mapped to the CreateFile function's FILE_SHARE_READ | FILE_SHARE_WRITE flags.
OF_SHARE_DENY_NONE
Opens the file without denying read or write access to other processes. On MS-DOS-based file systems using the Win32 API, if the file has been opened in compatibility mode by any other process, the function fails.
Windows NT: This flag is mapped to the CreateFile function's FILE_SHARE_READ | FILE_SHARE_WRITE flags.
OF_SHARE_DENY_READ
Opens the file and denies read access to other processes. On MS-DOS-based file systems using the Win32 API, if the file has been opened in compatibility mode or for read access by any other process, the function fails. Windows NT: This flag is mapped to the CreateFile function's FILE_SHARE_WRITE flag.
OF_SHARE_DENY_WRITE
Opens the file and denies write access to other processes. On MS-DOS-based file systems using the Win32 API, if the file has been opened in compatibility mode or for write access by any other process, the function fails.
Windows NT: This flag is mapped to the CreateFile function's FILE_SHARE_READ flag.
OF_SHARE_EXCLUSIVE
Opens the file with exclusive mode, denying both read and write access to other processes. If the file has been opened in any other mode for read or write access, even by the current process, the function fails.
OF_VERIFY
Verifies that the date and time of the file are the same as when it was previously opened. This is useful as an extra check for read-only files.
OF_WRITE
Opens the file for writing only.
Если тебе не по сердцу мой путь,
Выбери сам или выбери с кем,
А мне по барабану вся эта муть -
Я не червонец, чтобы нравиться всем!
© К.Кинчев
--
Мой блог: щёлкай сюда


Вернуться в Visual Basic 1–6

Кто сейчас на конференции

Сейчас этот форум просматривают: SemrushBot и гости: 53

    TopList  
cron