とりこらぼ。

Learn from yesterday,
live for today,
hope for tomorrow.

目次

Blog 利用状況

ニュース

プロフィール

  • 名前:とりこびと
    とるに足らない人間です。

  • Wankuma MVP
    for '平々凡々'

Web Site

  • Memo(Of T)

もうひとつの Blog

広告っぽい

書庫

日記カテゴリ

Visual Basic でなんとなくイベントとデリゲート その2。 - イベント ハンドラ -

Visual Basic でなんとなくイベントとデリゲート その1。 - イベントの宣言と発生 -

さて、前回は簡単なイベントの宣言と発生方法をお勉強しました。

前回の文章がなんだかしっくりこないなぁと思っていたら、どうも全体的にボケが少ないですね。気をつけないといけません。


※ まずは基本的なところから大雑把に進めてます。


前回はイベントの宣言と発生について書きました。今回はイベント ハンドラです。イベント ハンドラとはイベントに関連付けられ、イベントが発生したときに呼び出されるプロシージャです。イベントのシグネチャと一致する任意の有効なプロシージャをイベント ハンドラとして使用できます。

Visual Basic ではイベントハンドラとして2つの記述方法があります。まずは一つ目。WithEvent ステートメント と Handles 句を使用する方法です。先にコードを挙げますね。こんな感じ↓。

Option Compare Binary
Option Explicit On
Option Strict On
Imports System
Public Class EventSample1

    Private WithEvents member As New WankumaMember

    Private Sub member_DisplayNameChanged(ByVal sender As ObjectByVal e As EventArgs) Handles member.DisplayNameChanged
    End Sub

End Class

WithEvent ステートメントを使用して宣言した変数が発生させるイベントに対するイベント ハンドラの指定を、Handles 句を使用して宣言できます。

ただし、Handles 句によるイベントハンドラの指定はコンパイル時にのみ関連付けが可能です。つまり、実行時にHandles 句を使用してイベントにイベントハンドラを関連付けることはできません。

また、共有(Shared)イベントやStructure のイベントを処理することはできません。


・・・あ、あれ?


ぼ、ぼけるとこがない!!orz




くじけずに2つ目。AddHandler ステートメントを使用する方法です。

Option Compare Binary
Option Explicit On
Option Strict On
Imports System
Public Class EventSample2

    Private member As New WankumaMember

    Public Sub New()
        AddHandler member.DisplayNameChanged, AddressOf Me.member_DisplayNameChanged
    End Sub

    Private Sub member_DisplayNameChanged(ByVal sender As ObjectByVal e As System.EventArgs)
    End Sub

End Class

こんな感じです。今回は、AddHandler ステートメントで、イベント ハンドラを関連付けたいイベントと、AddressOf キーワードを使用してイベント ハンドラとするプロシージャを指定しています。

AddHandler ステートメントを使用すると、イベントに対するイベント ハンドラの指定を実行時に動的に行うことができます。

・・・あ、あれ?


や、やっぱり ぼけるとこがない!!orz




なお、イベント ハンドラの関連付けを削除する場合、RemoveHandler ステートメントを使用します。

        RemoveHandler member.DisplayNameChanged, AddressOf Me.member_DisplayNameChanged

Handles 句を使用して関連付けたイベントもAddHandler ステートメントを使用して関連付けたイベントも削除可能です。




・・・ぼける・・・とこ・・・な・・・い。


次回はどっかんどっかんいきますから!(こんくらいで勘弁してやるわぁ~!!


次回もう少しだけイベントについて補足的に(命名など)書いておいて、その次くらいで一旦デリゲートの話にいく予定です。

投稿日時 : 2007年10月24日 9:01

Feedback

# re: Visual Basic でなんとなくイベントとデリゲート その2。 - イベント ハンドラ - 2007/10/24 9:09 けろ

一生懸命、AddHandler, RemoveHandlerで、オチを探そうとしている、とりこびとさんにウケましたw

AddHandlerは、私も良く使いますね。
これと関連してマルチキャストデリゲートの例も次回、宜しくお願いしますwww

# re: Visual Basic でなんとなくイベントとデリゲート その2。 - イベント ハンドラ - 2007/10/24 9:15 まどか

WithEvent → WithEvents
ステートメント → キーワード
ではでは。

# re: Visual Basic でなんとなくイベントとデリゲート その2。 - イベント ハンドラ - 2007/10/24 9:22 επιστημη

せんせぇしつもん。
1. WithEventsで貼りついたハンドラを実行時にRemoveHandlerでひっぺがせますか?
2. それが可能なら、再度AddHandlerで貼り付けられますか?
3. Handlesの後ろに指定できるのはいっこだけですか?
→ 複数のイベントの面倒をみるハンドラを書けますか?

# re: Visual Basic でなんとなくイベントとデリゲート その2。 - イベント ハンドラ - 2007/10/24 9:56 とりこびと

コメントありがとうございます。

>>けろさん

>一生懸命、AddHandler, RemoveHandlerで、オチを探そうとしている、とりこびとさんにウケましたw

私の存在理由はそこにありますから(嘘

>AddHandlerは、私も良く使いますね。

私は一昔、ひろえむさんに Handles いいよ Handles って教えていただいて、Handles を使用することがおおいですね。

>これと関連してマルチキャストデリゲートの例も次回、宜しくお願いしますwww

正直このシリーズあと何回書けば終わるのか想像できませんww



>>まどかさん

>WithEvent → WithEvents

これは間違っていました。訂正しておきました。

>ステートメント → キーワード

WithEventsステートメント → WithEventsキーワード

ってことですよね?

こことか。
http://msdn2.microsoft.com/ja-jp/library/stf7ebaz(VS.80).aspx

ステートメントとしての説明になってたので。


>>επιστημηさん

>せんせぇしつもん。

せめて同級生にしてください(それでも図々しいwww

>1. WithEventsで貼りついたハンドラを実行時にRemoveHandlerでひっぺがせますか?

私・・・質問を読み間違えているかもしれません。
ハンドラはHandlesで張り付きます。WithEventsではないです。
で、本文にあるとおりひっぺがせます。

Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click, Button2.Click

RemoveHandler Button2.Click, AddressOf Me.Button2_Click

End Sub

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click

MessageBox.Show("Handles Button2.Click")

End Sub

End Class


>2. それが可能なら、再度AddHandlerで貼り付けられますか?

貼り付けられます。

Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

RemoveHandler Button2.Click, AddressOf Me.Button2_Click

End Sub

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click

MessageBox.Show("Handles Button2.Click")

End Sub

Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click

AddHandler Button2.Click, AddressOf Me.Button2_Click

End Sub

End Class

>3. Handlesの後ろに指定できるのはいっこだけですか?
>→ 複数のイベントの面倒をみるハンドラを書けますか?

はい、複数のイベントの面倒をみるハンドラを書けます。
それぞれカンマで区切って記述します。

Handles Button1.Click, Button2.Click


って、そう思ってたのに自信無くなって全部試した罠ww

# re: Visual Basic でなんとなくイベントとデリゲート その2。 - イベント ハンドラ - 2007/10/24 10:17 επιστημη

ありがとござましたー。
と、こんだけネタ振ったにもかかわらず依然としてぼけ損ねたことは極めて遺憾に存じます。

# re: Visual Basic でなんとなくイベントとデリゲート その2。 - イベント ハンドラ - 2007/10/24 10:31 επιστημη

あーそかそかそかソカ
ほげほげ Handles ぱよぱよ
がコンパイル時に
AddHandler ぱよぱよ, AddressOf ほげほげ
に翻訳されるだけなんだなきっと。

# re: Visual Basic でなんとなくイベントとデリゲート その2。 - イベント ハンドラ - 2007/10/24 10:55 刈歩 菜良

> や、やっぱり ぼけるとこがない!!orz
ボケていただかないとツッコメません。
(T_T)

> 私の存在理由はそこにありますから(嘘
私の存在理由はそこにありますから(ホント
(;O;)

# re: Visual Basic でなんとなくイベントとデリゲート その2。 - イベント ハンドラ - 2007/10/24 10:59 刈歩 菜良

いーよいーよ。
ふつーに突っ込むから。

せんせー
(・o・)/
> Handles Button1.Click, Button2.Click
って、複数イベントをはっつけた時、イベントの発生順序はどうなりますか?

# re: Visual Basic でなんとなくイベントとデリゲート その2。 - イベント ハンドラ - 2007/10/24 10:59 HiJun

ボケていないとりこびとさんなんて....

# re: Visual Basic でなんとなくイベントとデリゲート その2。 - イベント ハンドラ - 2007/10/24 11:31 とりこびと

コメントありがとうございます。

>>επιστημηさん

>と、こんだけネタ振ったにもかかわらず依然としてぼけ損ねたことは極めて遺憾に存じます。

今後このようなことがない様、指導徹底して参ります。 またのご利用心よりお待ちしております。

>あーそかそかそかソカ
>ほげほげ Handles ぱよぱよ
>がコンパイル時に
>AddHandler ぱよぱよ, AddressOf ほげほげ
>に翻訳されるだけなんだなきっと。

そんな感じですね♪


>>刈歩 菜良さん

>ボケていただかないとツッコメません。

今後このようなことがない様、指導徹底して参ります。 またのご利用心よりお待ちしております。

>> 私の存在理由はそこにありますから(嘘
>私の存在理由はそこにありますから(ホント

分かりました。訂正します。
私の存在理由はそこにありますから(←嘘(←嘘

>って、複数イベントをはっつけた時、イベントの発生順序はどうなりますか?

申し訳ございません。これ以上のことは私としてはお答えできかねます。
きっとおエロい人がエントリしてくれます。

とはいいながら、一部書かなくちゃいけないことがあるので、後ほど。


>>HiJunさん

>ボケていないとりこびとさんなんて....

あんこの入ってないあんぱんのようなものです。

# re: Visual Basic でなんとなくイベントとデリゲート その2。 - イベント ハンドラ - 2007/10/24 13:12 まどか

> Handles Button1.Click, Button2.Click

デザイナで、コントロールをドラッグコピーするとこうなります。
で、コピー&ペーストするとなりません。
よく前者でイベントどこいったぁってことがたまにあります。

# re: Visual Basic でなんとなくイベントとデリゲート その2。 - イベント ハンドラ - 2007/10/24 13:41 刈歩 菜良

> 分かりました。訂正します。
> 私の存在理由はそこにありますから(←嘘(←嘘
だ・か・らー
ボケていただかないと(ry
(^Q^)

# Visual Basic のイベントハンドラの登録でちょっとだけ遊ぶ 2007/10/24 13:47 Mr.Tの場所

Visual Basic のイベントハンドラの登録でちょっとだけ遊ぶ

# Visual Basic でなんとなくイベントとデリゲート その10。 - イベントの宣言はこんな感じ - 2007/11/09 9:22 とりこらぼ。

Visual Basic でなんとなくイベントとデリゲート その10。 - イベントの宣言はこんな感じ -

# Visual Basic でなんとなくイベントとデリゲート その11。 - イベントの発生はこんな感じ - 2007/11/09 14:22 とりこらぼ。

Visual Basic でなんとなくイベントとデリゲート その11。 - イベントの発生はこんな感じ -

# Visual Basic のイベントハンドラの登録でちょっとだけ遊ぶ 2007/11/27 12:24 Mr.Tの場所

Visual Basic のイベントハンドラの登録でちょっとだけ遊ぶ

# Illikebuisse qcigs 2021/07/05 5:30 pharmaceptica

erectile dysfunction prognosis https://pharmaceptica.com/

# Remarkable! Its in fact awesome paragraph, I have got much clear idea on the topic of from this piece of writing. 2021/07/18 18:18 Remarkable! Its in fact awesome paragraph, I have

Remarkable! Its in fact awesome paragraph, I have got much clear
idea on the topic of from this piece of writing.

# I found a news so shock: ►► UPDATE TD Bank hit by 'targeted' cyber attack that knocked out online services 2021/07/31 22:52 I found a news so shock: ►► UPDATE TD Bank hit by

I found a news so shock: ?? UPDATE TD Bank hit by 'targeted' cyber attack
that knocked out online services

# I found a news so shock: ►► UPDATE TD Bank hit by 'targeted' cyber attack that knocked out online services 2021/07/31 22:53 I found a news so shock: ►► UPDATE TD Bank hit by

I found a news so shock: ?? UPDATE TD Bank hit by 'targeted' cyber attack
that knocked out online services

# I found a news so shock: ►► UPDATE TD Bank hit by 'targeted' cyber attack that knocked out online services 2021/07/31 22:53 I found a news so shock: ►► UPDATE TD Bank hit by

I found a news so shock: ?? UPDATE TD Bank hit by 'targeted' cyber attack
that knocked out online services

# I found a news so shock: ►► UPDATE TD Bank hit by 'targeted' cyber attack that knocked out online services 2021/07/31 22:54 I found a news so shock: ►► UPDATE TD Bank hit by

I found a news so shock: ?? UPDATE TD Bank hit by 'targeted' cyber attack
that knocked out online services

# Hi, thanks for the tutorials on character animate! I have downloaded Alex the puppet to try before I get a custom character. May I ask, how do you move both hands at the same time? I am able to create "one hand" poses using dragger. But how 2021/08/08 1:43 Hi, thanks for the tutorials on character animate!

Hi, thanks for the tutorials on character animate!
I have downloaded Alex the puppet to try before I get a custom character.
May I ask, how do you move both hands at the same time? I
am able to create "one hand" poses using dragger.
But how do I animate both hands? (I tried recording them separately, one hand at a time,
but they come out unbalanced.) Thanks in advance!

# Hi, thanks for the tutorials on character animate! I have downloaded Alex the puppet to try before I get a custom character. May I ask, how do you move both hands at the same time? I am able to create "one hand" poses using dragger. But how 2021/08/08 1:44 Hi, thanks for the tutorials on character animate!

Hi, thanks for the tutorials on character animate!
I have downloaded Alex the puppet to try before I get a custom character.
May I ask, how do you move both hands at the same time? I
am able to create "one hand" poses using dragger.
But how do I animate both hands? (I tried recording them separately, one hand at a time,
but they come out unbalanced.) Thanks in advance!

# Hi, thanks for the tutorials on character animate! I have downloaded Alex the puppet to try before I get a custom character. May I ask, how do you move both hands at the same time? I am able to create "one hand" poses using dragger. But how 2021/08/08 1:44 Hi, thanks for the tutorials on character animate!

Hi, thanks for the tutorials on character animate!
I have downloaded Alex the puppet to try before I get a custom character.
May I ask, how do you move both hands at the same time? I
am able to create "one hand" poses using dragger.
But how do I animate both hands? (I tried recording them separately, one hand at a time,
but they come out unbalanced.) Thanks in advance!

# Hi, thanks for the tutorials on character animate! I have downloaded Alex the puppet to try before I get a custom character. May I ask, how do you move both hands at the same time? I am able to create "one hand" poses using dragger. But how 2021/08/08 1:45 Hi, thanks for the tutorials on character animate!

Hi, thanks for the tutorials on character animate!
I have downloaded Alex the puppet to try before I get a custom character.
May I ask, how do you move both hands at the same time? I
am able to create "one hand" poses using dragger.
But how do I animate both hands? (I tried recording them separately, one hand at a time,
but they come out unbalanced.) Thanks in advance!

# re: Visual Basic ???????????????????2? - ???? ???? - 2021/08/09 16:55 hydroxychloroquine 200 mg

hloroquine https://chloroquineorigin.com/# hydroxychloroquine side effects heart

# Recently the United States got to a delayed prosecution agreement with Huawei CFO Meng Wanzhou. Andruil, the firm started by Palmer Luckey, formally disclosed its drone-ramming drone this week. 2021/12/12 1:14 Recently the United States got to a delayed prosec

Recently the United States got to a delayed prosecution agreement with Huawei CFO
Meng Wanzhou. Andruil, the firm started by Palmer Luckey, formally disclosed its drone-ramming drone this week.

# Wow, this piece of writing is fastidious, my younger sister is analyzing these kinds of things, so I am going to inform her. 2022/01/19 22:31 Wow, this piece of writing is fastidious, my young

Wow, this piece of writing is fastidious, my younger sister
is analyzing these kinds of things, so I am going
to inform her.

# Wow, this piece of writing is fastidious, my younger sister is analyzing these kinds of things, so I am going to inform her. 2022/01/19 22:33 Wow, this piece of writing is fastidious, my young

Wow, this piece of writing is fastidious, my younger sister
is analyzing these kinds of things, so I am going
to inform her.

# Wow, this piece of writing is fastidious, my younger sister is analyzing these kinds of things, so I am going to inform her. 2022/01/19 22:35 Wow, this piece of writing is fastidious, my young

Wow, this piece of writing is fastidious, my younger sister
is analyzing these kinds of things, so I am going
to inform her.

# Wow, this piece of writing is fastidious, my younger sister is analyzing these kinds of things, so I am going to inform her. 2022/01/19 22:36 Wow, this piece of writing is fastidious, my young

Wow, this piece of writing is fastidious, my younger sister
is analyzing these kinds of things, so I am going
to inform her.

# Madina Sofa & Chair Upholstery Opp Mohammad Ali Bin Beyat Masjid -30 6b St - Al Barsha Dubai 0507857283 upholstery fixing near me" 2022/01/27 14:25 Madina Sofa & Chair Upholstery Opp Mohammad A

Madina Sofa & Chair Upholstery

Opp Mohammad Ali Bin Beyat Masjid -30 6b St - Al Barsha
Dubai
0507857283

upholstery fixing near me"

# Madina Sofa & Chair Upholstery Opp Mohammad Ali Bin Beyat Masjid -30 6b St - Al Barsha Dubai 0507857283 recliner sofa uae" 2022/01/30 10:47 Madina Sofa & Chair Upholstery Oppp Mohammad

Madina Sofa & Chair Upholstery

Opp Mohammad Ali Bin Beyat Masjid -30 6b St - Al Barsha
Dubai
0507857283

recliner sofa uae"

# Свежие новости 2022/02/15 10:27 Adamxsx

Где Вы ищите свежие новости?
Лично я читаю и доверяю газете https://www.ukr.net/.
Это единственный источник свежих и независимых новостей.
Рекомендую и Вам

# Tinsley House is currently being expanded by 40 locations. What about currently that the poise period is over? Yet the immigrants also dropped by over dual. However, trafficking as well as domestic physical violence applications are most likely to be s 2022/02/28 21:52 Tinsley House is currently being expanded by 40 lo

Tinsley House is currently being expanded by 40 locations.

What about currently that the poise period is
over? Yet the immigrants also dropped by over dual. However, trafficking as well as domestic physical violence applications are most likely to be small in number.

Contract Conformity Audits require a particular (small) number of data to be sent out to the Legal Provider Compensation, which are after that evaluated.
36. See, as an example, 'I see no factor to depart from the constant case-law of the Payment that,
as a result of the significant optional and public-order component in such choices, process connecting to them are not to be viewed as figuring out the civil rights of
the individual worried, also if they certainly yet incidentally have
significant repercussions on his personal and domesticity, leads of employment, monetary setting and so on ...
14: 'The only thing which is particular is that civil rights in write-up 6 have an autonomous definition. A law,
which many see as outdated, basically protects against Londoners from letting their pads
out for less than three months at a time (without appropriate planning
approval), as well as several of the city's districts have actually attempted taking lawsuit versus would-be property
managers on this basis.

# Madina Sofa & Chair Upholstery Opp Mohammad Ali Bin Beyat Masjid -30 6b St - Al Barsha Dubai 0507857283 leather sofa spring repair" 2022/03/01 5:53 Madina Sofa & Chair Upholstery Oppp Mohammad

Madina Sofa & Chair Upholstery

Opp Mohammad Ali Bin Beyat Masjid -30 6b St - Al
Barsha
Dubai
0507857283

leather sofa spring repair"

# tshflujnjupm 2022/05/12 4:28 zbygnz

hydroxychloroquine hcq https://keys-chloroquineclinique.com/

# I'm extremely impressed with your writing skills as well as with the layout on your weblog. Is this a paid theme or did you customize it yourself? Either way keep up the excellent quality writing, it's rare to see a great blog like this one nowadays. 2022/07/06 15:25 I'm extremely impressed with your writing skills a

I'm extremely impressed with your writing skills as well as
with the layout on your weblog. Is this a paid theme or did you customize it
yourself? Either way keep up the excellent quality writing, it's rare to see a great blog like this one nowadays.

# Hi thеre Dear, are you truly visiting this ebsite on a regular basіѕ, if soo after that you wilpl without doubt tаke fastidіous knowledge. 2022/08/28 14:40 Hi therе Dear, are you truly visiting this website

?i there Deаr, are you truly visiting this website on a regular b?sis, if
so after that you ?ill without douЬt take fastidfious knowledge.

# This post will assist the internet users for building up new web site or even a blog from start to end. 2022/09/08 6:34 This post will assist the internet users for build

This post will assist the internet users for building up
new web site or even a blog from start to end.

# This post will assist the internet users for building up new web site or even a blog from start to end. 2022/09/08 6:35 This post will assist the internet users for build

This post will assist the internet users for building up
new web site or even a blog from start to end.

# This post will assist the internet users for building up new web site or even a blog from start to end. 2022/09/08 6:35 This post will assist the internet users for build

This post will assist the internet users for building up
new web site or even a blog from start to end.

# This post will assist the internet users for building up new web site or even a blog from start to end. 2022/09/08 6:36 This post will assist the internet users for build

This post will assist the internet users for building up
new web site or even a blog from start to end.

# Few things are more worrying than going through immigration issues. Gather documents: As soon as we affirm your immigration options, we will start gathering the required documents, resembling varied visa, I-9, and EB forms. 2023/04/17 5:29 Few things are more worrying than going through im

Few things are more worrying than going through immigration issues.
Gather documents: As soon as we affirm your immigration options,
we will start gathering the required documents, resembling varied visa,
I-9, and EB forms.

# Everything is very open with a very clear clarification of the issues. It was truly informative. Your website is very useful. Many thanks for sharing! 2023/08/07 14:07 Everything is very open with a very clear clarific

Everything is very open with a very clear clarification of the issues.
It was truly informative. Your website is very useful.
Many thanks for sharing!

# If you would like to obtain a great deal from this post then you have to apply these strategies to your won webpage. 2023/08/23 12:37 If you would like to obtain a great deal from this

If you would like to obtain a great deal from this post then you have to apply these strategies to
your won webpage.

# Hey there! I just wanted to ask if you ever have any trouble with hackers? My last blog (wordpress) was hacked and I ended up losing several weeks of hard work due to no data backup. Do you have any methods to protect against hackers? 2023/09/02 1:55 Hey there! I just wanted to ask if you ever have a

Hey there! I just wanted to ask if you ever have any trouble with hackers?
My last blog (wordpress) was hacked and I ended up losing several weeks of hard
work due to no data backup. Do you have any methods to
protect against hackers?

# This is a topic that is close to my heart... Many thanks! Exactly where are your contact details though? 2023/09/02 21:52 This is a topic that is close to my heart... Many

This is a topic that is close to my heart... Many thanks!
Exactly where are your contact details though?

# This is a topic that is close to my heart... Many thanks! Exactly where are your contact details though? 2023/09/02 21:54 This is a topic that is close to my heart... Many

This is a topic that is close to my heart... Many thanks!
Exactly where are your contact details though?

# I always used to read piece of writing in news papers but now as I am a user of web therefore from now I am using net for articles, thanks to web. 2023/09/04 0:27 I always used to read piece of writing in news pap

I always used to read piece of writing in news papers but now
as I am a user of web therefore from now I am using net for articles,
thanks to web.

# Someone essentially assist to make significantly articles I would state. That is the first time I frequented your website page and to this point? I surprised with the analysis you made to make this particular submit amazing. Magnificent activity! 2023/09/04 0:30 Someone essentially assist to make significantly a

Someone essentially assist to make significantly articles I would state.
That is the first time I frequented your website page
and to this point? I surprised with the analysis you made to make
this particular submit amazing. Magnificent activity!

# I was curious if you ever considered changing the page layout of your website? Its very well written; I love what youve got to say. But maybe you could a little more in the way of content so people could connect with it better. Youve got an awful lot o 2023/09/05 20:41 I was curious if you ever considered changing the

I was curious if you ever considered changing the page layout of your website?
Its very well written; I love what youve got to say.
But maybe you could a little more in the way of content so people could connect with it better.
Youve got an awful lot of text for only having one or 2 pictures.
Maybe you could space it out better?

# I was curious if you ever considered changing the page layout of your website? Its very well written; I love what youve got to say. But maybe you could a little more in the way of content so people could connect with it better. Youve got an awful lot o 2023/09/05 20:41 I was curious if you ever considered changing the

I was curious if you ever considered changing the page layout of your website?
Its very well written; I love what youve got to say.
But maybe you could a little more in the way of content so people could connect with it better.
Youve got an awful lot of text for only having one or 2 pictures.
Maybe you could space it out better?

# I was curious if you ever considered changing the page layout of your website? Its very well written; I love what youve got to say. But maybe you could a little more in the way of content so people could connect with it better. Youve got an awful lot o 2023/09/05 20:42 I was curious if you ever considered changing the

I was curious if you ever considered changing the page layout of your website?
Its very well written; I love what youve got to say.
But maybe you could a little more in the way of content so people could connect with it better.
Youve got an awful lot of text for only having one or 2 pictures.
Maybe you could space it out better?

# Hi there! Someone in my Myspace group shared this site with us so I came to check it out. I'm definitely enjoying the information. I'm book-marking and will be tweeting this to my followers! Outstanding blog and great design and style. 2023/09/14 6:13 Hi there! Someone in my Myspace group shared this

Hi there! Someone in my Myspace group shared this site with us so I came to check it out.
I'm definitely enjoying the information. I'm book-marking
and will be tweeting this to my followers! Outstanding blog and great design and style.

# Hi there! Someone in my Myspace group shared this site with us so I came to check it out. I'm definitely enjoying the information. I'm book-marking and will be tweeting this to my followers! Outstanding blog and great design and style. 2023/09/14 6:14 Hi there! Someone in my Myspace group shared this

Hi there! Someone in my Myspace group shared this site with us so I came to check it out.
I'm definitely enjoying the information. I'm book-marking
and will be tweeting this to my followers! Outstanding blog and great design and style.

# Hi there! Someone in my Myspace group shared this site with us so I came to check it out. I'm definitely enjoying the information. I'm book-marking and will be tweeting this to my followers! Outstanding blog and great design and style. 2023/09/14 6:14 Hi there! Someone in my Myspace group shared this

Hi there! Someone in my Myspace group shared this site with us so I came to check it out.
I'm definitely enjoying the information. I'm book-marking
and will be tweeting this to my followers! Outstanding blog and great design and style.

# Hi there! Someone in my Myspace group shared this site with us so I came to check it out. I'm definitely enjoying the information. I'm book-marking and will be tweeting this to my followers! Outstanding blog and great design and style. 2023/09/14 6:15 Hi there! Someone in my Myspace group shared this

Hi there! Someone in my Myspace group shared this site with us so I came to check it out.
I'm definitely enjoying the information. I'm book-marking
and will be tweeting this to my followers! Outstanding blog and great design and style.

# If you wish for to increase your knowledge just keep visiting this web page and be updated with the hottest information posted here. 2023/09/15 0:43 If you wish for to increase your knowledge just ke

If you wish for to increase your knowledge just keep
visiting this web page and be updated with the hottest information posted here.

# EnchagPT Blog to miejsce, gdzie można znaleźć interesujące artykuły i informacje na temat technologii sztucznej inteligencji. Jest to blog dedykowany wszystkim entuzjastom sztucznej inteligencji, którzy pragną zgłębiać swoją wiedzę na temat tego fas 2023/09/30 9:51 EnchagPT Blog to miejsce, gdzie można znaleźć inte

EnchagPT Blog to miejsce, gdzie mo?na znale?? interesuj?ce artyku?y i informacje na temat technologii sztucznej inteligencji.
Jest to blog dedykowany wszystkim entuzjastom sztucznej inteligencji, którzy pragn? zg??bia? swoj? wiedz? na temat tego fascynuj?cego tematu.

# Highly descriptive article, I enjoyed that a lot. Will there be a part 2? 2023/10/12 22:03 Highly descriptive article, I enjoyed that a lot.

Highly descriptive article, I enjoyed that a lot.
Will there be a part 2?

# Howdy! I know this is somewhat off topic but I was wondering if you knew where I could get a captcha plugin for my comment form? I'm using the same blog platform as yours and I'm having trouble finding one? Thanks a lot! 2023/10/23 4:25 Howdy! I know this is somewhat off topic but I was

Howdy! I know this is somewhat off topic but I was wondering if you knew where I could get a captcha
plugin for my comment form? I'm using the same blog platform as yours and I'm having trouble finding one?
Thanks a lot!

# Howdy! I know this is somewhat off topic but I was wondering if you knew where I could get a captcha plugin for my comment form? I'm using the same blog platform as yours and I'm having trouble finding one? Thanks a lot! 2023/10/23 4:27 Howdy! I know this is somewhat off topic but I was

Howdy! I know this is somewhat off topic but I was wondering if you knew where I could get a captcha
plugin for my comment form? I'm using the same blog platform as yours and I'm having trouble finding one?
Thanks a lot!

# I just could not depart your website prior to suggesting that I actually enjoyed the usual information a person provide in your visitors? Is going to be again steadily to check up on new posts 2023/11/04 0:10 I just could not depart your website prior to sugg

I just could not depart your website prior to suggesting that I actually enjoyed the usual information a person provide in your visitors?
Is going to be again steadily to check up on new posts

# Hi, i feel that i saw you visited my site so i came to return the choose?.I'm trying to to find issues to enhance my website!I guess its ok to use a few of your ideas!! 2023/11/30 4:26 Hi, i feel that i saw you visited my site so i cam

Hi, i feel that i saw you visited my site
so i came to return the choose?.I'm trying to to find issues to enhance my website!I guess its ok to use a few of your ideas!!

# Hola! I've been following your website for a while now and finally got the bravery to go ahead and give you a shout out from Dallas Texas! Just wanted to say keep up the fantastic job! 2023/12/16 8:35 Hola! I've been following your website for a while

Hola! I've been following your website for a while now and finally got the bravery to go ahead and give you a shout out from Dallas Texas!
Just wanted to say keep up the fantastic job!

# It is the best time to make some plans for the future and it's time to be happy. I've learn this publish and if I may I wish to counsel you some attention-grabbing things or tips. Maybe you can write subsequent articles referring to this article. I want 2024/02/19 14:44 It is the best time to make some plans for the fut

It is the best time to make some plans for the future and it's time to be
happy. I've learn this publish and if I may I wish to counsel you some attention-grabbing things
or tips. Maybe you can write subsequent articles referring
to this article. I want to learn more issues about it!

# After checking out a few of the articles on your web site, I honestly appreciate your way of writing a blog. I book marked it to my bookmark webpage list and will be checking back in the near future. Please check out my website as well and tell me what y 2024/03/02 4:13 After checking out a few of the articles on your w

After checking out a few of the articles on your
web site, I honestly appreciate your way of writing a blog.
I book marked it to my bookmark webpage list and will be
checking back in the near future. Please check out my website as well and tell me what you think.

# Asking questions are really good thing if you are not understanding anything entirely, however this piece of writing presents fastidious understanding yet. 2024/03/17 18:26 Asking questions are really good thing if you are

Asking questions are really good thing if you are not understanding anything entirely, however this piece of writing presents fastidious understanding yet.

タイトル
名前
Url
コメント