http://oshiete1.goo.ne.jp/qa3392244.html
嵌った。By Designだとぉ!?
Compiler error when assigning a value to structure's member accessed via dictionary
http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=295107
http://oshiete1.goo.ne.jp/qa3320160.html
一応配列で対処できることは確認できたけれども
>何がエラーの原因かは理解されていますよね?
いや、すまん、実は英文読んでもいまいちぴんと来てない(汗)
・・・とは言えず。
VB.NETで書いてはいるが,できるだけVB独自の変な仕組みに頼りたくないので
配列を使うなら
http://oshiete1.goo.ne.jp/qa3277715.html
あたりも考慮に入れて作らないといけないなる。
Class SampleA
Private SampleAPoint As System.Drawing.Point
Sub New(x As Integer,y As Integer)
With SampleAPoint
.X = x
.Y = y
End With
End Sub
Public Property Point As System.Drawing.Point
Get
Return SampleAPoint
End Get
Set(value As System.Drawing.Point)
SampleAPoint = value
End Set
End Property
End Class
Class SampleB
Private SampleBInt As Integer
Sub New(x As Integer)
SampleBInt = x
End Sub
Public Property intValue As Integer
Get
Return SampleBInt
End Get
Set(value As Integer)
SampleBInt = value
End Set
End Property
End Class
Class SampleC
Private SampleAPoints As New System.Collections.Generic.List(Of SampleA)
Public ReadOnly Property Points As System.Collections.Generic.List(Of SampleA)
Get
Return SampleAPoints
End Get
End Property
End Class
Class SampleD
Private SampleBInts As New System.Collections.Generic.List(Of SampleB)
Public ReadOnly Property Ints As System.Collections.Generic.List(Of SampleB)
Get
Return SampleBInts
End Get
End Property
End Class
Class himajin100000
Shared Sub Main
' Dim hoge As New SampleA(50,50)
' Dim Samp As New SampleC
'
' Samp.Points.Add(hoge)
' Samp.Points(0).Point.X = 40 'エラー
Dim hoge2 As New SampleB(8)
Dim Samp2 As New SampleD
Samp2.Ints.Add(hoge2)
Samp2.Ints(0).intValue = 5
'構造体もプリミティブ型も「値型変数」
'コレクションのitemは共に「参照型」で「代入後に実体がある」クラス。
Dim hoge3 As hogefuga
hoge3.funya.X = 5
'構造体のネストは問題なし
End Sub
End Class
Structure hogefuga
Dim funya As System.Drawing.Point
End Structure
>でも、構造体自体をメンバにて公開にしたら同じことですよね。
何故同じなのか,何が同じなのかさっぱりわからない
Compiler error when assigning a value to structure's member accessed via dictionary
http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=295107
http://oshiete1.goo.ne.jp/qa3320160.html
一応配列で対処できることは確認できたけれども
>何がエラーの原因かは理解されていますよね?
いや、すまん、実は英文読んでもいまいちぴんと来てない(汗)
・・・とは言えず。
VB.NETで書いてはいるが,できるだけVB独自の変な仕組みに頼りたくないので
配列を使うなら
http://oshiete1.goo.ne.jp/qa3277715.html
あたりも考慮に入れて作らないといけないなる。
Class SampleA
Private SampleAPoint As System.Drawing.Point
Sub New(x As Integer,y As Integer)
With SampleAPoint
.X = x
.Y = y
End With
End Sub
Public Property Point As System.Drawing.Point
Get
Return SampleAPoint
End Get
Set(value As System.Drawing.Point)
SampleAPoint = value
End Set
End Property
End Class
Class SampleB
Private SampleBInt As Integer
Sub New(x As Integer)
SampleBInt = x
End Sub
Public Property intValue As Integer
Get
Return SampleBInt
End Get
Set(value As Integer)
SampleBInt = value
End Set
End Property
End Class
Class SampleC
Private SampleAPoints As New System.Collections.Generic.List(Of SampleA)
Public ReadOnly Property Points As System.Collections.Generic.List(Of SampleA)
Get
Return SampleAPoints
End Get
End Property
End Class
Class SampleD
Private SampleBInts As New System.Collections.Generic.List(Of SampleB)
Public ReadOnly Property Ints As System.Collections.Generic.List(Of SampleB)
Get
Return SampleBInts
End Get
End Property
End Class
Class himajin100000
Shared Sub Main
' Dim hoge As New SampleA(50,50)
' Dim Samp As New SampleC
'
' Samp.Points.Add(hoge)
' Samp.Points(0).Point.X = 40 'エラー
Dim hoge2 As New SampleB(8)
Dim Samp2 As New SampleD
Samp2.Ints.Add(hoge2)
Samp2.Ints(0).intValue = 5
'構造体もプリミティブ型も「値型変数」
'コレクションのitemは共に「参照型」で「代入後に実体がある」クラス。
Dim hoge3 As hogefuga
hoge3.funya.X = 5
'構造体のネストは問題なし
End Sub
End Class
Structure hogefuga
Dim funya As System.Drawing.Point
End Structure
>でも、構造体自体をメンバにて公開にしたら同じことですよね。
何故同じなのか,何が同じなのかさっぱりわからない
http://oshiete1.goo.ne.jp/qa3292954.html
Explorerで確認。Windowsの仕様っぽい
MSDN2が重すぎて繋がらん。
Naming a File(Windows)
http://msdn2.microsoft.com/en-us/library/aa365247.aspx
Explorerで確認。Windowsの仕様っぽい
MSDN2が重すぎて繋がらん。
Naming a File(Windows)
http://msdn2.microsoft.com/en-us/library/aa365247.aspx
http://oshiete1.goo.ne.jp/qa3218722.html
こっちです。
http://www.w3.org/TR/xlink/
http://en.wikipedia.org/wiki/XLink
>Uses of XLink
>Mozilla Firefox
>Netscape
http://www.w3.org/XML/Linking
>Mozilla: The Opensource browser has support for XLinks simple links.
へぇ・・・後でBugzillaで検索してみよう。
Drop XLink support
https://bugzilla.mozilla.org/show_bug.cgi?id=332773
うーん・・・
できればextended linkなものを見られると面白そうなのだけれど・・・・
注)こっちではありません
http://www.teamxlink.co.uk/
http://en.wikipedia.org/wiki/XLink_Kai
こっちです。
http://www.w3.org/TR/xlink/
http://en.wikipedia.org/wiki/XLink
>Uses of XLink
>Mozilla Firefox
>Netscape
http://www.w3.org/XML/Linking
>Mozilla: The Opensource browser has support for XLinks simple links.
へぇ・・・後でBugzillaで検索してみよう。
Drop XLink support
https://bugzilla.mozilla.org/show_bug.cgi?id=332773
うーん・・・
できればextended linkなものを見られると面白そうなのだけれど・・・・
注)こっちではありません
http://www.teamxlink.co.uk/
http://en.wikipedia.org/wiki/XLink_Kai
http://oshiete1.goo.ne.jp/qa3200230.html
文章にするのが難しかったので時系列で心境や考え方の変化を書いてみた。
文章にするのが難しかったので時系列で心境や考え方の変化を書いてみた。
http://oshiete1.goo.ne.jp/qa3193513.html
http://oshiete1.goo.ne.jp/qa3175270.html
Q3193513は
http://www.teria.com/~koseki/memo/xbselection/example.html
という話かなあと思ったんだけどなあ・・・
http://oshiete1.goo.ne.jp/qa3175270.html
Q3193513は
http://www.teria.com/~koseki/memo/xbselection/example.html
という話かなあと思ったんだけどなあ・・・
http://oshiete1.goo.ne.jp/qa3186644.html
Bugzillaとかにこの辺述べている奴ない?
Bugzillaとかにこの辺述べている奴ない?

こういう時でウィンドウが下に移動できないときってどうしたらいいんだ?
解像度をこれ以上にはできないみたい。
http://oshiete1.goo.ne.jp/qa3189074.html
初めて知った。
初めて知った。
http://oshiete1.goo.ne.jp/qa3187202.html
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=331898&SiteID=1
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=331898&SiteID=1
http://oshiete1.goo.ne.jp/qa3164008.html
プロファイルのクリアや
Netscapeのバージョンアップ奨励は
確かに回答としては楽なのだけれど
できればBugzillaから探したいよね。
ちょっと探す気力が沸かないけど。
プロファイルのクリアや
Netscapeのバージョンアップ奨励は
確かに回答としては楽なのだけれど
できればBugzillaから探したいよね。
ちょっと探す気力が沸かないけど。
http://oshiete1.goo.ne.jp/qa3159821.html
http://oshiete1.goo.ne.jp/qa3159788.html
後で読む。回答になるかは知らない
MS Newsgroup - How do I create new icons for the QuickAccessToolbar in Word2007?
gmayor.com - Use Word 2000/3 Toolbars in Word 2007
http://oshiete1.goo.ne.jp/qa3159788.html
後で読む。回答になるかは知らない
MS Newsgroup - How do I create new icons for the QuickAccessToolbar in Word2007?
gmayor.com - Use Word 2000/3 Toolbars in Word 2007
http://oshiete1.goo.ne.jp/qa3143911.html