Страница: 1 |
Страница: 1 |
Вопрос: DDE
Добавлено: 21.08.06 13:50
Автор вопроса: mr_Frank | Web-сайт:
здраствуйте, ктонибудь знает как пользоватся DDE в VB. (вроде там какойто модуль должен быть, в Delphi 7 это DdeMan)
Ответы
Всего ответов: 11
Номер ответа: 1
Автор ответа:
VβÐUηìt
Вопросов: 246
Ответов: 3333
Web-сайт:
Профиль | | #1
Добавлено: 21.08.06 15:44
Я недавно такой вопрос уже задавал, поищи там, по форуму
Номер ответа: 2
Автор ответа:
mr_Frank
ICQ: 316417
Вопросов: 36
Ответов: 94
Web-сайт:
Профиль | | #2
Добавлено: 21.08.06 16:05
кстати следующее посвящяется администрации сайта.. СДЕЛАЙТЕ НОРМАЛЬНЫЙ ПОСИК ПО ФОРУМУ!!!!
я постоянно ищу вопросы на свои проблемы, и примерно в 70% вашь поиск посылает меня на 3 буквы. Какаято ошибка вылазит чето про SQL. кароче на этот я в поиске не смог найти.
Номер ответа: 3
Автор ответа:
VβÐUηìt
Вопросов: 246
Ответов: 3333
Web-сайт:
Профиль | | #3
Добавлено: 21.08.06 17:06
Кстати, mr_Frank правильно говорит, меня тоже поиск все время посылает на эти самые 3 буквы - SQL.
Номер ответа: 4
Автор ответа:
Artyom
Разработчик
Вопросов: 130
Ответов: 6602
Профиль | | #4
Добавлено: 22.08.06 00:34
Очень скоро на форуме будет отличный поиск
Номер ответа: 5
Автор ответа:
VβÐUηìt
Вопросов: 246
Ответов: 3333
Web-сайт:
Профиль | | #5
Добавлено: 22.08.06 07:12
Народ, челу так и не помогли :|
Номер ответа: 6
Автор ответа:
mr_Frank
ICQ: 316417
Вопросов: 36
Ответов: 94
Web-сайт:
Профиль | | #6
Добавлено: 22.08.06 07:13
ага :`(
Номер ответа: 7
Автор ответа:
Arseny
ICQ: 298826769
Вопросов: 53
Ответов: 1732
Профиль | | #7
Добавлено: 22.08.06 19:01
Смотри свойство формы Form1.LinkMode
Номер ответа: 8
Автор ответа:
Arseny
ICQ: 298826769
Вопросов: 53
Ответов: 1732
Профиль | | #8
Добавлено: 22.08.06 19:03
Control — Allows adestination control on a Visual Basic form to initiate a conversation, as specified by the control's LinkTopic and LinkItem properties.
Form — Allows a destination application to initiate a conversation with a Visual Basicsource form, as specified by the destination application's application|topic!item expression.
Syntax
object.LinkMode [= number]
The LinkMode property syntax has these parts:
Part Description
Object Anobject expression that evaluates to an object in the Applies To list.
Number An integer that specifies the type of connection, as described in Settings.
Settings
For controls used as destinations in DDE conversations, the settings for number are:
Constant Setting Description
VbLinkNone 0 (Default) None — No DDE interaction.
VbLinkAutomatic 1 Automatic — Destination control is updated each time the linked data changes.
VbLinkManual 2 Manual — {Destination control is updated only when the LinkRequest method is invoked.
VbLinkNotify 3 Notify — A LinkNotify event occurs whenever the linked data changes, but the destination control is updated only when the LinkRequest method is invoked.
For forms used as sources in DDE conversations, the settings for number are:
Constant Setting Description
VbLinkNone 0 (Default) None — No DDE interaction. No destination application can initiate a conversation with the source form as the topic, and no application canpoke data to the form. If LinkMode is 0 (None) atdesign time, you can't change it to 1 (Source) atrun time.
VbLinkSource 1 Source — Allows any Label, PictureBox, or TextBox control on a form to supply data to any destination application that establishes a DDE conversation with the form. If such a link exists, Visual Basic automatically notifies the destination whenever the contents of a control are changed. In addition, a destination application can poke data to any Label, PictureBox, or TextBox control on the form. If LinkMode is 1 (Source) at design time, you can change it to 0 (None) and back at run time.
Remarks
The following conditions also apply to the LinkMode property:
Setting LinkMode to a nonzero value for a destination control causes Visual Basic to attempt to initiate the conversation specified in the LinkTopic and LinkItem properties. The source updates the destination control according to the type of link specified (automatic, manual, or notify).
If a source application terminates a conversation with a Visual Basic destination control, the value for that control's LinkMode setting changes to 0 (None).
If you leave LinkMode for a form set to the default 0 (None) at design time, you can't change LinkMode at run time. If you want a form to act as a source, you must set LinkMode to 1 (Source) at design time. You can then change the value of LinkMode at run time.
Note Setting a permanent data link at design time with the Paste Link command from the Edit menu also sets the LinkMode, LinkTopic, and LinkItem properties. This creates a link that is saved with the form. Each time the form is loaded, Visual Basic attempts to re-establish the conversation
Номер ответа: 9
Автор ответа:
mr_Frank
ICQ: 316417
Вопросов: 36
Ответов: 94
Web-сайт:
Профиль | | #9
Добавлено: 22.08.06 19:04
пасибо ) терь подскажите пожалуйста хороший переводчик английского языка ))))
Номер ответа: 10
Автор ответа:
Arseny
ICQ: 298826769
Вопросов: 53
Ответов: 1732
Профиль | | #10
Добавлено: 22.08.06 19:04
In the example, each mouse click causes a cell in a Microsoft Excel worksheet to update the contents of a Visual Basic TextBox control. To try this example, start Microsoft Excel, open a new worksheet named Sheet1, and put some data in the first column. In Visual Basic, create a form with a TextBox control. Paste the code into the Declarations section, and then press F5 to run the program.
Private Sub Form_Click ()
Dim CurRow As String
Static Row ' Worksheet row number.
Row = Row + 1 ' Increment Row.
If Row = 1 Then ' First time only.
' Make sure the link isn't active.
Text1.LinkMode = 0
' Set the application name and topic name.
Text1.LinkTopic = "Excel|Sheet1"
Text1.LinkItem = "R1C1" ' Set LinkItem.
Text1.LinkMode = 1 ' Set LinkMode to Automatic.
Else
' Update the row in the data item.
CurRow = "R" & Row & "C1"
Text1.LinkItem = CurRow ' Set LinkItem.
End If
End Sub
Номер ответа: 11
Автор ответа:
Arseny
ICQ: 298826769
Вопросов: 53
Ответов: 1732
Профиль | | #11
Добавлено: 22.08.06 19:05
Сократ